Skip to content

Commit

Permalink
Fix typo in log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
guusdk committed Jan 6, 2025
1 parent e1adde4 commit d8d25bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ private static Conversation loadFromDb(final long conversationID) throws NotFoun
result.setConversationID(conversationID);
return result;
} catch (SQLException sqle) {
Log.error("An exception occurred while trying to load conversation {} form database.", conversationID, sqle);
Log.error("An exception occurred while trying to load conversation {} from database.", conversationID, sqle);
return null;
} finally {
DbConnectionManager.closeConnection(rs, pstmt, con);
Expand Down

0 comments on commit d8d25bf

Please sign in to comment.