diff --git a/libraries/logger/logging-manager.coffee b/libraries/logger/logging-manager.coffee index ddcd1892cc..852ea90339 100644 --- a/libraries/logger/logging-manager.coffee +++ b/libraries/logger/logging-manager.coffee @@ -20,7 +20,10 @@ module.exports = Logger = if @raven? error = attributes.err or attributes.error if error? - @raven.captureError(error, attributes) + tags = {} + for key, value of attributes + tags[key] = value if key.match(/_id/) and typeof value == 'string' + @raven.captureError(error, tags: tags, extra: attributes) err: ()-> @logger.error.apply(@logger, arguments) warn: ()->