vote up 1 vote down star

Where would be the best "standard" place to put an application's debug log file in a Windows user environment?

In this particular case, it is an application that is run once and could go wrong. It will be run by system administrator types who may need to inspect the log after the application is run. Everytime the application is run, a new log file is created.

Options that have been floated so far include:

  1. The program directory
  2. The user's desktop
  3. The user's local Application Data directory.

I have my favourite, but I wondered what the SO consensus was.

Note: this is similar to this question, but we're dealing with an application that's only likely to be run once by one user.

flag

What is the purpose of the log file? That could drive the answer. Who would look at it? Would it be looked at in most cases? Only looked at if there's a problem? – RichAmberale Oct 15 at 15:57
The tool is a database upgrade tool and it does a bunch of things to your database. The log shows everything it does, including errors. Most users probably only look at it in case of error, but we expect a lot of DBAs will want to know exactly what was done. So they'll want to go find the log and look at it. – Darcy Casselman Oct 15 at 17:31

6 Answers

vote up 2 vote down check

The Application Data directory would seem to be the perfect place, but it's an area that is nearly invisible. You need to give your users an easy way to get to it.

Have your installation script create a Log folder in the Application Data area for your program, and include a link to the folder in your Start menu.

link|flag
The AppData folder is the best place, but it does need a link from the program or start menu to allow easy access, even for admin type people. Why don't you just pop up the log file at the end of the run, or open an explorer window for the AppData folder? The ProgramFiles folder is wrong, Vista onwards sees that as read only unless you are an installer program. The user documents and desktop are bad choices, they should be left clear for documents the user has created (typed, downloaded) not logs. – Martin Oct 15 at 15:32
Sounds like a good ideas to me... – Darcy Casselman Oct 15 at 17:34
vote up 1 vote down

If you EXPECT something to go wrong put it in the user's local Application Data directory.

If you don't and just want to log anyways I might think about really using the temp directory. The reasoning for this is simple. If the application is only run once you will leave trash in the Application Data directory otherwise that nobody will ever need again. In the temp you have at least the CHANCE that it's going to be cleaned up later.

BTW: IMHO the best would be not not create the log AS A FILE at all (log to memory) until something goes wrong. Then you can still offer a dialog where the user selects where to save the log.

link|flag
vote up 1 vote down

I the organization I work for we use the (%TEMP% or %TMP%)\CompanyOrProductName\Logs directory Using %APPDATA% may be problematic with roaming profiles if the logs are numerous or huge : it slows their login process ...

link|flag
Good point. Something to keep in mind when dumping stuff in AppData. – Darcy Casselman Oct 15 at 18:05
vote up 2 vote down

1.The program directory <- not good. Ideally you will only have RX permissions on this folder.

2.The user's desktop <- technically can be done, but I don't like this idea. Polluting desktop... I, as a user, don't like it.

3.The user's local Application Data directory. <- better

My preference is a subdirectory under the program directory (with a clear name like "DebugLog" or something similar). Permissions on that subdirectory should allow creating and writing files ("Change" will be fine)

link|flag
Using anything under the Program Directory is a bad idea because that is shared amongst any user who uses the machine. Would you then grant anybody read/write permission to this DebugLog directory? Then you have security issues, different users overwriting eachothers' log files, etc.... Your #3 is the right answer IMHO. – RichAmberale Oct 15 at 15:55
You are quite right. In this particular case though (debug logging) a subdirectory is acceptable in my view. (this is not a standard way of using this software, but rather an exception). So it is OK to allow debugging log to be stored in a Debug subdirectory. Debugging logs should be created with unique names to prevent overwriting. – DmitryK Oct 16 at 12:33
vote up 3 vote down

The "standard" place for the log would be the AppData directory. However, really its up to you where you want to store them. As they are administrator (power users) then there should be no problems storing the logs in the same directory as the application being run. Even in the MyDocuments of the user would be a good shout.

link|flag
2  
Good point, but I would discourage recording things into My Documents or the Desktop - those are the user's places and I don't think applications should write anything to them unless directed to do so by the user. – Thomas Owens Oct 15 at 15:05
It isn't uncommon for applications (by default) to save items in the MyDocuments folder e.g. templates. Visual Studio does this as does Delphi. – James Oct 15 at 15:10
I personally get annoyed when things save things to My Documents, but that's me. One of the arguments against AppData is that it's not easily "discoverable" by users, so My Documents might be better... – Darcy Casselman Oct 15 at 15:16
vote up 0 vote down

Windows Temp Folder

link|flag
2  
Why? Who would ever look for a log file there. It's not a temporary file, IMO. – Thomas Owens Oct 15 at 15:03
He told "an application that's only likely to be run once by one user" with this information I think that is an temporary log and temporary application. – Zote Oct 15 at 18:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.