This message was deleted.
# python
s
This message was deleted.
g
You likely need to use the
--logtostderr
flag too.
l
Thanks! That helps. Oddly, some of my debug messages are missing from the log... even with
-v9
. Kind of interesting that the help states
--logtostderr Log to stderr instead of to files
. Any idea where those log files are stored and organized when the
--logtostderr
option is not used?
Ok. I found out what was happening to my missing debug messages - it seems that output on stdout can writeover the same line as the stderr output. So, if the streams are not separated then you are likely to lose some messages 😢
w
That is actually surprising. Do you have an example of that? If you do - would be great to open an issue in github. That doesn’t sound intentional.
l
Yea, I can share a snippet of my code and I still have the console output too. For what it is worth, I upgraded to v1.11.0 this morning. I'll likely file an issue tomorrow morning, I was just about to sign off for the evening.
👍 1