events log cleanup

pull/496/head
Frostebite 2023-02-15 02:30:06 +00:00
parent cef784e8f8
commit 45e3758eaa
3 changed files with 1 additions and 5 deletions

2
dist/index.js generated vendored
View File

@ -5602,7 +5602,6 @@ const cloud_runner_system_1 = __nccwpck_require__(99393);
const fs_1 = __importDefault(__nccwpck_require__(57147)); const fs_1 = __importDefault(__nccwpck_require__(57147));
const cli_1 = __nccwpck_require__(55651); const cli_1 = __nccwpck_require__(55651);
const cli_functions_repository_1 = __nccwpck_require__(85301); const cli_functions_repository_1 = __nccwpck_require__(85301);
const cloud_runner_logger_1 = __importDefault(__nccwpck_require__(22855));
class LfsHashing { class LfsHashing {
static createLFSHashFiles() { static createLFSHashFiles() {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
@ -5617,7 +5616,6 @@ class LfsHashing {
.replace(' .lfs-assets-guid', '') .replace(' .lfs-assets-guid', '')
.replace(/\n/g, ``), .replace(/\n/g, ``),
}; };
cloud_runner_logger_1.default.log(`lfs hash completion: ${lfsHashes.lfsGuid} ${lfsHashes.lfsGuidSum}`);
return lfsHashes; return lfsHashes;
}); });
} }

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,6 @@ import { CloudRunnerSystem } from './cloud-runner-system';
import fs from 'fs'; import fs from 'fs';
import { Cli } from '../../cli/cli'; import { Cli } from '../../cli/cli';
import { CliFunction } from '../../cli/cli-functions-repository'; import { CliFunction } from '../../cli/cli-functions-repository';
import CloudRunnerLogger from './cloud-runner-logger';
export class LfsHashing { export class LfsHashing {
public static async createLFSHashFiles() { public static async createLFSHashFiles() {
@ -19,7 +18,6 @@ export class LfsHashing {
.replace(' .lfs-assets-guid', '') .replace(' .lfs-assets-guid', '')
.replace(/\n/g, ``), .replace(/\n/g, ``),
}; };
CloudRunnerLogger.log(`lfs hash completion: ${lfsHashes.lfsGuid} ${lfsHashes.lfsGuidSum}`);
return lfsHashes; return lfsHashes;
} }