log file path

This commit is contained in:
Frostebite 2023-05-14 02:37:20 +01:00
parent dc01a0de95
commit 36dc42cced
3 changed files with 0 additions and 3 deletions

BIN
dist/index.js generated vendored

Binary file not shown.

BIN
dist/index.js.map generated vendored

Binary file not shown.

View File

@ -10,9 +10,6 @@ export class RemoteClientLogger {
public static log(message: string) {
const finalMessage = `[Client] ${message}`;
if (!fs.existsSync(this.LogFilePath)) {
fs.writeFileSync(this.LogFilePath, ``);
}
this.appendToFile(finalMessage);
CloudRunnerLogger.log(finalMessage);
}