Move UC_LOG_DESTINATION enum to logging.c, it's

not a public type
This commit is contained in:
Nils O. Selåsdal
2014-04-25 19:57:59 +02:00
parent d9bb5315f8
commit 802462a5c0
2 changed files with 15 additions and 13 deletions
+12
View File
@@ -12,6 +12,18 @@
#include "ucore/logging.h"
#include "ucore/utils.h"
/** A destination for the logging messages*/
enum UC_LOG_DESTINATION {
/** Logs using the unix syslog system */
UC_LDEST_SYSLOG,
/** Prints log messages to stderr. */
UC_LDEST_STDERR,
/** Prints log messages to a file */
UC_LDEST_FILE,
};
/** Max suffixes we'll try to apply to a log file when rotating before
* giving up
*/