Make LogAction log to info

pull/794/head
Mattia Iavarone 5 years ago
parent 218b27319d
commit 124aee6908
  1. 2
      cameraview/src/main/java/com/otaliastudios/cameraview/engine/action/LogAction.java

@ -35,7 +35,7 @@ public class LogAction extends BaseAction {
" afState: " + afState + " afTriggerState: " + afTriggerState;
if (!log.equals(lastLog)) {
lastLog = log;
LOG.v(log);
LOG.i(log);
}
}

Loading…
Cancel
Save