Replies: 2 comments 1 reply
-
@AdrianMrn do you have an idea on how to solve this in a clean way? |
Beta Was this translation helpful? Give feedback.
-
I have a seeder that has a lot of log output when it runs, and I'm constantly running if (ray()->enabled()) {
ray('Not sending log calls to Ray while seeding Applications...');
ray()->settings->send_log_calls_to_ray = false;
} And then this after the process was done: if (ray()->enabled()) {
ray()->settings->send_log_calls_to_ray = true;
} This obviously doesn't solve the issue in question, but it may help someone. You could just disable Ray completely with At the very least, it may be helpful for people to know that you can change Ray's settings by directly accessing the |
Beta Was this translation helpful? Give feedback.
-
If accidentally sending too much data to Ray (for instance when looping over models) the paced display of Ray lines can mean it can take a long time for the events to stop scrolling through the display.
It would be good to be able to 'fast forward' (removes all display delays) to the most recent event.
Current option is to close the window and start a fresh which is not good.
Beta Was this translation helpful? Give feedback.
All reactions