I'm using Pantheios in my application and I'd like to generate a new log file each hour. I've seen the blog entry that explains how to add the date and time (http://blog.pantheios.org/2010/10/pantheios-101-beta-197-released-befile.html) using, for example:
pantheios_be_file_setFilePath("test-%T-%D.log");
where The %T specifier is replaced by the current time, in the format HHMMSS. The %D specifier is replaced by the current date, in the format YYYYMMSS.
The example above would create a unique file each minute. My question is whether it's possible have a file created every hour. I've tried using %H and %HH but neither works. Thanks in advance for any help.