Fix log in after destroy hook

pull/125/head
Chocobozzz 2017-10-26 12:06:57 +02:00
parent b869d19068
commit 6cd44728bb
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ function afterDestroy (video: VideoInstance, options: { transaction: Sequelize.T
return Promise.all(tasks)
.catch(err => {
logger.error('Some errors when removing files of video %d in after destroy hook.', video.uuid, err)
logger.error('Some errors when removing files of video %s in after destroy hook.', video.uuid, err)
})
}