mirror of
https://github.com/google/nomulus.git
synced 2025-08-03 16:32:11 +02:00
Fix TmchSmdrlAction log messages (#1027)
This commit is contained in:
parent
08c704ee52
commit
768ad26f0a
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ public final class TmchSmdrlAction implements Runnable {
|
|||
@Inject @Key("marksdbSmdrlLoginAndPassword") Optional<String> marksdbSmdrlLoginAndPassword;
|
||||
@Inject TmchSmdrlAction() {}
|
||||
|
||||
/** Synchronously fetches latest signed mark revocation list and saves it to Datastore. */
|
||||
/** Synchronously fetches latest signed mark revocation list and saves it to the database. */
|
||||
@Override
|
||||
public void run() {
|
||||
List<String> lines;
|
||||
|
@ -57,7 +57,7 @@ public final class TmchSmdrlAction implements Runnable {
|
|||
SignedMarkRevocationList smdrl = SmdrlCsvParser.parse(lines);
|
||||
smdrl.save();
|
||||
logger.atInfo().log(
|
||||
"Inserted %,d smd revocations into Datastore, created at %s",
|
||||
"Inserted %,d smd revocations into the database, created at %s",
|
||||
smdrl.size(), smdrl.getCreationTime());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue