mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 05:17:07 +02:00
25 lines
715 B
Diff
25 lines
715 B
Diff
diff --git a/config.cc b/config.cc
|
|
index 0148ab2..7f0b4d7 100644
|
|
--- a/config.cc
|
|
+++ b/config.cc
|
|
@@ -302,11 +302,6 @@ static bool parseInternal(nsjconf_t* nsjconf, const nsjail::NsJailConfig& njc) {
|
|
return true;
|
|
}
|
|
|
|
-static void logHandler(
|
|
- google::protobuf::LogLevel level, const char* filename, int line, const std::string& message) {
|
|
- LOG_W("config.cc: '%s'", message.c_str());
|
|
-}
|
|
-
|
|
bool parseFile(nsjconf_t* nsjconf, const char* file) {
|
|
LOG_D("Parsing configuration from '%s'", file);
|
|
|
|
@@ -316,7 +311,6 @@ bool parseFile(nsjconf_t* nsjconf, const char* file) {
|
|
return false;
|
|
}
|
|
|
|
- SetLogHandler(logHandler);
|
|
google::protobuf::io::FileInputStream input(fd);
|
|
input.SetCloseOnDelete(true);
|
|
|