Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unwanted Output In Console

I've started to get some strange output in my developer console. I was wondering if there was a way to turn it off.

Net state changed from IDLE to BUSY

That outputs whenever anything server side is called, you can imagine that it might cause a lot of clutter.

like image 741
Rherma Avatar asked Jul 02 '18 18:07

Rherma


People also ask

How do I suppress output in PowerShell?

To silence direct console output and discard all output, you can temporarily disable the internal PowerShell command Out-Default . This command is used privately to write directly to the console. Read more about Out-Default if you like.


1 Answers

I was faced out with this issue also, tried to google, but no results.

Do not worry. This output appears when you call add-on back-end by calling google.script.run. It is default output for debugging the state of a connection. Probably you have a loop that gets information from the add-on backend infinitely.

like image 141
Entity Avatar answered Oct 11 '22 14:10

Entity