diff options
Diffstat (limited to 'src/lib/log/logimpl_messages.mes')
-rw-r--r-- | src/lib/log/logimpl_messages.mes | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/lib/log/logimpl_messages.mes b/src/lib/log/logimpl_messages.mes new file mode 100644 index 0000000..8af43fc --- /dev/null +++ b/src/lib/log/logimpl_messages.mes @@ -0,0 +1,35 @@ +# Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC") +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +# \brief Logger Implementation Messages +# +# This holds messages generated by the underlying logger implementation. They +# are likely to be specific to that implementation, and may well change if the +# underlying implementation is changed. For that reason, they have been put +# in a separate file. + +$NAMESPACE isc::log + +% LOGIMPL_ABOVE_MAX_DEBUG debug level of %1 is too high and will be set to the maximum of %2 +A message from the interface to the underlying logger implementation reporting +that the debug level (as set by an internally-created string DEBUGn, where n +is an integer, e.g. DEBUG22) is above the maximum allowed value and has +been reduced to that value. The appearance of this message may indicate +a programming error - please submit a bug report. + +% LOGIMPL_BAD_DEBUG_STRING debug string '%1' has invalid format +A message from the interface to the underlying logger implementation +reporting that an internally-created string used to set the debug level +is not of the correct format (it should be of the form DEBUGn, where n +is an integer, e.g. DEBUG22). The appearance of this message indicates +a programming error - please submit a bug report. + +% LOGIMPL_BELOW_MIN_DEBUG debug level of %1 is too low and will be set to the minimum of %2 +A message from the interface to the underlying logger implementation reporting +that the debug level (as set by an internally-created string DEBUGn, where n +is an integer, e.g. DEBUG22) is below the minimum allowed value and has +been increased to that value. The appearance of this message may indicate +a programming error - please submit a bug report. |