aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-02-20 17:24:18 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2018-02-20 18:14:20 +0100
commitbd45a979f8eea4ef6effafd37e0a18ef250a681f (patch)
tree2e1bdf33070f84c6d2a8be57f83424e358980fda
parentb7095c7bc5f5c710d958f03b38be83dffff729ae (diff)
Logger: Drop unused gLogEarly
-rw-r--r--CommonLibs/Logger.cpp33
-rw-r--r--CommonLibs/Logger.h2
2 files changed, 0 insertions, 35 deletions
diff --git a/CommonLibs/Logger.cpp b/CommonLibs/Logger.cpp
index 5b8da99..ee607fd 100644
--- a/CommonLibs/Logger.cpp
+++ b/CommonLibs/Logger.cpp
@@ -214,37 +214,4 @@ void gLogInit(const char* name, const char* level, int facility, char* fn)
openlog(name,0,facility);
}
-
-void gLogEarly(int level, const char *fmt, ...)
-{
- va_list args;
-
- va_start(args, fmt);
-
- if (gLogToSyslog) {
- va_list args_copy;
- va_copy(args_copy, args);
- vsyslog(level | LOG_USER, fmt, args_copy);
- va_end(args_copy);
- }
-
- if (gLogToConsole) {
- va_list args_copy;
- va_copy(args_copy, args);
- vprintf(fmt, args_copy);
- printf("\n");
- va_end(args_copy);
- }
-
- if (gLogToFile) {
- va_list args_copy;
- va_copy(args_copy, args);
- vfprintf(gLogToFile, fmt, args_copy);
- fprintf(gLogToFile, "\n");
- va_end(args_copy);
- }
-
- va_end(args);
-}
-
// vim: ts=4 sw=4
diff --git a/CommonLibs/Logger.h b/CommonLibs/Logger.h
index 099d300..9743b88 100644
--- a/CommonLibs/Logger.h
+++ b/CommonLibs/Logger.h
@@ -131,8 +131,6 @@ std::ostream& operator<<(std::ostream& os, std::ostringstream& ss);
//@{
/** Initialize the global logging system. */
void gLogInit(const char* name, const char* level=NULL, int facility=LOG_USER, char* fn=NULL);
-/** Allow early logging when still in constructors */
-void gLogEarly(int level, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
//@}