fix double exception logging

This commit is contained in:
Sebastian Sdorra
2011-03-15 18:45:24 +01:00
parent e207bc5b49
commit e9fa6ae1eb

View File

@@ -199,7 +199,6 @@ public abstract class AbstractManagerResource<T extends ModelObject,
}
catch (Exception ex)
{
logger.error("error during create", ex);
logger.error("error during create", ex);
response = Response.serverError().build();
}
@@ -243,7 +242,6 @@ public abstract class AbstractManagerResource<T extends ModelObject,
}
catch (Exception ex)
{
logger.error("error during create", ex);
logger.error("error during create", ex);
response = Response.serverError().build();
}