Skip to content

Commit c279189

Browse files
authored
Tweak log level (#148)
Signed-off-by: Hongxin Liang <[email protected]>
1 parent a7fe458 commit c279189

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jflyte/src/main/java/org/flyte/jflyte/ArtifactStager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ List<Artifact> stageFiles(List<String> files) {
103103
}
104104

105105
void stageArtifact(Artifact artifact, ByteSource content) {
106-
LOG.debug("Staging [{}] to [{}]", artifact.name(), artifact.location());
106+
LOG.info("Staging [{}] to [{}]", artifact.name(), artifact.location());
107107

108108
Manifest manifest = fileSystem.getManifest(artifact.location());
109109
if (manifest == null) {

jflyte/src/main/java/org/flyte/jflyte/Registrars.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ static <K, V, T extends Registrar<K, V>> Map<K, V> loadAll(
3535
Class<T> registrarClass, Map<String, String> env) {
3636
ServiceLoader<T> loader = ServiceLoader.load(registrarClass);
3737

38-
LOG.debug("Discovering " + registrarClass.getSimpleName());
38+
LOG.info("Discovering " + registrarClass.getSimpleName());
3939

4040
Map<K, V> items = new HashMap<>();
4141

4242
for (T registrar : loader) {
43-
LOG.debug("Discovered [{}]", registrar.getClass().getName());
43+
LOG.info("Discovered [{}]", registrar.getClass().getName());
4444

4545
for (Map.Entry<K, V> entry : registrar.load(env).entrySet()) {
4646
V previous = items.put(entry.getKey(), entry.getValue());

0 commit comments

Comments
 (0)