Merge pull request 'log.info 추가' (#145) from feat/training_260303 into develop
Reviewed-on: #145
This commit was merged in pull request #145.
This commit is contained in:
@@ -222,7 +222,9 @@ public class DataSetCountersService {
|
|||||||
log.info("missing = {}", missing.size());
|
log.info("missing = {}", missing.size());
|
||||||
log.info("extra = {}", extra.size());
|
log.info("extra = {}", extra.size());
|
||||||
|
|
||||||
|
log.info("[MISSING] total = {}", missing.size());
|
||||||
missing.stream().sorted().limit(50).forEach(f -> log.warn("[MISSING] {}", f));
|
missing.stream().sorted().limit(50).forEach(f -> log.warn("[MISSING] {}", f));
|
||||||
|
log.info("[EXTRA] total = {}", extra.size());
|
||||||
extra.stream().sorted().limit(50).forEach(f -> log.warn("[EXTRA] {}", f));
|
extra.stream().sorted().limit(50).forEach(f -> log.warn("[EXTRA] {}", f));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user