MNG-2829 PlexusLoggerAdapter.error(String, Throwable) ignores Throwable

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@512897 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2007-02-28 18:37:18 +00:00
parent d9004ba0ef
commit 053216ffe6
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public class PlexusLoggerAdapter
public void error( String message,
Throwable throwable )
{
logger.error( message );
logger.error( message, throwable );
}
public boolean isErrorEnabled()