log file path

This commit is contained in:
Frostebite 2023-05-14 17:08:06 +01:00
parent 0d7955f2ae
commit 45a1901e23
3 changed files with 1 additions and 2 deletions

BIN
dist/index.js generated vendored

Binary file not shown.

BIN
dist/index.js.map generated vendored

Binary file not shown.

View File

@ -1,11 +1,10 @@
import CloudRunnerLogger from '../services/core/cloud-runner-logger';
import fs from 'node:fs';
import path from 'node:path';
import { CloudRunnerFolders } from '../options/cloud-runner-folders';
export class RemoteClientLogger {
private static get LogFilePath() {
return path.join(CloudRunnerFolders.builderPathAbsolute, `job-log.txt`);
return path.join(`/`, `job-log.txt`);
}
public static log(message: string) {