Logging method : Service.info() alert() debug()
Hi guys,
I'm currently using Service.info() to log some of the print out. However, the daily logging e.g info seems to stop logging after 60 rows on the CQ web interface. Is there a limit in the logging as well?
One of the reasons that I used service.info instead of print everything to console is that there is a max limit in the console.
Thanks,
Simon
Comments
How about outputting your logs into a CSV?
You can just use
service.write_file
without even needing to download the CSV; see the documentation for more details.That's a great idea!! Thanks a lot!!
You're welcome!
FYI - the web UI limits the amount of data it initially displays for items like
.info()
, trades, rejects .... We might add pagination in the future.Cool. Glad to hear that!