aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-06-19 14:29:50 +0200
committerChocobozzz <me@florianbigard.com>2023-06-19 14:29:50 +0200
commit31b9518a86762f352738d3c2383fb73a5b6f6a95 (patch)
tree7bbb01bddd9be997434ad3cfe6c7478b3821027f /server
parent43897b03115ce90cc48de54c2675bafc173953f8 (diff)
downloadPeerTube-31b9518a86762f352738d3c2383fb73a5b6f6a95.tar.gz
PeerTube-31b9518a86762f352738d3c2383fb73a5b6f6a95.tar.zst
PeerTube-31b9518a86762f352738d3c2383fb73a5b6f6a95.zip
Fix log
Diffstat (limited to 'server')
-rw-r--r--server/lib/live/live-segment-sha-store.ts2
1 files changed, 1 insertions, 1 deletions
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 {
72 72
73 private writeToDisk () { 73 private writeToDisk () {
74 return this.writeQueue.add(async () => { 74 return this.writeQueue.add(async () => {
75 logger.debug(`Writing segment sha JSON ${this.sha256Path} of ${this.videoUUID} on disk %s.`, lTags(this.videoUUID)) 75 logger.debug(`Writing segment sha JSON ${this.sha256Path} of ${this.videoUUID} on disk.`, lTags(this.videoUUID))
76 76
77 // Atomic write: use rename instead of move that is not atomic 77 // Atomic write: use rename instead of move that is not atomic
78 await writeJson(this.sha256PathTMP, mapToJSON(this.segmentsSha256)) 78 await writeJson(this.sha256PathTMP, mapToJSON(this.segmentsSha256))