cpLogTestPriorities.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #include "cpLog.h"
  2. void print_some_errors()
  3. {
  4.     cpLog (LOG_ERR, "This is an error message.  You should see it.");
  5.     /* boundary condition */
  6.     cpLog (LOG_WARNING, "This is a warning message.  You should see it.");
  7.     cpLog (LOG_DEBUG_STACK, "This is a stack debug message.  You should not see it.");
  8. }
  9. int main()
  10. {
  11.     cpLogSetPriority (LOG_WARNING);
  12.     /* Default:  Use standard error */
  13.     print_some_errors();
  14.     /* Next try printing to a file. */
  15.     cpLogOpen ("test_log");
  16.     print_some_errors();
  17.     
  18.     return 0;
  19. }