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
@@ -59,7 +59,7 @@ uploadArchives { | @@ -59,7 +59,7 @@ uploadArchives { | ||
59 | authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD) | 59 | authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD) |
60 | } | 60 | } |
61 | pom.project { | 61 | pom.project { |
62 | - version '1.1.24' | 62 | + version '1.1.25' |
63 | artifactId ARTIFACT_Id | 63 | artifactId ARTIFACT_Id |
64 | groupId GROUP_ID | 64 | groupId GROUP_ID |
65 | packaging TYPE | 65 | packaging TYPE |
src/main/java/com/taover/util/UtilHttpRequestMap.java
@@ -44,7 +44,7 @@ public class UtilHttpRequestMap { | @@ -44,7 +44,7 @@ public class UtilHttpRequestMap { | ||
44 | camelField.setAccessible(true); | 44 | camelField.setAccessible(true); |
45 | result.add(getSqlConditionArrayByStringArray(camelField, keyName, requestMap.get(keyName))); | 45 | result.add(getSqlConditionArrayByStringArray(camelField, keyName, requestMap.get(keyName))); |
46 | } catch (Exception e) { | 46 | } catch (Exception e) { |
47 | - UtilLog.errorForException(e, UtilHttpRequestMap.class); | 47 | + UtilLog.infoForException(e, UtilHttpRequestMap.class); |
48 | } | 48 | } |
49 | } | 49 | } |
50 | return result; | 50 | return result; |
@@ -150,7 +150,7 @@ public class UtilHttpRequestMap { | @@ -150,7 +150,7 @@ public class UtilHttpRequestMap { | ||
150 | camelField.setAccessible(true); | 150 | camelField.setAccessible(true); |
151 | result.add(new Object[]{UtilString.underscoreName(keyName).toLowerCase(), requestMap.get(keyName)[0]}); | 151 | result.add(new Object[]{UtilString.underscoreName(keyName).toLowerCase(), requestMap.get(keyName)[0]}); |
152 | } catch (Exception e) { | 152 | } catch (Exception e) { |
153 | - UtilLog.errorForException(e, UtilHttpRequestMap.class); | 153 | + UtilLog.infoForException(e, UtilHttpRequestMap.class); |
154 | } | 154 | } |
155 | } | 155 | } |
156 | return result; | 156 | return result; |