1
0
forked from noxious/server

Console fix

This commit is contained in:
2025-02-11 23:16:37 +01:00
parent fedb5c154b
commit bebd5876da
56 changed files with 58 additions and 61 deletions

View File

@ -1,4 +1,3 @@
import { SocketEvent } from '#application/enums';
import * as fs from 'fs'
import * as path from 'path'
@ -61,7 +60,7 @@ export class LogReader {
end: newPosition
})
stream.on(SocketEvent.DATA, (data) => {
stream.on('data', (data) => {
console.log(`[${filename}]`)
console.log(data.toString()) //
})