You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case, there is working Chrome or Cordova app on the device or emulator and build a NativeScript app with tns run android, the following message will be print in the console.
Message
"chromium: [INFO:CONSOLE(25)] "No Content-Security-Policy meta tag found. Please add one when using the cordova-plugin-whitelist plugin.", source: file:///android_asset/www/plugins/cordova-plugin-whitelist/whitelist.js (25)"
The text was updated successfully, but these errors were encountered:
This seems to be a problem with the way we filter out log messages from the device Logcat. For whatever reason (a substring that matched the filter regex) unrelated messages are shown.
This will be addressed with changes to the logging service to only output logs of the running process.
The current log filtering doesn't exclude logs from other processes and thus outputs logs from all of logcat with no regards to the app currently running on the device.
dtopuzov
changed the title
chromium: [INFO:CONSOLE(25)] "No Content-Security-Policy meta tag found. message after tns run android
CLI do not filter logs correctly (it also captures logs form Chrome and Cordova apps)
May 9, 2017
dtopuzov
changed the title
CLI do not filter logs correctly (it also captures logs form Chrome and Cordova apps)
CLI captures logs form Chrome and Cordova apps
May 9, 2017
dtopuzov
changed the title
CLI captures logs form Chrome and Cordova apps
CLI captures logs from Chrome and Cordova apps
May 9, 2017
In case, there is working
Chrome
orCordova app
on the device or emulator and build aNativeScript
app withtns run android
, the following message will be print in the console.Message
The text was updated successfully, but these errors were encountered: