We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4057763 commit 19d56ebCopy full SHA for 19d56eb
NativeScript/runtime/Console.cpp
@@ -60,7 +60,7 @@ void Console::LogCallback(const FunctionCallbackInfo<Value>& args) {
60
61
std::string level = VerbosityToInspectorVerbosity(verbosityLevel);
62
v8_inspector::V8LogAgentImpl::EntryAdded(msgToLog, level, "", 0);
63
- // std::string msgWithVerbosity = "CONSOLE " + verbosityLevelUpper + ": " + msgToLog;
+ std::string msgWithVerbosity = "CONSOLE " + verbosityLevelUpper + ": " + msgToLog;
64
Log("%s", msgToLog.c_str());
65
}
66
0 commit comments