Browse Source

UI: Log when output timer events stop outputs

Richard Stanway 8 years ago
parent
commit
9f046dc52b
1 changed files with 2 additions and 0 deletions
  1. 2 0
      UI/frontend-plugins/frontend-tools/output-timer.cpp

+ 2 - 0
UI/frontend-plugins/frontend-tools/output-timer.cpp

@@ -208,11 +208,13 @@ void OutputTimer::ShowHideDialog()
 
 void OutputTimer::EventStopStreaming()
 {
+	blog(LOG_INFO, "Stopping stream due to OutputTimer timeout");
 	obs_frontend_streaming_stop();
 }
 
 void OutputTimer::EventStopRecording()
 {
+	blog(LOG_INFO, "Stopping recording due to OutputTimer timeout");
 	obs_frontend_recording_stop();
 }