Skip to content

Commit

Permalink
SNOW-928802 Fix logger error where the message/stack trace is not pri…
Browse files Browse the repository at this point in the history
…nted
  • Loading branch information
sfc-gh-japatel committed Oct 13, 2023
1 parent 0a56db3 commit 291bc47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2088,7 +2088,7 @@ public static void uploadWithoutConnection(SnowflakeFileTransferConfig config) t
break;
}
} catch (Exception ex) {
logger.error("Exception encountered during file upload: ", ex.getMessage());
logger.error("Exception encountered during file upload in uploadWithoutConnection", ex);
throw ex;
} finally {
if (fileBackedOutputStream != null) {
Expand Down

0 comments on commit 291bc47

Please sign in to comment.