diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2024-04-22 19:39:08 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2024-04-22 19:39:08 +0200 |
commit | cbb6f72b868cf7f50bd148479f7604f21964d239 (patch) | |
tree | 79adcd4c633b7fbdaf730a9df332e52f0e35539c | |
parent | 20ab001670226e92ca8a74f1e2308197111a8420 (diff) |
Add long-version message "Audit:" instead of "A:"
-rw-r--r-- | apt-pkg/contrib/error.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/error.cc b/apt-pkg/contrib/error.cc index 4eaa3dc52..83e90a026 100644 --- a/apt-pkg/contrib/error.cc +++ b/apt-pkg/contrib/error.cc @@ -299,7 +299,7 @@ APT_HIDDEN std::ostream &operator<<(std::ostream &out, GlobalError::Item i) out << (out_ver < 30 ? "N:" : _("Notice:")); break; case GlobalError::AUDIT: - out << 'A'; + out << (out_ver < 30 ? "A:" : _("Audit:")); break; case GlobalError::DEBUG: // TRANSLATOR: This is a warning level displayed before the message |