I've been using WebStorm's debugger for over a year with no problem. But now suddenly console.log no longer outputs to WebStorm's console window.
Has anyone ever run into this?
Some clues:
I'm using the Chrome plugin for debugging.
Debugging is local (i.e. localhost)
Breakpoints work fine
The browser's debugging console gets the console.log statement fine
I'm using Windows 7
Console logging got broken recently with Chrome API update. If you are using Chrome 54+, please try upgrading to 2016.3 EAP (release is coming soon) - the issue is fixed there
Related
I am having trouble getting crash report in my Bugsnag dashboard. I followed Bugsnag doc and tried to fatalError() on one of my ViewController and it seems like it does not work. By the way, Bugsnag.notifyError(NSError(domain:"com.example", code:408, userInfo:nil)) seems working. There is not really meaningful code to provide to get the answer because what I tried is pretty trivial. Created an app, installed Bugsnag with cocoapod, disabled bitcode part as stated in the doc (installed the plugin that uploads dSYM file), and crashed the app on purpose.
Any help will be appreciated. I am frustrated to get crash report tool on my app. I have tried Firebase crash reporting tool and did not succeed too. T.,T
Do you have the debugger attached? a fatalError will not report if the debugger is attached.
Additionally, you'll need to restart your app after a crash in order to send it in.
Hope that helps!
I'm using VS Code to develop an Ionic 2 app and using it's chrome debugging extension to step through the code within VS Code. Being an Ionic app, I primarily want to run it in device mode to simulate mobile device, but when I open the Dev Tools window Chrome's internal debugger automatically connects and breaks the connection with VS Code. It's really annoying that those two functions are connected with each other. Regardless, is there a way to work around this?
According to this VS forum post, https://developercommunity.visualstudio.com/content/problem/2828/vs-2017-rc1-cant-disable-chrome-debugging-support.html, "It looks like they added an option in Debugging > General called Enable Javascript debugging for ASP.NET (Chrome and IE) to disable this. I think this report can be closed."
Disclamer: I copied that quote from the forum post and have no intention of plagirism.
When I run my ionic project to my mobile it was working good, and when I open developer tools it's fine.
I could able to view all console statement in my developer tool window, now when I run it again app runs well in the browser and in my mobile , I am not able to see any console statement.
What I get is
device ready has not fired after 5 seconds.
cordova.js:1223
Failed to load resource
file:///android_asset/www/build/index.js.map
could someone help me to view my console statements
This should be fixed in cordova-android 6.1.0. It has not been added to the npm-registry yet, so you can use it by placing this to your config.xml:
<engine name="android" spec="https://github.com/apache/cordova-android.git#6.1.0"/>
Ok this started happening to me today when running my script. I have been working on a refreshing program that opens several pages and refreshes them randomly on python. Recently I updated firefox and updated my browser (addons, themes, etc.), I think this update may be the cause to my problem but it happened before as well but only with the firefox welcome page. I basically want to make a script specific WebDriver profile(w/ Selenium) that doesn't have any one my normal browser addons or cookies. (a default Firefox webdriver)
I have reset the browsers plugin and settings and this didn't work. It only reset the preferences for my main browser. I also reinstalled selenium and this didn't change a thing. I've looked everywhere for maybe a line of code to disable plugins on firefox, but haven't had any luck. I hope somebody has an answer this is very annoying! Feel free to ask me for left out info.
python 2.7
selenium 2.48
The home page loads, but then when I log in the app freezes. It works on IE10.I ran a profile with F12 and I can't seem to narrow down why it's taking so long. Can anyone please help me debug this?