Parcourir la source

Fix issue when errors are thrown before logger exists

Nathaniel van Diepen il y a 11 ans
Parent
commit
2b43f30205
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      app/OmnomIRC.js

+ 5 - 1
app/OmnomIRC.js

@@ -264,5 +264,9 @@ if(cluster.isMaster){
 	});
 }
 process.on('uncaughtException',function(e){
-	logger.error(e);
+	if(typeof logger != 'undefined'){
+		logger.error(e);
+	}else{
+		console.error(e);
+	}
 });