Skip to content

Commit 86474eb

Browse files
committed
formatting
1 parent a38a441 commit 86474eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/uid2/shared/store/salt/RotatingSaltProvider.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,13 @@ private SaltSnapshot loadSnapshot(JsonObject spec, String firstLevelSalt, SaltFi
129129

130130
final String path = spec.getString("location");
131131
Integer size = spec.getInteger("size");
132+
132133
final long downloadStart = System.currentTimeMillis();
133134
SaltEntry[] entries = readInputStream(this.contentStreamProvider.download(path), saltFileParser, size);
134135
final long downloadEnd = System.currentTimeMillis();
135-
LOGGER.info("Loaded {} salts", size);
136136
LOGGER.info("Salt file downloaded: {} in {} ms", contentStreamProvider.mask(path), downloadEnd - downloadStart);
137+
138+
LOGGER.info("Loaded {} salts", size);
137139
return new SaltSnapshot(effective, expires, entries, firstLevelSalt);
138140
}
139141

0 commit comments

Comments
 (0)