This commit is contained in:
ansuz 2019-08-26 17:40:14 +02:00
parent c18018ca79
commit 8d102ea762
1 changed files with 4 additions and 1 deletions

View File

@ -868,7 +868,10 @@ module.exports.create = function (cfg) {
store.writeMetadata(channelName, JSON.stringify(metadata), function (err) { store.writeMetadata(channelName, JSON.stringify(metadata), function (err) {
if (err) { if (err) {
// FIXME tell the user that there was a channel error? // FIXME tell the user that there was a channel error?
return void Log.error('HK_WRITE_METADATA'); return void Log.error('HK_WRITE_METADATA', {
channel: channelName,
error: err,
});
} }
}); });