Home
last modified time | relevance | path

Searched refs:LogLevel (Results 1 – 25 of 29) sorted by relevance

12

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/logger/
H A Dcore.d18 template isLoggingActiveAt(LogLevel ll) in isLoggingActiveAt()
26 static if (ll == LogLevel.trace) in isLoggingActiveAt()
30 else static if (ll == LogLevel.info) in isLoggingActiveAt()
34 else static if (ll == LogLevel.warning) in isLoggingActiveAt()
38 else static if (ll == LogLevel.error) in isLoggingActiveAt()
42 else static if (ll == LogLevel.critical) in isLoggingActiveAt()
46 else static if (ll == LogLevel.fatal) in isLoggingActiveAt()
60 enum isLoggingActive = isLoggingActiveAt!(LogLevel.all);
68 bool isLoggingEnabled()(LogLevel ll, LogLevel loggerLL, in isLoggingEnabled()
69 LogLevel globalLL, lazy bool condition = true) @safe in isLoggingEnabled()
[all …]
H A Dfilelogger.d37 this(in string fn, const LogLevel lv = LogLevel.all) @safe
63 this(in string fn, const LogLevel lv, CreateFolder createFileNameFolder) @safe in this()
102 this(File file, const LogLevel lv = LogLevel.all) @safe
121 string prettyFuncName, string moduleName, LogLevel logLevel, in beginLogMsg()
194 l.logLevel = LogLevel.critical;
195 l.log(LogLevel.warning, notWritten);
196 l.log(LogLevel.critical, written);
216 auto f = new FileLogger(filename, LogLevel.all, CreateFolder.yes);
242 l.logLevel = LogLevel.critical;
243 l.log(LogLevel.warning, notWritten);
[all …]
H A Dmultilogger.d38 this(const LogLevel lv = LogLevel.all) @safe
156 auto traceLog = new FileLogger(logFileOutput, LogLevel.all);
157 auto infoLog = new TestLogger(LogLevel.info);
159 auto root = new MultiLogger(LogLevel.all);
191 assert(dl.logLevel == LogLevel.all);
192 assert(globalLogLevel == LogLevel.all);
196 stdThreadLocalLog.logLevel = LogLevel.all;
H A Dnulllogger.d20 this(const LogLevel lv = LogLevel.all) @safe
34 import std.experimental.logger.nulllogger : LogLevel;
36 auto nl1 = new NullLogger(LogLevel.all);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/logger/
H A Dcore.d21 template isLoggingActiveAt(LogLevel ll) in isLoggingActiveAt()
29 static if (ll == LogLevel.trace) in isLoggingActiveAt()
33 else static if (ll == LogLevel.info) in isLoggingActiveAt()
37 else static if (ll == LogLevel.warning) in isLoggingActiveAt()
41 else static if (ll == LogLevel.error) in isLoggingActiveAt()
45 else static if (ll == LogLevel.critical) in isLoggingActiveAt()
49 else static if (ll == LogLevel.fatal) in isLoggingActiveAt()
63 enum isLoggingActive = isLoggingActiveAt!(LogLevel.all);
71 bool isLoggingEnabled()(LogLevel ll, LogLevel loggerLL, in isLoggingEnabled()
72 LogLevel globalLL, lazy bool condition = true) @safe in isLoggingEnabled()
[all …]
H A Dfilelogger.d40 this(const string fn, const LogLevel lv = LogLevel.all) @safe
66 this(const string fn, const LogLevel lv, CreateFolder createFileNameFolder) @safe in this()
105 this(File file, const LogLevel lv = LogLevel.all) @safe
124 string prettyFuncName, string moduleName, LogLevel logLevel, in beginLogMsg()
201 l.logLevel = LogLevel.critical;
202 l.log(LogLevel.warning, notWritten);
203 l.log(LogLevel.critical, written);
223 auto f = new FileLogger(filename, LogLevel.all, CreateFolder.yes);
249 l.logLevel = LogLevel.critical;
250 l.log(LogLevel.warning, notWritten);
[all …]
H A Dmultilogger.d41 this(const LogLevel lv = LogLevel.all) @safe
159 auto traceLog = new FileLogger(logFileOutput, LogLevel.all);
160 auto infoLog = new TestLogger(LogLevel.info);
162 auto root = new MultiLogger(LogLevel.all);
194 assert(dl.logLevel == LogLevel.info);
195 assert(globalLogLevel == LogLevel.all);
199 stdThreadLocalLog.logLevel = LogLevel.all;
H A Dnulllogger.d23 this(const LogLevel lv = LogLevel.all) @safe
37 import std.experimental.logger.core : LogLevel;
38 auto nl1 = new NullLogger(LogLevel.all);
/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dlog.h48 } LogLevel; typedef
50 typedef void (log_handler_fn)(LogLevel, int, const char *, void *);
52 void log_init(const char *, LogLevel, SyslogFacility, int);
53 LogLevel log_level_get(void);
54 int log_change_level(LogLevel);
62 LogLevel log_level_number(char *);
63 const char * log_level_name(LogLevel);
69 LogLevel, const char *, const char *, ...)
72 LogLevel, const char *, const char *, va_list);
74 LogLevel, const char *, const char *, ...) __attribute__((noreturn))
[all …]
H A Dlog.c57 static LogLevel log_level = SYSLOG_LEVEL_INFO;
90 LogLevel val;
105 LogLevel
134 LogLevel
147 log_level_name(LogLevel level) in log_level_name()
188 log_init(const char *av0, LogLevel level, SyslogFacility facility, in log_init()
249 log_change_level(LogLevel new_log_level) in log_change_level()
309 do_log(LogLevel level, int force, const char *suffix, const char *fmt, in do_log()
399 LogLevel level, const char *suffix, const char *fmt, ...) in sshlog()
410 LogLevel level, const char *suffix, const char *fmt, ...) in sshlogdie()
[all …]
H A Dssh-sk-helper.c277 LogLevel log_level = SYSLOG_LEVEL_ERROR; in main()
332 if (!vflag && log_level_name((LogLevel)ll) != NULL) in main()
333 log_init(__progname, (LogLevel)ll, log_facility, log_stderr); in main()
H A Dfatal.c40 LogLevel level, const char *suffix, const char *fmt, ...) in sshfatal()
H A Dmonitor_wrap.h41 void mm_log_handler(LogLevel, int, const char *, void *);
H A Dreadconf.h72 LogLevel log_level; /* Level for logging. */
H A Dsshd_config26 #LogLevel INFO
H A Dclientloop.c2240 hostkey_change_preamble(LogLevel loglevel) in hostkey_change_preamble()
2252 LogLevel loglevel = asking ? SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_VERBOSE; in update_known_hosts()
H A Dmonitor_wrap.c92 mm_log_handler(LogLevel level, int forced, const char *msg, void *ctx) in mm_log_handler()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dlog.h44 inline int& LogLevel() { in LogLevel() function
60 if (level <= LogLevel()) { in GetLogInstanceForLevel()
H A Dbenchmark.cc620 internal::LogLevel() = FLAGS_v; in Initialize()
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dlog.h44 inline int& LogLevel() { in LogLevel() function
60 if (level <= LogLevel()) { in GetLogInstanceForLevel()
H A Dbenchmark.cc482 internal::LogLevel() = FLAGS_v; in Initialize()
/netbsd-src/tests/lib/librumphijack/
H A Dsshd_config.in8 LogLevel DEBUG1
/netbsd-src/tests/fs/psshfs/
H A Dsshd_config.in8 LogLevel DEBUG1
/netbsd-src/crypto/external/bsd/openssh/bin/ssh-copy-id/
H A Dssh-copy-id241 -o LogLevel=INFO \
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/
H A Dwin2k.texi302 @code{HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\Kerberos\Parameters\LogLevel}

12