Merge branch 'development' into LTS_development
# Conflicts: # lib/config.cpp
This commit is contained in:
commit
934ed69c58
3 changed files with 9 additions and 10 deletions
|
@ -206,9 +206,6 @@ bool Util::Config::parseArgs(int & argc, char ** & argv) {
|
|||
#ifdef WITH_THREADNAMES
|
||||
std::cout << "- Flag: With threadnames. Debuggers will show sensible human-readable thread names." << std::endl;
|
||||
#endif
|
||||
#ifdef BIGMETA
|
||||
std::cout << "- Flag: Big metadata. Enabled longer live stream durations. Breaks compatibility with DTSH files generated by versions without this flag." << std::endl;
|
||||
#endif
|
||||
/*LTS-START*/
|
||||
#ifndef UPDATER
|
||||
std::cout << "- Flag: Updater disabled. Server will not call back home and attempt to search for updates at regular intervals." << std::endl;
|
||||
|
@ -220,11 +217,13 @@ bool Util::Config::parseArgs(int & argc, char ** & argv) {
|
|||
std::cout << "- Flag: Kill on exit. All binaries will forcibly shut down all their children on exit. This disabled rolling restart support." << std::endl;
|
||||
#endif
|
||||
#ifdef STATS_DELAY
|
||||
std::cout << "- Setting: Stats delay " << STATS_DELAY << ". Statistics of viewer counts are delayed by " << STATS_DELAY << " seconds as opposed to the default of 15 seconds. ";
|
||||
if (STATS_DELAY > 15){
|
||||
std::cout << "This makes them more accurate." << std::endl;
|
||||
}else{
|
||||
std::cout << "This makes them less accurate." << std::endl;
|
||||
if (STATS_DELAY != 15){
|
||||
std::cout << "- Setting: Stats delay " << STATS_DELAY << ". Statistics of viewer counts are delayed by " << STATS_DELAY << " seconds as opposed to the default of 15 seconds. ";
|
||||
if (STATS_DELAY > 15){
|
||||
std::cout << "This makes them more accurate." << std::endl;
|
||||
}else{
|
||||
std::cout << "This makes them less accurate." << std::endl;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
/*LTS-END*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue