logimpl_messages.mes 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
  2. #
  3. # Permission to use, copy, modify, and/or distribute this software for any
  4. # purpose with or without fee is hereby granted, provided that the above
  5. # copyright notice and this permission notice appear in all copies.
  6. #
  7. # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  8. # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  9. # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  10. # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  11. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  12. # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  13. # PERFORMANCE OF THIS SOFTWARE.
  14. # \brief Logger Implementation Messages
  15. #
  16. # This holds messages generated by the underlying logger implementation. They
  17. # are likely to be specific to that implementation, and may well change if the
  18. # underlying implementation is changed. For that reason, they have been put
  19. # in a separate file.
  20. $NAMESPACE isc::log
  21. % LOGIMPL_ABOVE_MAX_DEBUG debug level of %1 is too high and will be set to the maximum of %2
  22. A message from the interface to the underlying logger implementation reporting
  23. that the debug level (as set by an internally-created string DEBUGn, where n
  24. is an integer, e.g. DEBUG22) is above the maximum allowed value and has
  25. been reduced to that value. The appearance of this message may indicate
  26. a programming error - please submit a bug report.
  27. % LOGIMPL_BAD_DEBUG_STRING debug string '%1' has invalid format
  28. A message from the interface to the underlying logger implementation
  29. reporting that an internally-created string used to set the debug level
  30. is not of the correct format (it should be of the form DEBUGn, where n
  31. is an integer, e.g. DEBUG22). The appearance of this message indicates
  32. a programming error - please submit a bug report.
  33. % LOGIMPL_BELOW_MIN_DEBUG debug level of %1 is too low and will be set to the minimum of %2
  34. A message from the interface to the underlying logger implementation reporting
  35. that the debug level (as set by an internally-created string DEBUGn, where n
  36. is an integer, e.g. DEBUG22) is below the minimum allowed value and has
  37. been increased to that value. The appearance of this message may indicate
  38. a programming error - please submit a bug report.