Fix instantiation of logger in the DeleteBranch class
The wrong class was provided to the logger. Change-Id: I5b4bb6dfbcc2c8b0614910940be721f30410aa0c Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
@@ -36,7 +36,7 @@ import org.slf4j.LoggerFactory;
|
||||
import java.io.IOException;
|
||||
|
||||
public class DeleteBranch implements RestModifyView<BranchResource, Input>{
|
||||
private static final Logger log = LoggerFactory.getLogger(CreateBranch.class);
|
||||
private static final Logger log = LoggerFactory.getLogger(DeleteBranch.class);
|
||||
|
||||
static class Input {
|
||||
}
|
||||
|
Reference in New Issue
Block a user