Skip to content

Commit f6ef1bf

Browse files
authored
Revert logging if the EOS overlay is enabled (#3404)
1 parent 7ccc766 commit f6ef1bf

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/backend/logger/logger.ts

-11
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import { formatSystemInfo, getSystemInfo } from '../utils/systeminfo'
1515
import { appendFile, writeFile } from 'fs/promises'
1616
import { gamesConfigPath } from 'backend/constants'
1717
import { gameManagerMap } from 'backend/storeManagers'
18-
import { isEnabled } from 'backend/storeManagers/legendary/eos_overlay/eos_overlay'
1918
import { Winetricks } from 'backend/tools'
2019
import { platform } from 'os'
2120

@@ -429,16 +428,6 @@ class LogWriter {
429428
`Game Settings: ${gameSettingsString}\n\n`
430429
)
431430

432-
// log if EOS overlay is enabled for Epic games
433-
if (runner === 'legendary') {
434-
const enabled = await isEnabled(app_name)
435-
436-
await appendFile(
437-
this.filePath,
438-
`EOS Overlay enabled? ${enabled ? 'Yes' : 'No'}\n`
439-
)
440-
}
441-
442431
// log winetricks packages if not native
443432
if (notNative) {
444433
const winetricksPackages = await Winetricks.listInstalled(

0 commit comments

Comments
 (0)