ReportInternalError.cpp (1019B)
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 "mozilla/IntegerPrintfMacros.h" 10 #include "nsContentUtils.h" 11 #include "nsPrintfCString.h" 12 13 namespace mozilla::dom::indexedDB { 14 15 void ReportInternalError(const char* aFile, uint32_t aLine, const char* aStr) { 16 // Get leaf of file path 17 for (const char* p = aFile; *p; ++p) { 18 if (*p == '/' && *(p + 1)) { 19 aFile = p + 1; 20 } 21 } 22 23 nsContentUtils::LogSimpleConsoleError( 24 NS_ConvertUTF8toUTF16( 25 nsPrintfCString("IndexedDB %s: %s:%" PRIu32, aStr, aFile, aLine)), 26 "indexedDB"_ns, false /* no IDB in private window */, 27 true /* Internal errors are chrome context only */); 28 } 29 30 } // namespace mozilla::dom::indexedDB