I have a Console Application which reads some data, fills it into a Dictionary-like structure, manipulates it and then makes some output files.
However, when printing output it sometimes prints:
Fail:
Where it really shouldn't. I cannot find anything on Google (not really much to search for) and I cannot find anything when I search for the string "fail" in my solution (so it's not my code doing it).
I have no idea why this is happening, the relevant block does often generate exceptions but I catch them, and when I was using Console.WriteLine
instead of Trace.WriteLine
it was working fine, although I cannot easily verify that this is the cause.
I have no idea how to fix this.
What could possibly cause Fail:
being printed to the console?
How do I put a breakpoint to stop at it?
Where do I even start looking to figure this out?