Skip to content

Commit e0b52dc

Browse files
committed
Changed logging in Custom control map
1 parent 9d1eeb0 commit e0b52dc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Applications/CustomControlMap/UADruntime.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ bool UADRuntime::ExecuteActions(ActionInfo* actionInfo, ActionEvent* actionEvent
5656

5757
if (actionInfo->indexType == ActionIndexType::COORD)
5858
{
59-
MLOGV(TAG, "Executing actions for key %d,%d", actionInfo->coord.x, actionInfo->coord.y);
59+
// MLOGV(TAG, "Executing actions for key %d,%d", actionInfo->coord.x, actionInfo->coord.y);
6060
offset = actionLUT[actionInfo->coord.x][actionInfo->coord.y];
6161
}
6262
else
6363
{
64-
MLOGV(TAG, "Executing actions for key %d", actionInfo->id);
64+
MLOGV(TAG, "Executing actions for key %d ( Doesn't not support off grid keys yet)", actionInfo->id);
6565
return false; // Doesn't not support off grid keys yet
6666
}
6767

@@ -120,7 +120,7 @@ bool UADRuntime::ExecuteActions(ActionInfo* actionInfo, ActionEvent* actionEvent
120120
}
121121

122122
// If the layer is not enabled, skip it
123-
MLOGD(TAG, "Checking Layer: %d", layer);
123+
MLOGV(TAG, "Checking Layer: %d", layer);
124124
if (!IsBitSet(layerEnabled, layer))
125125
{
126126
MLOGV(TAG, "Layer %d is not enabled", layer);
@@ -132,7 +132,7 @@ bool UADRuntime::ExecuteActions(ActionInfo* actionInfo, ActionEvent* actionEvent
132132

133133
// Execute the actions
134134
cb0r_s actionData = actions;
135-
MLOGD(TAG, "Action Length: %d", actions.length);
135+
MLOGV(TAG, "Action Length: %d", actions.length);
136136
for (uint8_t action_index = 0; action_index < actions.length; action_index++)
137137
{
138138
newActionInfo.index = action_index;

0 commit comments

Comments
 (0)