Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
Lowered logging level from error to warning and dumping exception onl…
Browse files Browse the repository at this point in the history
…y when debug level is set.

git-svn-id: file:///opt/svn/repositories/sonatype.org/nexus/trunk/nexus@7996 2aa8b3fc-8ebb-4439-a84f-95066eaea8ab
  • Loading branch information
cstamas committed Apr 12, 2011
1 parent 16a1d0f commit 0e9cc71
Showing 1 changed file with 8 additions and 1 deletion.
Expand Up @@ -244,7 +244,14 @@ private StringBuilder getContent()
}
catch ( IOException e )
{
logger.error( e.getMessage(), e );
if ( logger.isDebugEnabled() )
{
logger.warn( e.getMessage(), e );
}
else
{
logger.warn( e.getMessage() );
}
}

// here is the deal, For reasons I do not understand, S3 comes back with an empty response (and a 200),
Expand Down

0 comments on commit 0e9cc71

Please sign in to comment.