From 19c74ce9fa1dc912eaccdf0e02b835a93faa0d0a Mon Sep 17 00:00:00 2001
From: hagen <hagen@mail.i2p>
Date: Fri, 18 Dec 2015 12:25:48 +0000
Subject: [PATCH] * sane log messages: DaemonLinux.cpp

---
 DaemonLinux.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/DaemonLinux.cpp b/DaemonLinux.cpp
index ac7a3402..d4b72de0 100644
--- a/DaemonLinux.cpp
+++ b/DaemonLinux.cpp
@@ -26,7 +26,7 @@ void handle_signal(int sig)
 				return;
 			}
 		}
-		LogPrint("Reloading config.");
+		LogPrint(eLogInfo, "Daemon: Got SIGHUP, reloading config.");
 		i2p::util::filesystem::ReadConfigFile(i2p::util::config::mapArgs, i2p::util::config::mapMultiArgs);
 		break;
 	case SIGABRT:
@@ -59,7 +59,7 @@ namespace i2p
 				int sid = setsid();
 				if (sid < 0)
 				{
-					LogPrint("Error, could not create process group.");
+					LogPrint(eLogError, "Daemon: could not create process group.");
 					return false;
 				}
 				std::string d(i2p::util::filesystem::GetDataDir().string ()); // make a copy
@@ -80,12 +80,12 @@ namespace i2p
 			pidFilehandle = open(pidfile.c_str(), O_RDWR | O_CREAT, 0600);
 			if (pidFilehandle == -1)
 			{
-				LogPrint("Error, could not create pid file (", pidfile, ")\nIs an instance already running?");
+				LogPrint(eLogError, "Daemon: could not create pid file ", pidfile, ": ", strerror(errno));
 				return false;
 			}
 			if (lockf(pidFilehandle, F_TLOCK, 0) == -1)
 			{
-				LogPrint("Error, could not lock pid file (", pidfile, ")\nIs an instance already running?");
+				LogPrint(eLogError, "Daemon: could not lock pid file ", pidfile, ": ", strerror(errno));
 				return false;
 			}
 			char pid[10];