Просмотр исходного кода

UI: Don't log initialization profiling redundantly

This data isn't typically extremely important to have logged on startup,
and it's already included as part of shutdown.  There may be scenarios
where a program crashes and that information would be lost due to the
fact that the shutdown logging never occurs, but that information is
unlikely to be useful in that scenario.
jp9000 9 лет назад
Родитель
Сommit
d326b8074b
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      obs/obs-app.cpp

+ 0 - 1
obs/obs-app.cpp

@@ -1310,7 +1310,6 @@ static int run_program(fstream &logFile, int argc, char *argv[])
 			return 0;
 
 		prof.Stop();
-		PrintInitProfile();
 
 		return program.exec();