Mark sensor and behavior timings as verbose

This commit is contained in:
Shane Freeder
2021-08-01 10:22:55 +01:00
parent 228c6aaf5d
commit 3a17437d6f

View File

@@ -17,11 +17,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
} }
+ public static Timing getBehaviorTimings(String type) { + public static Timing getBehaviorTimings(String type) {
+ return Timings.ofSafe("Behavior - " + type); + return Timings.ofSafe("## Behavior - " + type);
+ } + }
+ +
+ public static Timing getSensorTimings(String type, int rate) { + public static Timing getSensorTimings(String type, int rate) {
+ return Timings.ofSafe("Sensor - " + type + " (Default rate: " + rate + ")"); + return Timings.ofSafe("## Sensor - " + type + " (Default rate: " + rate + ")");
+ } + }
+ +
/** /**