From: Chocobozzz Date: Mon, 19 Jun 2023 12:29:50 +0000 (+0200) Subject: Fix log X-Git-Tag: v5.2.0~28 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=31b9518a86762f352738d3c2383fb73a5b6f6a95;p=github%2FChocobozzz%2FPeerTube.git Fix log --- diff --git a/server/lib/live/live-segment-sha-store.ts b/server/lib/live/live-segment-sha-store.ts index 08fc460b8..8253c0274 100644 --- a/server/lib/live/live-segment-sha-store.ts +++ b/server/lib/live/live-segment-sha-store.ts @@ -72,7 +72,7 @@ class LiveSegmentShaStore { private writeToDisk () { return this.writeQueue.add(async () => { - logger.debug(`Writing segment sha JSON ${this.sha256Path} of ${this.videoUUID} on disk %s.`, lTags(this.videoUUID)) + logger.debug(`Writing segment sha JSON ${this.sha256Path} of ${this.videoUUID} on disk.`, lTags(this.videoUUID)) // Atomic write: use rename instead of move that is not atomic await writeJson(this.sha256PathTMP, mapToJSON(this.segmentsSha256))