This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Pau Espin Pedrol gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/6610
Logger: Drop unused gLogEarly
Change-Id: I2c8f24fbf453e0a94d7a95c3df7cc75f0e4bd456
---
M CommonLibs/Logger.cpp
M CommonLibs/Logger.h
2 files changed, 0 insertions(+), 35 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/10/6610/1
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 @@
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 @@
//@{
/** 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)));
//@}
--
To view, visit https://gerrit.osmocom.org/6610
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I2c8f24fbf453e0a94d7a95c3df7cc75f0e4bd456
Gerrit-PatchSet: 1
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Owner: Pau Espin Pedrol <pespin at sysmocom.de>