Skip to content

Commit

Permalink
Soften exception log on error saving ServerHit, happens often with My…
Browse files Browse the repository at this point in the history
…SQL and no need for such a bug chunk of text in the log

git-svn-id: https://svn.apache.org/repos/asf/ofbiz/trunk@1068668 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
jonesde committed Feb 8, 2011
1 parent ca69125 commit 3377bef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ protected static void countHit(String baseId, int type, HttpServletRequest reque
try {
bin.saveHit(request, startTime, runningTime, userLogin);
} catch (GenericEntityException e) {
Debug.logWarning(e, "Error saving ServerHit: " + e.toString(), module);
Debug.logWarning("Error saving ServerHit: " + e.toString(), module);
}
}

Expand Down

0 comments on commit 3377bef

Please sign in to comment.