~x3lectric/xbmc/svn-trunk

« back to all changes in this revision

Viewing changes to xbmc/lib/smartXX/smartxxlcd.cpp

  • Committer: tslayer
  • Date: 2004-08-05 23:57:52 UTC
  • Revision ID: svn-v4:568bbfeb-2a22-0410-94d2-cc84cf5bfa90:trunk/XBMC:1846
  - fixed: Fallback skin is now Project Mayhem and not MediaCenter

  - fixed: Only use directory name as description for default.xbe

  - added: Different Log Levels can now be specified.  Default is NOTICE.

         . Please note that the default loglevel is NOTICE.
         . The LogLevels that can be used are defined in utils/log.h
         . I've changed some of the Log statements to use the loglevel
           as I saw fit, but please change if you feel it should be another
           log level.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
  StopThread();
121
121
  if (!g_stSettings.m_bLCDUsed) 
122
122
  {
123
 
    CLog::Log("lcd not used");
 
123
    CLog::Log(LOGINFO, "lcd not used");
124
124
    return;
125
125
  }
126
126
  Create();
151
151
  while (strLineLong.size() < m_iColumns) strLineLong+=" ";
152
152
  if (strLineLong != m_strLine[iLine])
153
153
  {
154
 
//    CLog::Log("set line:%i [%s]", iLine,strLineLong.c_str());
 
154
//    CLog::Log(LOGINFO, "set line:%i [%s]", iLine,strLineLong.c_str());
155
155
    m_bUpdate[iLine]=true;
156
156
    m_strLine[iLine]=strLineLong;
157
157
    m_event.Set();