Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/ipc/chromium/src/base/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  logging.cc   Sprache: C

 
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/logging.h"

#include <utility>

#include "base/string_util.h"
#include "nsXPCOM.h"

namespace mozilla {

Logger::~Logger() {
  LogLevel prlevel = LogLevel::Debug;
  int xpcomlevel = -1;

  switch (mSeverity) {
    case LOG_INFO:
      prlevel = LogLevel::Debug;
      xpcomlevel = -1;
      break;

    case LOG_WARNING:
      prlevel = LogLevel::Warning;
      xpcomlevel = NS_DEBUG_WARNING;
      break;

    case LOG_ERROR:
      prlevel = LogLevel::Error;
      xpcomlevel = NS_DEBUG_WARNING;
      break;

    case LOG_ERROR_REPORT:
      prlevel = LogLevel::Error;
      xpcomlevel = NS_DEBUG_ASSERTION;
      break;

    case LOG_FATAL:
      prlevel = LogLevel::Error;
      xpcomlevel = NS_DEBUG_ABORT;
      break;
  }

  MOZ_LOG(gChromiumPRLog, prlevel,
          ("%s:%i: %s", mFile, mLine, mMsg ? mMsg.get() : ""));
  if (xpcomlevel != -1)
    NS_DebugBreak(xpcomlevel, mMsg.get(), NULL, mFile, mLine);
}

void Logger::printf(const char* fmt, ...) {
  va_list args;
  va_start(args, fmt);
  mMsg = mozilla::VsmprintfAppend(std::move(mMsg), fmt, args);
  va_end(args);
}

LazyLogModule Logger::gChromiumPRLog("chromium");

mozilla::Logger& operator<<(mozilla::Logger& log, const char* s) {
  log.printf("%s", s);
  return log;
}

mozilla::Logger& operator<<(mozilla::Logger& log, const std::string& s) {
  log.printf("%s", s.c_str());
  return log;
}

mozilla::Logger& operator<<(mozilla::Logger& log, int i) {
  log.printf("%i", i);
  return log;
}

mozilla::Logger& operator<<(mozilla::Logger& log, const std::wstring& s) {
  log.printf("%s", WideToASCII(s).c_str());
  return log;
}

mozilla::Logger& operator<<(mozilla::Logger& log, void* p) {
  log.printf("%p", p);
  return log;
}

}  // namespace mozilla

Messung V0.5
C=94 H=100 G=96

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.