summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Hector Martin2009-10-12 06:12:36 +0200
committerGravatar Hector Martin2009-10-12 06:12:36 +0200
commite3443789ab4deb611713ce0c1cf6a8049fe84d09 (patch)
tree143c0b55d9018446be1581b59d15bedd2acee463
parent2eff00f575de19c749f986f85566219bbf6eb3f8 (diff)
downloadusbmuxd-e3443789ab4deb611713ce0c1cf6a8049fe84d09.tar.gz
usbmuxd-e3443789ab4deb611713ce0c1cf6a8049fe84d09.tar.bz2
Make some log messages more consistent
-rw-r--r--daemon/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/daemon/main.c b/daemon/main.c
index f85d034..5fa5422 100644
--- a/daemon/main.c
+++ b/daemon/main.c
@@ -160,13 +160,13 @@ int main_loop(int listenfd)
if(cnt == -1) {
if(errno == EINTR) {
if(should_exit) {
- usbmuxd_log(LL_INFO, "event processing interrupted");
+ usbmuxd_log(LL_INFO, "Event processing interrupted");
fdlist_free(&pollfds);
return 0;
}
if(should_discover) {
should_discover = 0;
- usbmuxd_log(LL_INFO, "device discovery triggered by udev");
+ usbmuxd_log(LL_INFO, "Device discovery triggered by udev");
usb_discover();
}
}
@@ -404,7 +404,7 @@ int main(int argc, char *argv[])
/* set log level to specified verbosity */
log_level = verbose;
- usbmuxd_log(LL_NOTICE, "usbmux v%s starting up", USBMUXD_VERSION);
+ usbmuxd_log(LL_NOTICE, "usbmuxd v%s starting up", USBMUXD_VERSION);
should_exit = 0;
should_discover = 0;
@@ -556,7 +556,7 @@ int main(int argc, char *argv[])
if(res < 0)
usbmuxd_log(LL_FATAL, "main_loop failed");
- usbmuxd_log(LL_NOTICE, "usbmux shutting down");
+ usbmuxd_log(LL_NOTICE, "usbmuxd shutting down");
device_kill_connections();
usb_shutdown();
device_shutdown();