diff --git a/ts/components/DebugLogView.tsx b/ts/components/DebugLogView.tsx index 3caa50b48..5ffd34013 100644 --- a/ts/components/DebugLogView.tsx +++ b/ts/components/DebugLogView.tsx @@ -2,7 +2,7 @@ import React, { useEffect, useState } from 'react'; import styled from 'styled-components'; import { switchThemeTo } from '../themes/switchTheme'; import { SessionTheme } from '../themes/SessionTheme'; -import { fetch } from '../util/logging'; +import { fetchNodeLog } from '../util/logging'; import { SessionButton, SessionButtonType } from './basic/SessionButton'; import { SessionIconButton } from './icon'; @@ -78,7 +78,7 @@ const DebugLogViewAndSave = () => { const commitHashInfo = window.getCommitHash() ? `Commit Hash: ${window.getCommitHash()}` : ''; // eslint-disable-next-line more/no-then - fetch() + fetchNodeLog() .then((text: any) => { const debugLogWithSystemInfo = `${operatingSystemInfo} ${commitHashInfo} ${text}`; setContent(debugLogWithSystemInfo); diff --git a/ts/node/logging.ts b/ts/node/logging.ts index f256d4f82..1f141bedb 100644 --- a/ts/node/logging.ts +++ b/ts/node/logging.ts @@ -63,7 +63,7 @@ export async function initializeLogger() { fs.mkdirSync(logPath, { recursive: true }); console.info('fetching logs from logPath'); - fetch(logPath).then( + fetchLogFile(logPath).then( data => { event.sender.send('fetched-log', data); }, @@ -218,7 +218,7 @@ async function fetchLog(logFile: string) { }); } -export async function fetch(logPath: string) { +export async function fetchLogFile(logPath: string) { // Check that the file exists locally if (!fs.existsSync(logPath)) { (console as ConsoleCustom)._log( diff --git a/ts/util/logging.ts b/ts/util/logging.ts index 83c494580..b82cfd826 100644 --- a/ts/util/logging.ts +++ b/ts/util/logging.ts @@ -94,7 +94,7 @@ function format(entries: Array) { return redactAll(entries.map(formatLine).join('\n')); } -export async function fetch() { +export async function fetchNodeLog() { return new Promise(resolve => { ipc.on('fetched-log', (_event, text) => { const result = `${getHeader()}\n${format(text)}`;