• I’m writing hundreds of lines of PC::Debug. For every message that goes to the console I have to endure a popup for each console message. When you have 500 lines of output it’s pretty annoying to wait for the plugin to get through all of them. If there wasn’t a noise it wouldn’t be so bad.

    How can I disable the popup?

Viewing 1 replies (of 1 total)
  • Plugin Author Fulvio Notarstefano

    (@nekojira)

    I believe that’s the Google Chrome popup you’re talking about. It’s intended to alert you of issues and can even work with your OS notification center probably.

    I suppose PHP Console is designed for that use. Could you post some screenshot of what looks like to you or some code snippet you have used?

    If you need to debug several lines, an alternative way in WordPress would be to store the the variables you need into some wp_options options and then return their content in the console by executing return get_option( 'your_option_key' ); later. So this won’t bug you at every load, and you can still access the information you’ve recorded.

    Sorry if I misunderstood your question otherwise.

Viewing 1 replies (of 1 total)
  • The topic ‘PHP Console plugin showing popup for every message’ is closed to new replies.