Skip to content

Commit

Permalink
fix: put message module at the right level
Browse files Browse the repository at this point in the history
  • Loading branch information
Unitech committed Jul 17, 2018
1 parent 10ee998 commit 56f5e04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/API/Modules/Modularizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,9 +335,9 @@ function startModule(CLI, opts, cb) {
CLI.start(package_json, opts, function(err, data) {
if (err) return cb(err);

Common.printOut(cst.PREFIX_MSG_MOD + 'Monitoring module behavior for potential issue (5secs...)');

if (opts.safe) {
Common.printOut(cst.PREFIX_MSG_MOD + 'Monitoring module behavior for potential issue (5secs...)');

var time = typeof(opts.safe) == 'boolean' ? 3000 : parseInt(opts.safe);
return setTimeout(function() {
CLI.describe(package_json.name, function(err, apps) {
Expand Down

0 comments on commit 56f5e04

Please sign in to comment.