log file path

This commit is contained in:
Frostebite 2023-05-14 02:48:36 +01:00
parent 36dc42cced
commit 80ec2d0a4e
3 changed files with 1 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

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