Vous pouvez creer de fichiers log tres simple avec ca :
Vous n'avez qu'a l'inclure dans votre projet.
Ensuite vous tapez :
LOG example_log;
apres vous faite :
example_log.init("ex_log.txt");
puis :
example_log.ouvrir();
et puis pour ecrire votre texte :
example_log.ecrire("votre texte par ex : initialisation en cours ...");
et pour finir a la fin du programme :
example_log.fermer();
ET VOILA !