summaryrefslogtreecommitdiff
path: root/apt-private
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2024-01-23 18:37:42 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2024-04-19 20:11:22 +0200
commit3cd6eacd1ab42e414f0d899a3f74fc60140f0e8a (patch)
treef635cd86e4d1319d9e0fac212520c888b9ab6d39 /apt-private
parentb455ad0a6681be80134d31ca59c350332ab4fb73 (diff)
Change the default log level from debug to notice
We never used the debug level before, so we can do that. This allows us to have the new audit level. We did call DumpErrors() with DEBUG in two debug code paths, so don't touch those. debug
Diffstat (limited to 'apt-private')
-rw-r--r--apt-private/private-cmndline.cc2
-rw-r--r--apt-private/private-output.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/apt-private/private-cmndline.cc b/apt-private/private-cmndline.cc
index e0e00c917..a37af6b58 100644
--- a/apt-private/private-cmndline.cc
+++ b/apt-private/private-cmndline.cc
@@ -604,7 +604,7 @@ unsigned short DispatchCommandLine(CommandLine &CmdL, std::vector<CommandLine::D
if (_config->FindI("quiet",0) > 0)
_error->DumpErrors();
else
- _error->DumpErrors(GlobalError::DEBUG);
+ _error->DumpErrors(GlobalError::NOTICE);
if (returned == false)
return 100;
return Errors == true ? 100 : 0;
diff --git a/apt-private/private-output.cc b/apt-private/private-output.cc
index c2e936d2c..179078e80 100644
--- a/apt-private/private-output.cc
+++ b/apt-private/private-output.cc
@@ -802,7 +802,7 @@ bool YnPrompt(char const * const Question, bool const Default, bool const ShowGl
if (_config->FindI("quiet",0) > 0)
_error->DumpErrors(c2o);
else
- _error->DumpErrors(c2o, GlobalError::DEBUG);
+ _error->DumpErrors(c2o, GlobalError::NOTICE);
}
c2o << Question << std::flush;