mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 15:35:49 +01:00
Renamed logger constant
This commit is contained in:
@@ -48,7 +48,7 @@ import java.util.List;
|
|||||||
*/
|
*/
|
||||||
public class HgLogChangesetCommand extends AbstractChangesetCommand {
|
public class HgLogChangesetCommand extends AbstractChangesetCommand {
|
||||||
|
|
||||||
private final Logger log = LoggerFactory.getLogger(HgLogChangesetCommand.class);
|
private static final Logger LOG = LoggerFactory.getLogger(HgLogChangesetCommand.class);
|
||||||
|
|
||||||
private HgLogChangesetCommand(Repository repository, HgConfig config) {
|
private HgLogChangesetCommand(Repository repository, HgConfig config) {
|
||||||
super(repository, config);
|
super(repository, config);
|
||||||
@@ -79,7 +79,7 @@ public class HgLogChangesetCommand extends AbstractChangesetCommand {
|
|||||||
try {
|
try {
|
||||||
hgInputStream.close();
|
hgInputStream.close();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
log.error("Could not close HgInputStream", e);
|
LOG.error("Could not close HgInputStream", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user