• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/log/

Lines Matching +defs:log +defs:lvSuppressLE

0 # log.tcl --
10 package provide log 1.3
14 namespace eval ::log {
17 namespace export lvSuppress lvSuppressLE lvIsSuppressed
20 namespace export log logMsg logError
22 # The known log-levels.
34 # Array mapping from all unique prefixes for log levels to their
91 # Map from log-levels to the commands to execute when a message
93 # all levels is '::log::Puts' which writes the message to either
102 foreach lv $levels {set cmdMap($lv) ::log::Puts}
105 # Map from log-levels to the channels ::log::Puts shall write
163 # 'log::lvSuppressLE' at the bottom of this file.
190 # log::levels --
204 proc ::log::levels {} {
209 # log::lv2longform --
224 proc ::log::lv2longform {level} {
234 # log::lv2color --
248 proc ::log::lv2color {level} {
254 # log::lv2priority --
268 proc ::log::lv2priority {level} {
274 # log::lv2cmd --
288 proc ::log::lv2cmd {level} {
294 # log::lv2channel --
297 # channel used by ::log::Puts to write messages with that level.
308 proc ::log::lv2channel {level} {
314 # log::lvCompare --
333 proc ::log::lvCompare {level1 level2} {
348 # log::lvSuppress --
369 proc ::log::lvSuppress {level {suppress 1}} {
383 # log::lvSuppressLE --
404 proc ::log::lvSuppressLE {level {suppress 1}} {
427 # log::lvIsSuppressed --
441 proc ::log::lvIsSuppressed {level} {
447 # log::lvCmd --
466 proc ::log::lvCmd {level cmd} {
473 # log::lvCmdForall --
490 proc ::log::lvCmdForall {cmd} {
500 # log::lvChannel --
502 # Defines for the specified level into which channel ::log::Puts
519 proc ::log::lvChannel {level chan} {
526 # log::lvChannelForall --
529 # ::log::Puts (the standard command) shall write the messages
544 proc ::log::lvChannelForall {chan} {
554 # log::lvColor --
557 # a call to ::log::lv2color. Unique abbreviations of level names
570 proc ::log::lvColor {level color} {
577 # log::lvColorForall --
580 # call to ::log::lv2color. Unique abbreviations of level names
592 proc ::log::lvColorForall {color} {
602 # log::logarray --
605 # printed out through the log system instead of directly
608 # See also 'log::log' for a general explanation
622 proc ::log::logarray {level arrayvar {pattern *}} {
658 # log::loghex --
660 # Like 'log::log', except that the logged data is assumed to
663 # See also 'log::log' for a general explanation
676 proc ::log::loghex {level text data} {
730 # log::log --
737 # message won't be logged. The standard command ::log::Puts will
743 # misconfigurations of the log facility or errors in the callers
748 # text The message to log.
756 proc ::log::log {level text} {
781 # log::logMsg --
783 # Convenience wrapper around ::log::log. Equivalent to
784 # '::log::log info text'.
787 # text The message to log.
790 # See ::log::log.
795 proc ::log::logMsg {text} {
796 log info $text
799 # log::logError --
801 # Convenience wrapper around ::log::log. Equivalent to
802 # '::log::log error text'.
805 # text The message to log.
808 # See ::log::log.
813 proc ::log::logError {text} {
814 log error $text
818 # log::Puts --
820 # Standard log command, writing messages and levels to
827 # text The message to log.
835 proc ::log::Puts {level text} {
854 ## log::lvSuppressLE emergency
855 log::lvSuppressLE warning