How to use the bespoken-tools/lib/core/logging-helper.LoggingHelper.info function in bespoken-tools

To help you get started, we’ve selected a few bespoken-tools examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github bespoken-cookbook / serverless-plugin-bespoken / src / ServerlessPluginBespoken.ts View on Github external
function (this: ModuleManager) {
            LoggingHelper.info(
              "FileWatcher",
              "FS.Watch Event(s) Detected: Reloading project code."
            );

            // reload project's modules after change events
            (this as any).modules = {};
            (this as any).dirty = true;
          }.bind(moduleManager),
          500