diff options
author | Zach Brown <[email protected]> | 2016-02-13 17:19:33 -0600 |
---|---|---|
committer | Zach Brown <[email protected]> | 2016-02-13 19:41:55 -0600 |
commit | 2052670adfa76ef285cb70270c1bb6ed9f8a9875 (patch) | |
tree | 3e033531e1101c0607f6c9150c720a15c23f0697 | |
parent | 539c3829edf333e4895e3647b77d9085f06bf94a (diff) | |
download | Paper-2052670adfa76ef285cb70270c1bb6ed9f8a9875.tar.gz Paper-2052670adfa76ef285cb70270c1bb6ed9f8a9875.zip |
Make timings verbose by default
More useful data by default for server administrators
-rw-r--r-- | Spigot-Server-Patches/0079-Timings-v2.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Spigot-Server-Patches/0079-Timings-v2.patch b/Spigot-Server-Patches/0079-Timings-v2.patch index e7694342d8..b5f84dc735 100644 --- a/Spigot-Server-Patches/0079-Timings-v2.patch +++ b/Spigot-Server-Patches/0079-Timings-v2.patch @@ -1108,7 +1108,7 @@ index f6a67d6..93825d9 100644 + private static void timings() + { + boolean timings = getBoolean( "timings.enabled", true ); -+ boolean verboseTimings = getBoolean( "timings.verbose", false ); ++ boolean verboseTimings = getBoolean( "timings.verbose", true ); + TimingsManager.privacy = getBoolean( "timings.server-name-privacy", false ); + TimingsManager.hiddenConfigs = getList( "timings.hidden-config-entries", Lists.newArrayList("database", "settings.bungeecord-addresses")); + int timingHistoryInterval = getInt( "timings.history-interval", 300 ); |