projects
/
cubemap
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4cb5673
)
Make things line up a bit better.
author
Steinar H. Gunderson
<sgunderson@bigfoot.com>
Mon, 15 Apr 2013 23:04:53 +0000
(
01:04
+0200)
committer
Steinar H. Gunderson
<sgunderson@bigfoot.com>
Mon, 15 Apr 2013 23:04:53 +0000
(
01:04
+0200)
log.cpp
patch
|
blob
|
history
diff --git
a/log.cpp
b/log.cpp
index
c594988
..
39ad9eb
100644
(file)
--- a/
log.cpp
+++ b/
log.cpp
@@
-76,7
+76,7
@@
void log(LogLevel log_level, const char *fmt, ...)
syslog_level = LOG_INFO;
break;
case INFO:
- log_level_str = "INFO: ";
+ log_level_str = "INFO:
";
syslog_level = LOG_INFO;
break;
case WARNING:
@@
-84,7
+84,7
@@
void log(LogLevel log_level, const char *fmt, ...)
syslog_level = LOG_WARNING;
break;
case ERROR:
- log_level_str = "ERROR: ";
+ log_level_str = "ERROR:
";
syslog_level = LOG_ERR;
break;
default: