Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Jun 13, 2023
1 parent 9b835d3 commit 9525daa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ void onTimeout(jakarta.ejb.Timer timer) throws Exception {
long startTime = System.currentTimeMillis();

try {
// read the metdata
// read the metadata
metadata = dataService.loadMetadata();
// read last restor stat....
// read last restore stat....
restoreCount = metadata.getItemValueInteger(ITEM_RESTORE_SYNCCOUNT);
restoreSize = metadata.getItemValueInteger(ITEM_RESTORE_SYNCSIZE);
restoreErrors = metadata.getItemValueInteger(ITEM_RESTORE_SYNCERRORS);
Expand Down Expand Up @@ -295,7 +295,7 @@ void onTimeout(jakarta.ejb.Timer timer) throws Exception {
if (matchFilterOptions(latestSnapshot, options)) {
long _tmpSize = -1;
try {
logger.finest("......restoring: " + latestSnapshot);
logger.info("......restoring: " + latestSnapshot);
snapshot = dataService.loadSnapshot(latestSnapshot);
_tmpSize = dataService.calculateSize(XMLDocumentAdapter.getDocument(snapshot));
logger.finest("......size=: " + _tmpSize);
Expand Down

0 comments on commit 9525daa

Please sign in to comment.