]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix log
authorChocobozzz <me@florianbigard.com>
Mon, 19 Jun 2023 12:29:50 +0000 (14:29 +0200)
committerChocobozzz <me@florianbigard.com>
Mon, 19 Jun 2023 12:29:50 +0000 (14:29 +0200)
server/lib/live/live-segment-sha-store.ts

index 08fc460b8bd70b686a6b946f84e61bd3305c0e34..8253c0274fbb8c5f346195854f261721ee170a17 100644 (file)
@@ -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))