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.
This commit is contained in:
jp9000 2016-08-05 17:29:39 -07:00
parent b9d67cbf4b
commit d326b8074b

View File

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