config_messages.mes 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # Copyright (C) 2011, 2014 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. $NAMESPACE isc::config
  15. % CONFIG_CCSESSION_MSG error in CC session message: %1
  16. There was a problem with an incoming message on the command and control
  17. channel. The message does not appear to be a valid command, and is
  18. missing a required element or contains an unknown data format. This
  19. most likely means that another Kea module is sending a bad message.
  20. The message itself is ignored by this module.
  21. % CONFIG_CCSESSION_MSG_INTERNAL error handling CC session message: %1
  22. There was an internal problem handling an incoming message on the command
  23. and control channel. An unexpected exception was thrown, details of
  24. which are appended to the message. The module will continue to run,
  25. but will not send back an answer.
  26. The most likely cause of this error is a programming error. Please raise
  27. a bug report.
  28. % CONFIG_CCSESSION_STOPPING error sending stopping message: %1
  29. There was a problem when sending a message signaling that the module using
  30. this CCSession is stopping. This message is sent so that the rest of the
  31. system is aware that the module is no longer running. Apart from logging
  32. this message, the error itself is ignored, and the ModuleCCSession is
  33. still stopped. The specific exception message is printed.
  34. % CONFIG_CCSESSION_STOPPING_UNKNOWN unknown error sending stopping message
  35. Similar to CONFIG_CCSESSION_STOPPING, but in this case the exception that
  36. is seen is not a standard exception, and further information is unknown.
  37. This is a bug.
  38. % CONFIG_GET_FAIL error getting configuration from cfgmgr: %1
  39. The configuration manager returned an error when this module requested
  40. the configuration. The full error message answer from the configuration
  41. manager is appended to the log error. The most likely cause is that
  42. the module is of a different (command specification) version than the
  43. running configuration manager.
  44. % CONFIG_JSON_PARSE JSON parse error in %1: %2
  45. There was an error parsing the JSON file. The given file does not appear
  46. to be in valid JSON format. Please verify that the filename is correct
  47. and that the contents are valid JSON.
  48. % CONFIG_LOG_EXPLICIT will use logging configuration for explicitly-named logger %1
  49. This is a debug message. When processing the "loggers" part of the
  50. configuration file, the configuration library found an entry for the named
  51. logger that matches the logger specification for the program. The logging
  52. configuration for the program will be updated with the information.
  53. % CONFIG_LOG_IGNORE_EXPLICIT ignoring logging configuration for explicitly-named logger %1
  54. This is a debug message. When processing the "loggers" part of the
  55. configuration file, the configuration library found an entry for the
  56. named logger. As this does not match the logger specification for the
  57. program, it has been ignored.
  58. % CONFIG_LOG_IGNORE_WILD ignoring logging configuration for wildcard logger %1
  59. This is a debug message. When processing the "loggers" part of the
  60. configuration file, the configuration library found the named wildcard
  61. entry (one containing the "*" character) that matched a logger already
  62. matched by an explicitly named entry. The configuration is ignored.
  63. % CONFIG_LOG_WILD_MATCH will use logging configuration for wildcard logger %1
  64. This is a debug message. When processing the "loggers" part of
  65. the configuration file, the configuration library found the named
  66. wildcard entry (one containing the "*" character) that matches a logger
  67. specification in the program. The logging configuration for the program
  68. will be updated with the information.
  69. % CONFIG_MOD_SPEC_FORMAT module specification error in %1: %2
  70. The given file does not appear to be a valid specification file: details
  71. are included in the message. Please verify that the filename is correct
  72. and that its contents are a valid Kea module specification.
  73. % CONFIG_MOD_SPEC_REJECT module specification rejected by cfgmgr: %1
  74. The specification file for this module was rejected by the configuration
  75. manager. The full error message answer from the configuration manager is
  76. appended to the log error. The most likely cause is that the module is of
  77. a different (specification file) version than the running configuration
  78. manager.
  79. % CONFIG_OPEN_FAIL error opening %1: %2
  80. There was an error opening the given file. The reason for the failure
  81. is included in the message.
  82. % CONFIG_RPC_SEQ RPC call %1 to %2 with seq %3
  83. Debug message, saying there's a RPC call of given command to given module. It
  84. has internal sequence number as listed in the message.