Backed out 7 changesets (bug 1908069) for causing wr failures on mo-lspace-rspace...
[gecko.git] / dom / indexedDB / ReportInternalError.cpp
blobfb750c258c24b9b36cd491d9186647550a90f832
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/. */
7 #include "ReportInternalError.h"
9 #include "mozilla/IntegerPrintfMacros.h"
11 #include "nsContentUtils.h"
12 #include "nsPrintfCString.h"
14 namespace mozilla::dom::indexedDB {
16 void ReportInternalError(const char* aFile, uint32_t aLine, const char* aStr) {
17 // Get leaf of file path
18 for (const char* p = aFile; *p; ++p) {
19 if (*p == '/' && *(p + 1)) {
20 aFile = p + 1;
24 nsContentUtils::LogSimpleConsoleError(
25 NS_ConvertUTF8toUTF16(
26 nsPrintfCString("IndexedDB %s: %s:%" PRIu32, aStr, aFile, aLine)),
27 "indexedDB"_ns, false /* no IDB in private window */,
28 true /* Internal errors are chrome context only */);
31 } // namespace mozilla::dom::indexedDB