The extension console (window title "DevTools") in Chrome 138 is showing me only the first line of console entries. Does anyone know how to show the other lines? This is the first time I've used the extension console in a year or so and I don't remember having this trouble previously.
--
You received this message because you are subscribed to the Google Groups "Chromium Extensions" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-extens...@chromium.org.
To view this discussion visit https://groups.google.com/a/chromium.org/d/msgid/chromium-extensions/6d83130a-176f-4206-972a-b193c60777c0n%40chromium.org.

logError(632384, "Failed moving id=" + json.exid + " to", destinInfo, ". Ignoring. Error: " + chrome.runtime.lastError.message);
and
function logError(errorCode, errorDescription) {
if (!isDefined(errorDescription)) {
errorDescription = "Sorry, no error description"
}
console.log("Error " + errorCode + ": " + errorDescription);
...
}
I'm pretty sure that destinInfo is a multiline string. I need to see that "chrome.runtime.lastError.message.