Commit 1fa6fb0c authored by Jim Fulton's avatar Jim Fulton

Got rid of filter that tosses all logs with severity < 0.

That's the job of the individual loggers.
parent 3e34e6ab
...@@ -12,7 +12,6 @@ def log_write(subsystem, severity, summary, detail, error): ...@@ -12,7 +12,6 @@ def log_write(subsystem, severity, summary, detail, error):
The actual logic to determine what log messages go where will go The actual logic to determine what log messages go where will go
here. For now, everything goes to all loggers. here. For now, everything goes to all loggers.
""" """
if severity < 0: return
for logger in loggers: for logger in loggers:
logger(subsystem, severity, summary, detail, error) logger(subsystem, severity, summary, detail, error)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment