I am using the framework MFC in a project and i receive a new challenge: make a new Log generator.
So i think two possibles ways to follow.
1) Re-write all commands in the system to use a new lib of log generator.
2) Re-compile the framework MFC to write in the log file when he create a event.
That momment i came here to request your opinions on the second option.
Have you seen a company or someone create (download the source code from MFC, change e re-compile) or extend the funcionalities from MFC????
Is he talking about an output log, i.e., a text file thingie that gets text strings containing the values of variables written to it as a program runs various algorithms, and/or other such internal data?
Well, you certainly don't need to rewrite or recompile MFC for that. In fact, you don't even need MFC for that at all. You can do that in a "Hello, World!" console mode program. All you need to do is open a text file and write output statements to it, same as you would write to a console screen.