summaryrefslogtreecommitdiff
path: root/firmware/os/drivers/window_orientation/window_orientation.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/os/drivers/window_orientation/window_orientation.c')
-rw-r--r--firmware/os/drivers/window_orientation/window_orientation.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/os/drivers/window_orientation/window_orientation.c b/firmware/os/drivers/window_orientation/window_orientation.c
index 067649a0..c81d8a61 100644
--- a/firmware/os/drivers/window_orientation/window_orientation.c
+++ b/firmware/os/drivers/window_orientation/window_orientation.c
@@ -34,6 +34,10 @@
#define LOG_TAG "[WO]"
+#define LOGV(fmt, ...) do { \
+ osLog(LOG_VERBOSE, LOG_TAG " " fmt, ##__VA_ARGS__); \
+ } while (0);
+
#define LOGW(fmt, ...) do { \
osLog(LOG_WARN, LOG_TAG " " fmt, ##__VA_ARGS__); \
} while (0);
@@ -618,7 +622,7 @@ static void windowOrientationHandleEvent(uint32_t evtType, const void* evtData)
rotation_changed = add_samples(ev);
if (rotation_changed) {
- LOGI("rotation changed to: ******* %d *******\n",
+ LOGV("rotation changed to: ******* %d *******\n",
(int)mTask.proposed_rotation);
// send a single int32 here so no memory alloc/free needed.