diff options
author | B. Watson <urchlay@slackware.uk> | 2025-05-09 16:38:12 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-05-09 16:38:12 -0400 |
commit | 93f32dfcdf6eee2170e3ba8cdbf15b8a88affa8b (patch) | |
tree | 1e725944e4beb483e4cef3d5ffa70f30bd809aed | |
parent | e9a2357aa6013c626dfa097b2df3b644e246bdec (diff) | |
download | marsond-93f32dfcdf6eee2170e3ba8cdbf15b8a88affa8b.tar.gz |
tweak debug messages.
-rw-r--r-- | marsond.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -343,7 +343,7 @@ int main(int argc, char **argv) { if(ioctl(outfd, UI_GET_SYSNAME(sizeof(name)), name) >= 0) { debug("created virtual keyboard device: /sys/devices/virtual/input/%s/", name); } else { - debug("created virtual keyboard device but couldn't get its name (weird)"); + debug("created virtual keyboard device but couldn't get its name (old kernel?)"); } } } else { @@ -357,6 +357,7 @@ int main(int argc, char **argv) { lock_memory(); set_realtime(); drop_privs(); + debug("entering event loop"); } else { daemonize(); } |