Mendix cloud log file

1
We are trying to open a log file on the mendix cloud environment. However it appears that the logfile is reset once every 9 days. This results in logfiles over 100 mb. These sizes make it almost impossible to read the log files. Is there any way that we can influence the log file so that we could open it. Perhaps manually create a new one or rename the old one?
asked
1 answers
3

Don't know that much about the log rotation settings, but you can try gVim, which is much better at handling big text files than notepad, notepad++ etc.

see this stackoverflow post

If you prefer cutting it up into smaller pieces, you can use split:

split –bytes=1m /path/to/large/file /path/to/output/file/prefix

(see "man split" for more details)

answered