simplify logger naming for core systems

This commit is contained in:
Jonathan Shook
2020-10-29 10:55:43 -05:00
parent 1382d33d12
commit 1e958a7e79
3 changed files with 6 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ import java.util.function.Supplier;
* A default implementation of an Activity, suitable for building upon.
*/
public class SimpleActivity implements Activity, ProgressCapable {
private final static Logger logger = LoggerFactory.getLogger(SimpleActivity.class);
private final static Logger logger = LoggerFactory.getLogger("ACTIVITY");
protected ActivityDef activityDef;
private final List<AutoCloseable> closeables = new ArrayList<>();