console.log - output ERROR

Hello
Strange Error.
If I use Console.Log in some page - no restrictions
and hundreds line of output debbuging lines I can see in Debbuger window

But if I use console.log inside function in Backend - about 100-120 lines appear
and stopped to show.

Please tell me what is it?
Restrictions?
Bug?

Is it some trick?

Thank You in advance
Sincerely, Mikhail

There is a limit imposed on transfer of data from backend to frontend.

In order to overcome this limitation, you have two options:

  • Log your debug messages to a database collection.

  • Use the very robust (but more complex) site monitoring feature.

Dear Yisrael, thank You.