mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	fully log node warnings on start
(i.e. don’t need -v for simple errors on start)
This commit is contained in:
		| @@ -34,17 +34,17 @@ var stubbedExpressApp = { | ||||
|     get: function() {}, | ||||
|     post: function() {}, | ||||
|     put: function() {}, | ||||
|     delete: function(){} | ||||
|     delete: function() {} | ||||
| } | ||||
| var adminApi = { | ||||
|     library: { | ||||
|         register: function(){} | ||||
|         register: function() {} | ||||
|     }, | ||||
|     auth: { | ||||
|         needsPermission: function(){} | ||||
|         needsPermission: function() {} | ||||
|     }, | ||||
|     comms: { | ||||
|         publish: function(){} | ||||
|         publish: function() {} | ||||
|     }, | ||||
|     adminApp: stubbedExpressApp, | ||||
|     nodeApp: stubbedExpressApp, | ||||
| @@ -105,16 +105,11 @@ function start() { | ||||
|                 var nodeErrors = redNodes.getNodeList(function(n) { return n.err!=null;}); | ||||
|                 var nodeMissing = redNodes.getNodeList(function(n) { return n.module && n.enabled && !n.loaded && !n.err;}); | ||||
|                 if (nodeErrors.length > 0) { | ||||
|                     log.warn("------------------------------------------"); | ||||
|                     if (settings.verbose) { | ||||
|                         for (i=0;i<nodeErrors.length;i+=1) { | ||||
|                             log.warn("["+nodeErrors[i].name+"] "+nodeErrors[i].err); | ||||
|                         } | ||||
|                     } else { | ||||
|                         log.warn(log._("server.errors",{count:nodeErrors.length})); | ||||
|                         log.warn(log._("server.errors-help")); | ||||
|                     log.warn("------------------------------------------------------"); | ||||
|                     for (i=0;i<nodeErrors.length;i+=1) { | ||||
|                         log.warn("["+nodeErrors[i].name+"] "+nodeErrors[i].err); | ||||
|                     } | ||||
|                     log.warn("------------------------------------------"); | ||||
|                     log.warn("------------------------------------------------------"); | ||||
|                 } | ||||
|                 if (nodeMissing.length > 0) { | ||||
|                     log.warn(log._("server.missing-modules")); | ||||
| @@ -148,7 +143,7 @@ function start() { | ||||
|             }).otherwise(function(err) { | ||||
|                 console.log(err); | ||||
|             }); | ||||
|     }); | ||||
|         }); | ||||
| } | ||||
|  | ||||
| function reportMetrics() { | ||||
|   | ||||
| @@ -120,7 +120,7 @@ | ||||
|         }, | ||||
|         "localfilesystem": { | ||||
|             "user-dir": "User directory : __path__", | ||||
|             "flows-file": "Flows file : __path__", | ||||
|             "flows-file": "Flows file     : __path__", | ||||
|             "create": "Creating new flow file", | ||||
|             "empty": "Existing flow file is empty", | ||||
|             "invalid": "Existing flow file is not valid json", | ||||
|   | ||||
		Reference in New Issue
	
	Block a user