Basically I'm using notepad++ monitoring mode to see live output to the log file (beamng.log) and there is almost always some part of the console output missing from the log file. This isn't a big deal since I can just look at the console itself for that part of the output but I'd love to have the full console output immediately show up in log file. I'm guessing there's some kind of buffer used with the log function to store a certain amount of characters before writing them. My current hack to "flush" that buffer and see the latest output in the log file is printing a ton of characters in console, around 4000 characters seems to do the trick. Actually around half of those characters will still be cut off but since I don't care about them this works to get the latest relevant output written in log file. Anyone knows of a better way to do this?