Commit 5b6f45ea7e0ccb61e09eaa6fd385005a97fcd6a5
1 parent
3e214bbc
Exists in
master
fix a info print
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
build.gradle
src/main/java/com/taover/util/UtilHttpRequestMap.java
... | ... | @@ -44,7 +44,7 @@ public class UtilHttpRequestMap { |
44 | 44 | camelField.setAccessible(true); |
45 | 45 | result.add(getSqlConditionArrayByStringArray(camelField, keyName, requestMap.get(keyName))); |
46 | 46 | } catch (Exception e) { |
47 | - UtilLog.errorForException(e, UtilHttpRequestMap.class); | |
47 | + UtilLog.infoForException(e, UtilHttpRequestMap.class); | |
48 | 48 | } |
49 | 49 | } |
50 | 50 | return result; |
... | ... | @@ -150,7 +150,7 @@ public class UtilHttpRequestMap { |
150 | 150 | camelField.setAccessible(true); |
151 | 151 | result.add(new Object[]{UtilString.underscoreName(keyName).toLowerCase(), requestMap.get(keyName)[0]}); |
152 | 152 | } catch (Exception e) { |
153 | - UtilLog.errorForException(e, UtilHttpRequestMap.class); | |
153 | + UtilLog.infoForException(e, UtilHttpRequestMap.class); | |
154 | 154 | } |
155 | 155 | } |
156 | 156 | return result; | ... | ... |