mirror of
https://github.com/google/nomulus
synced 2026-09-21 07:24:26 +00:00
Fix TmchSmdrlAction log messages (#1027)
This commit is contained in:
@@ -45,7 +45,7 @@ public final class TmchSmdrlAction implements Runnable {
|
|||||||
@Inject @Key("marksdbSmdrlLoginAndPassword") Optional<String> marksdbSmdrlLoginAndPassword;
|
@Inject @Key("marksdbSmdrlLoginAndPassword") Optional<String> marksdbSmdrlLoginAndPassword;
|
||||||
@Inject TmchSmdrlAction() {}
|
@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
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
List<String> lines;
|
List<String> lines;
|
||||||
@@ -57,7 +57,7 @@ public final class TmchSmdrlAction implements Runnable {
|
|||||||
SignedMarkRevocationList smdrl = SmdrlCsvParser.parse(lines);
|
SignedMarkRevocationList smdrl = SmdrlCsvParser.parse(lines);
|
||||||
smdrl.save();
|
smdrl.save();
|
||||||
logger.atInfo().log(
|
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());
|
smdrl.size(), smdrl.getCreationTime());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user