Log.h 329 B

1234567891011121314151617181920
  1. //
  2. // Created by Tobias Hieta on 07/03/16.
  3. //
  4. #ifndef PLEXMEDIAPLAYER_LOG_H
  5. #define PLEXMEDIAPLAYER_LOG_H
  6. #include <QString>
  7. namespace Log
  8. {
  9. void Init();
  10. void Uninit();
  11. void UpdateLogLevel();
  12. void CensorAuthTokens(QString& msg);
  13. void EnableTerminalOutput();
  14. bool ShouldLogInfo();
  15. }
  16. #endif //PLEXMEDIAPLAYER_LOG_H