fix log time

This commit is contained in:
Zutatensuppe 2021-06-06 08:57:42 +02:00
parent cdb02da14d
commit 19301cfc81
3 changed files with 6 additions and 6 deletions

View file

@ -51,7 +51,7 @@ async function createGame(
snapMode
)
GameLog.create(gameId)
GameLog.create(gameId, ts)
GameLog.log(
gameId,
Protocol.LOG_HEADER,

View file

@ -24,7 +24,7 @@ const shouldLog = (finishTs: Timestamp, currentTs: Timestamp): boolean => {
export const filename = (gameId: string, offset: number) => `${DATA_DIR}/log_${gameId}-${offset}.log`
export const idxname = (gameId: string) => `${DATA_DIR}/log_${gameId}.idx.log`
const create = (gameId: string): void => {
const create = (gameId: string, ts: Timestamp): void => {
const idxfile = idxname(gameId)
if (!fs.existsSync(idxfile)) {
const logfile = filename(gameId, 0)
@ -32,7 +32,7 @@ const create = (gameId: string): void => {
fs.appendFileSync(idxfile, JSON.stringify({
gameId: gameId,
total: 0,
lastTs: 0,
lastTs: ts,
currentFile: logfile,
perFile: LINES_PER_LOG_FILE,
}))