mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-04 00:45:57 +00:00
update logging
This commit is contained in:
parent
7a15b150eb
commit
e3be3d2453
@ -16,8 +16,13 @@ import com.dfsek.terra.api.event.events.config.ConfigurationDiscoveryEvent;
|
|||||||
import com.dfsek.terra.api.event.functional.FunctionalEventHandler;
|
import com.dfsek.terra.api.event.functional.FunctionalEventHandler;
|
||||||
import com.dfsek.terra.api.inject.annotations.Inject;
|
import com.dfsek.terra.api.inject.annotations.Inject;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
|
||||||
public class YamlAddon implements AddonInitializer {
|
public class YamlAddon implements AddonInitializer {
|
||||||
|
|
||||||
|
private static final Logger LOGGER = LoggerFactory.getLogger(YamlAddon.class);
|
||||||
@Inject
|
@Inject
|
||||||
private Platform platform;
|
private Platform platform;
|
||||||
|
|
||||||
@ -30,7 +35,7 @@ public class YamlAddon implements AddonInitializer {
|
|||||||
.getHandler(FunctionalEventHandler.class)
|
.getHandler(FunctionalEventHandler.class)
|
||||||
.register(addon, ConfigurationDiscoveryEvent.class)
|
.register(addon, ConfigurationDiscoveryEvent.class)
|
||||||
.then(event -> event.getLoader().open("", ".yml").thenEntries(entries -> entries.forEach(entry -> {
|
.then(event -> event.getLoader().open("", ".yml").thenEntries(entries -> entries.forEach(entry -> {
|
||||||
platform.getDebugLogger().info("Discovered config " + entry.getKey());
|
LOGGER.debug("Discovered config {}", entry.getKey());
|
||||||
event.register(entry.getKey(), new YamlConfiguration(entry.getValue(), entry.getKey()));
|
event.register(entry.getKey(), new YamlConfiguration(entry.getValue(), entry.getKey()));
|
||||||
})))
|
})))
|
||||||
.failThrough();
|
.failThrough();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user