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 13282a0 commit 3f4abd1Copy full SHA for 3f4abd1
NativeScript/runtime/Console.cpp
@@ -61,7 +61,7 @@ void Console::LogCallback(const FunctionCallbackInfo<Value>& args) {
61
std::string level = VerbosityToInspectorVerbosity(verbosityLevel);
62
v8_inspector::V8LogAgentImpl::EntryAdded(msgToLog, level, "", 0);
63
std::string msgWithVerbosity = "CONSOLE " + verbosityLevelUpper + ": " + msgToLog;
64
- Log("%s", msgToLog.c_str());
+ Log("%s", msgWithVerbosity.c_str());
65
}
66
67
void Console::AssertCallback(const FunctionCallbackInfo<Value>& args) {
0 commit comments