HomeSort by: relevance | last modified time | path
    Searched refs:logging (Results 1 - 25 of 261) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/bsd/kyua-cli/dist/utils/logging/
macros.hpp 29 /// \file utils/logging/macros.hpp
30 /// Convenience macros to simplify usage of the logging library.
37 #include "utils/logging/operations.hpp"
43 #define LD(message) utils::logging::log(utils::logging::level_debug, \
50 #define LE(message) utils::logging::log(utils::logging::level_error, \
57 #define LI(message) utils::logging::log(utils::logging::level_info, \
64 #define LW(message) utils::logging::log(utils::logging::level_warning,
    [all...]
operations_test.cpp 29 #include "utils/logging/operations.hpp"
47 namespace logging = utils::logging;
55 logging::generate_log_name(fs::path("/some/dir"), "foobar"));
58 logging::log(logging::level_info, "file", 123, "A message");
62 logging::generate_log_name(fs::path("/some/dir"), "foobar"));
70 logging::log(logging::level_info, "file", 123, "A message");
72 logging::log(logging::level_info, "file", 123, "A message")
    [all...]
operations.cpp 29 #include "utils/logging/operations.hpp"
48 namespace logging = utils::logging;
54 /// The general idea for the application-wide logging goes like this:
56 /// 1. The application starts. Logging is initialized to capture _all_ log
60 /// 2. The application offers the user a way to select the logging level and a
70 /// 5. The internal state of the logging module is updated to only capture
75 /// application. Tests should skip this call so that the logging messages go to
83 static logging::level log_level = logging::level_debug
    [all...]
macros_test.cpp 29 #include "utils/logging/macros.hpp"
38 #include "utils/logging/operations.hpp"
42 namespace logging = utils::logging;
48 logging::set_persistency("debug", fs::path("test.log"));
64 logging::set_persistency("debug", fs::path("test.log"));
80 logging::set_persistency("debug", fs::path("test.log"));
96 logging::set_persistency("debug", fs::path("test.log"));
operations.hpp 29 /// \file utils/logging/operations.hpp
30 /// Stateless logging facilities.
40 namespace logging { namespace in namespace:utils
61 } // namespace logging
  /src/usr.bin/make/unit-tests/
opt-debug.mk 3 # Tests for the -d command line option, which controls debug logging.
5 # Enable debug logging for the variables (var.c).
10 # Disable all debug logging again.
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
__main__.py 12 import logging
20 log.basic.LOGGERS["conftest"] = logging.getLogger()
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/
__init__.py 9 import logging
53 logging.debug('run build %s, in environment: %s', command, environment)
55 logging.debug('build finished with exit code: %d', exit_code)
72 logging.debug('exec command %s in %s', command, directory)
83 """ Reconfigure logging level and format based on the verbose flag.
92 root = logging.getLogger()
93 # Tune logging level.
94 level = logging.WARNING - min(logging.WARNING, (10 * verbose_level))
101 handler = logging.StreamHandler(sys.stdout
    [all...]
intercept.py 12 The 'libear' library is capturing all child process creation and logging the
29 import logging
119 logging.debug('intercept gonna use compiler wrappers')
126 logging.debug('intercept gonna preload libear on OSX')
132 logging.debug('intercept gonna preload libear on UNIX')
155 logging.warning(message_prefix, 'missing target directory')
161 logging.debug('writing execution report to: %s', target_file)
164 logging.warning(message_prefix, 'io problem')
190 logging.debug('parse exec trace file: %s', filename)
212 logging.debug('format this command: %s', exec_trace['command']
    [all...]
  /src/external/bsd/kyua-cli/tests/kyua-cli/utils/logging/
Makefile 7 TESTSDIR= ${TESTSBASE}/kyua-cli/utils/logging
9 .PATH: ${SRCDIR}/utils/logging
  /src/external/mpl/bind/dist/bin/tests/system/isctest/log/
basic.py 12 import logging
25 } # type: Dict[str, Optional[logging.Logger]]
31 and configuration before tests are executed -- aka any logging in this
34 LOGGERS["conftest"] = logging.getLogger("conftest")
35 LOGGERS["conftest"].setLevel(logging.DEBUG)
36 file_handler = logging.FileHandler("pytest.conftest.log.txt")
37 file_handler.setFormatter(logging.Formatter(LOG_FORMAT))
45 regular logging as well and are thus displayed twice.
48 for handler in logging.root.handlers:
49 if handler.__class__ == logging.StreamHandler
    [all...]
  /src/external/gpl3/gcc/dist/contrib/gcc-changelog/
git_update_version.py 23 import logging
45 logging.basicConfig(level=logging.INFO, format=FORMAT,
47 logging.FileHandler('/tmp/git_update_version.txt'),
48 logging.StreamHandler()
60 logging.info(error)
64 logging.info('writing to %s' % full_path)
112 logging.info('%d revisions since last Daily bump' % commit_count)
134 logging.info('branch diff written to %s' % patch)
138 logging.info('DATESTAMP will be changed:'
    [all...]
  /src/external/bsd/libfido2/dist/src/
log.c 25 static TLS int logging; variable
52 logging = 1;
61 if (!logging || log_handler == NULL)
76 if (!logging || log_handler == NULL)
105 if (!logging || log_handler == NULL)
  /src/libexec/talkd/
extern.h 49 extern int logging;
  /src/external/apache2/llvm/dist/llvm/utils/docker/scripts/llvm_checksum/
llvm_checksum.py 9 import logging
21 "-v", "--verbose", action="store_true", help="enable debug logging")
49 logging.basicConfig(level=logging.DEBUG)
91 logging.debug("Replaced svn keyword substitutions in %s", file_path)
92 logging.debug("\n\tBefore\n%s\n\tAfter\n%s", contents, new_contents)
100 logging.info("Folder %s doesn't exist, skipping project %s", proj.relpath,
114 logging.debug("Checksum %s for file %s", file_digest, file_path)
117 logging.info("Computing checksum for %s", proj.name)
  /src/external/bsd/kyua-cli/dist/store/
metadata_test.cpp 35 #include "utils/logging/operations.hpp"
38 namespace logging = utils::logging;
71 logging::set_inmemory();
91 logging::set_inmemory();
131 logging::set_inmemory();
  /src/libexec/fingerd/
fingerd.c 70 int p[2], logging, no_forward, user_required, short_list; local
81 logging = no_forward = user_required = short_list = 0;
87 logging = 1;
126 if (logging) {
136 if (logging)
144 if (logging) {
  /src/external/bsd/kyua-cli/tests/kyua-cli/utils/
Makefile 26 TESTS_SUBDIRS+= cmdline config format fs logging process signals sqlite text
  /src/external/bsd/kyua-cli/dist/cli/
main_test.cpp 50 #include "utils/logging/macros.hpp"
51 #include "utils/logging/operations.hpp"
59 namespace logging = utils::logging;
218 logging::set_inmemory();
237 logging::set_inmemory();
256 logging::set_inmemory();
275 logging::set_inmemory();
294 logging::set_inmemory();
317 logging::set_inmemory()
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/checkconf/
bad-printtime.conf 14 logging {
  /src/external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/
named.conf.j2 27 logging {
named.dir.conf.j2 27 logging {
named.iso8601-utc.conf.j2 27 logging {
named.iso8601.conf.j2 27 logging {
named.pipe.conf.j2 27 logging {

Completed in 33 milliseconds

1 2 3 4 5 6 7 8 91011