Commit 4a52d145eea173bdf0757ffb4834c173e162fb44

Con Kolivas 2014-04-15T15:55:41

Merge branch 'master' of github.com:ckolivas/cgminer

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/logging.c b/logging.c
index b75f215..1fdf48a 100644
--- a/logging.c
+++ b/logging.c
@@ -91,7 +91,7 @@ void _simplelog(int prio, const char *str, bool force)
 {
 #ifdef HAVE_SYSLOG_H
 	if (use_syslog) {
-		syslog(prio, "%s", str);
+		syslog(LOG_LOCAL0 | prio, "%s", str);
 	}
 #else
 	if (0) {}