Skip to content

Commit

Permalink
changed, show where we are looking for log folder when we fail to ini…
Browse files Browse the repository at this point in the history
…t logging classes
  • Loading branch information
davilla committed Jan 13, 2012
1 parent 15ce7b6 commit 32fddd6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xbmc/Application.cpp
Expand Up @@ -545,7 +545,8 @@ bool CApplication::Create()

if (!CLog::Init(_P(g_settings.m_logFolder).c_str()))
{
fprintf(stderr,"Could not init logging classes. Permission errors on ~/.xbmc?\n");
fprintf(stderr,"Could not init logging classes. Permission errors on ~/.xbmc (%s)\n",
_P(g_settings.m_logFolder).c_str());
return false;
}

Expand Down

0 comments on commit 32fddd6

Please sign in to comment.