aboutsummaryrefslogtreecommitdiffstats
path: root/logger.c
diff options
context:
space:
mode:
authorPA4WDH2023-05-24 09:09:23 +0200
committerPA4WDH2023-05-24 09:09:23 +0200
commit33bd1b7c488e935f247407e191811a7539a12375 (patch)
treef60c23d07933afbfc36363b742945b62c93732cf /logger.c
parentAdd logging functions (diff)
downloadcputemp2maxfreq-33bd1b7c488e935f247407e191811a7539a12375.tar.gz
cputemp2maxfreq-33bd1b7c488e935f247407e191811a7539a12375.tar.bz2
cputemp2maxfreq-33bd1b7c488e935f247407e191811a7539a12375.zip
Redirect all output to logging functions
Diffstat (limited to 'logger.c')
-rw-r--r--logger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/logger.c b/logger.c
index 628fe8b..83e92e1 100644
--- a/logger.c
+++ b/logger.c
@@ -65,7 +65,7 @@ void logger_kmsg(char *format,...)
va_end(args);
strcpy(config.logger_name,"stdout");
config.logger=&logger_stdout;
- config.logger("Failed to open /dev/kmsg, falling back to stdout logging.");
+ config.logger("Failed to open /dev/kmsg, falling back to stdout logging");
config.logger(buffer);
}
}