Bug 1688354 [wpt PR 27298] - Treat 'rem' as an absolute unit for font size, a=testonly
[gecko.git] / dom / localstorage / ReportInternalError.cpp
blob7d6b53443770d638e32c8cb05dbfbaf3935c0eff
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 <cinttypes>
10 #include "nsContentUtils.h"
11 #include "nsPrintfCString.h"
12 #include "nsString.h"
14 namespace mozilla::dom::localstorage {
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("LocalStorage %s: %s:%" PRIu32, aStr, aFile, aLine)),
27 "localstorage", false, true /* Internal errors are chrome context only*/);
30 } // namespace mozilla::dom::localstorage