mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-10-31 19:39:20 +08:00 
			
		
		
		
	catch createWriteStream error
This commit is contained in:
		| @@ -335,17 +335,23 @@ exports.convertToUTF8 = (body) => { | ||||
|     return str.toString(); | ||||
| }; | ||||
|  | ||||
| let logFile = fs.createWriteStream("./data/error.log", { | ||||
|     flags: "a" | ||||
| }); | ||||
| let logFile; | ||||
|  | ||||
| try { | ||||
|     logFile = fs.createWriteStream("./data/error.log", { | ||||
|         flags: "a" | ||||
|     }); | ||||
| } catch (_) { } | ||||
|  | ||||
| exports.errorLog = (error, outputToConsole = true) => { | ||||
|     try { | ||||
|         const dateTime = R.isoDateTime(); | ||||
|         logFile.write(`[${dateTime}] ` + nodeJsUtil.format(error) + "\n"); | ||||
|         if (logFile) { | ||||
|             const dateTime = R.isoDateTime(); | ||||
|             logFile.write(`[${dateTime}] ` + nodeJsUtil.format(error) + "\n"); | ||||
|  | ||||
|         if (outputToConsole) { | ||||
|             console.error(error); | ||||
|             if (outputToConsole) { | ||||
|                 console.error(error); | ||||
|             } | ||||
|         } | ||||
|     } catch (_) { } | ||||
| }; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user