~x3lectric/xbmc/svn-trunk

« back to all changes in this revision

Viewing changes to xbmc/cdrip/EncoderWav.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:
35
35
        // write stream to file (no conversion needed at this time)
36
36
        if (FileWrite(pbtStream, nNumBytesRead) == -1)
37
37
        { 
38
 
                CLog::Log("Error writing buffer to file");
 
38
                CLog::Log(LOGERROR, "Error writing buffer to file");
39
39
                return 0;
40
40
        }
41
41