12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
- #
- # Permission to use, copy, modify, and/or distribute this software for any
- # purpose with or without fee is hereby granted, provided that the above
- # copyright notice and this permission notice appear in all copies.
- #
- # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- # PERFORMANCE OF THIS SOFTWARE.
- # \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.
|