i want to write logfile in c programm, but after day musst be add newlogfile with tempstamp have you idea, or there is libary!!!
but i want just header file not install and graph install :-(
farka
2010-07-01 08:38:37
if you want to use an external library you need to install it! Just header files won't work you need the library too. And if you meant graphviz and not graph, you don't need to install it, unless you want to build the documentation with doxygen
jigfox
2010-07-01 08:40:15
think you but no way with fopen fclose fwrite system for time !!
farka
2010-07-01 09:40:26
This is probably one of the best ways to go about logging - using an external, proven, library - because they generally have what you'd expect to eventually want in a logging class. I've written many loggers, but now, there's just no damn point.
John Bellone
2010-07-01 11:29:54
A:
Do you want to write the output of your program into a log file? This is done when you are writing big applications and you need to analyse the logs to know the exact behaviour of the software. In this case you may want to redirect the output to a log file and read and analyse it later. Incase you dont want to use any of the standard logging library, you may have to write a daemon to capture the output and create a log file.
I am quoting assuming you want to create a file log utility.
Praveen S
2010-07-01 11:24:36