Skip to content

Commit

Permalink
Replaced XDebug console output by logger (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
hg-ms authored May 3, 2024
1 parent 18ca0de commit 7d8897b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.util.concurrent.atomic.AtomicLong;

import org.eclipse.serializer.afs.types.AFileSystem;
import org.eclipse.serializer.meta.XDebug;
import org.eclipse.serializer.monitoring.MonitoringManager;
import org.eclipse.serializer.persistence.types.ObjectIdsSelector;
import org.eclipse.serializer.persistence.types.Persistence;
Expand Down Expand Up @@ -533,7 +532,7 @@ private void internalShutdown() throws InterruptedException
// note: this method is already entered under a lock protection, so there can't be a race condition here.
if(this.taskbroker == null)
{
XDebug.println("taskbroker is null");
logger.debug("taskbroker is null");
// storage not started in the first place
return;
}
Expand Down

0 comments on commit 7d8897b

Please sign in to comment.