tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

ReportInternalError.cpp (1002B)


      1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #include "ReportInternalError.h"
      8 
      9 #include <cinttypes>
     10 
     11 #include "nsContentUtils.h"
     12 #include "nsPrintfCString.h"
     13 #include "nsString.h"
     14 
     15 namespace mozilla::dom::localstorage {
     16 
     17 void ReportInternalError(const char* aFile, uint32_t aLine, const char* aStr) {
     18  // Get leaf of file path
     19  for (const char* p = aFile; *p; ++p) {
     20    if (*p == '/' && *(p + 1)) {
     21      aFile = p + 1;
     22    }
     23  }
     24 
     25  nsContentUtils::LogSimpleConsoleError(
     26      NS_ConvertUTF8toUTF16(
     27          nsPrintfCString("LocalStorage %s: %s:%" PRIu32, aStr, aFile, aLine)),
     28      "localstorage"_ns, false,
     29      true /* Internal errors are chrome context only*/);
     30 }
     31 
     32 }  // namespace mozilla::dom::localstorage