Skip to content
Snippets Groups Projects
Commit fac990a6 authored by Mark Haines's avatar Mark Haines
Browse files

Merge pull request #293 from matrix-org/markjh/remove_spamy_error_logging

Remove log line that was generated whenever an error was created.
parents 49ebd472 93cc60e8
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,6 @@ class CodeMessageException(RuntimeError):
"""An exception with integer code and message string attributes."""
def __init__(self, code, msg):
logger.info("%s: %s, %s", type(self).__name__, code, msg)
super(CodeMessageException, self).__init__("%d: %s" % (code, msg))
self.code = code
self.msg = msg
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment