From ff924c0f01bd785a7097d5e973f5b9080b69c410 Mon Sep 17 00:00:00 2001 From: BitterPanda Date: Fri, 30 Jan 2026 14:26:26 +0100 Subject: [PATCH] use path.resolve to print full file --- packages/safe-chain/src/ultimate/printUltimateLogs.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/safe-chain/src/ultimate/printUltimateLogs.js b/packages/safe-chain/src/ultimate/printUltimateLogs.js index c8e5403..a11c9f7 100644 --- a/packages/safe-chain/src/ultimate/printUltimateLogs.js +++ b/packages/safe-chain/src/ultimate/printUltimateLogs.js @@ -4,6 +4,7 @@ import { readFileSync, existsSync } from "node:fs"; import {randomUUID} from "node:crypto"; import {createWriteStream} from "fs"; import archiver from 'archiver'; +import path from "node:path"; export async function printUltimateLogs() { const { proxyLogPath, ultimateLogPath, proxyErrLogPath, ultimateErrLogPath } = getPathsPerPlatform(); @@ -37,7 +38,7 @@ export async function collectLogs() { const archive = archiver('zip', { zlib: { level: 9 } }); output.on('close', () => { - ui.writeInformation(`Logs collected and zipped as: ${zipFileName}`); + ui.writeInformation(`Logs collected and zipped as: ${path.resolve(zipFileName)}`); resolve(zipFileName); });