ログ追加

This commit is contained in:
r-ca 2024-01-24 18:02:57 +09:00
parent f6bc9167d2
commit d3afdbcef5
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -210,6 +210,7 @@ public class LacertaVcsImpl implements LacertaVcs {
return CompletableFuture.supplyAsync(() -> {
logger.debug(TAG, "getDocumentPagePathListRev");
ArrayList<VcsLogEntity> vcsLogEntities = getRevBeforeTargetIdAsync(revId).thenCompose(this::getLogInRevsAsync).join();
logger.debug(TAG, "Query finished\nSize: " + vcsLogEntities.size());
// finalで宣言しないとLambda式内で扱えないので
final ArrayList<String>[] fileNameList = new ArrayList[]{new ArrayList<>()};