From 3a17437d6fa7fe832234824ada21b949a325aea0 Mon Sep 17 00:00:00 2001 From: Shane Freeder Date: Sun, 1 Aug 2021 10:22:55 +0100 Subject: [PATCH] Mark sensor and behavior timings as verbose --- .../Rate-options-and-timings-for-sensors-and-behaviors.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/server/Rate-options-and-timings-for-sensors-and-behaviors.patch b/patches/server/Rate-options-and-timings-for-sensors-and-behaviors.patch index 8701ea1ce..692336710 100644 --- a/patches/server/Rate-options-and-timings-for-sensors-and-behaviors.patch +++ b/patches/server/Rate-options-and-timings-for-sensors-and-behaviors.patch @@ -17,11 +17,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 } + public static Timing getBehaviorTimings(String type) { -+ return Timings.ofSafe("Behavior - " + type); ++ return Timings.ofSafe("## Behavior - " + type); + } + + public static Timing getSensorTimings(String type, int rate) { -+ return Timings.ofSafe("Sensor - " + type + " (Default rate: " + rate + ")"); ++ return Timings.ofSafe("## Sensor - " + type + " (Default rate: " + rate + ")"); + } + /**