constTrackcityPlugin = require("@trackcity/plugins");
classExamplePluginextendsTrackcityPlugin {
onStart(argv) {
let logger = this.createLogger("example") // the string can be optional.
logger.info("Hey this plugin worked fine!");
}
}
module.exports = ExamplePlugin;