Skip to content

Commit 87b3495

Browse files
committed
Use correct class parameter for logger declacation
1 parent c473ac9 commit 87b3495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/de/zalando/sprocwrapper/proxy/SProcProxy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class SProcProxy extends AbstractInvocationHandler {
2020
private final HashMap<Method, StoredProcedure> sprocs = new HashMap<Method, StoredProcedure>();
2121
private final DataSourceProvider dataSourceProvider;
2222

23-
private static final Logger LOG = LoggerFactory.getLogger(OtherStoredProcedureParameter.class);
23+
private static final Logger LOG = LoggerFactory.getLogger(SProcProxy.class);
2424
private final String description;
2525

2626
public boolean addStoredProcedure(final Method method, final StoredProcedure p) {

0 commit comments

Comments
 (0)