Impl実装 WIP

This commit is contained in:
r-ca 2024-01-14 13:28:02 +09:00
parent 1abfcc1e62
commit 0758b697a2
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -45,5 +45,8 @@ public class LacertaVcsImpl implements LacertaVcs {
@Override @Override
public void printLog() { public void printLog() {
logger.debug(TAG, "printLog"); logger.debug(TAG, "printLog");
database.vcsLogDao().findAll().forEach(vcsLog -> {
logger.debug(TAG, vcsLog.id);
});
} }
} }