summaryrefslogtreecommitdiff
path: root/other/bootstrap_daemon/src/log.h
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2015-12-31 20:01:24 -0500
committerMaxim Biro <nurupo.contributions@gmail.com>2015-12-31 20:01:24 -0500
commitffa927fa361c366d8d1d2fefdeb58d0977ab91ae (patch)
tree99cc94fa94a648ab86139c18133cf410fb6298ca /other/bootstrap_daemon/src/log.h
parenta40fd1bb6c4769683c11b3e308279c17a0acbc5a (diff)
Rename LOGGER_BACKEND to LOG_BACKEND
Diffstat (limited to 'other/bootstrap_daemon/src/log.h')
-rw-r--r--other/bootstrap_daemon/src/log.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/other/bootstrap_daemon/src/log.h b/other/bootstrap_daemon/src/log.h
index b97d3733..b7712368 100644
--- a/other/bootstrap_daemon/src/log.h
+++ b/other/bootstrap_daemon/src/log.h
@@ -26,10 +26,10 @@
26 26
27#include <stdbool.h> 27#include <stdbool.h>
28 28
29typedef enum LOGGER_BACKEND { 29typedef enum LOG_BACKEND {
30 LOGGER_BACKEND_SYSLOG, 30 LOG_BACKEND_SYSLOG,
31 LOGGER_BACKEND_STDOUT 31 LOG_BACKEND_STDOUT
32} LOGGER_BACKEND; 32} LOG_BACKEND;
33 33
34typedef enum LOG_LEVEL { 34typedef enum LOG_LEVEL {
35 LOG_LEVEL_INFO, 35 LOG_LEVEL_INFO,
@@ -42,7 +42,7 @@ typedef enum LOG_LEVEL {
42 * @param backend Specifies which backend to use. 42 * @param backend Specifies which backend to use.
43 * @return true on success, flase if log is already opened. 43 * @return true on success, flase if log is already opened.
44 */ 44 */
45bool open_log(LOGGER_BACKEND backend); 45bool open_log(LOG_BACKEND backend);
46 46
47/** 47/**
48 * Releases all used resources by the logger. 48 * Releases all used resources by the logger.