Skip to content

Commit

Permalink
use MVBatch print method to print logging messages #484
Browse files Browse the repository at this point in the history
  • Loading branch information
TatianaBurek committed Jul 10, 2023
1 parent 3854514 commit 537fb63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/edu/ucar/metviewer/scorecard/Scorecard.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static void main(String[] args) throws Exception {
StopWatch stopWatch = new StopWatch();
stopWatch.start();
String username = System.getProperty("user.name");
logger.info("---- Scorecard started by user " + username + "----\n");
logger.info("---- Scorecard started by user " + username + "----");

if (0 == args.length) {
logger.info(" Error: no arguments!!!");
Expand Down Expand Up @@ -213,7 +213,7 @@ public static void main(String[] args) throws Exception {
logger.error( e.getMessage());
}
stopWatch.stop();
logger.info("\nRow execution time " + stopWatch.getFormattedDuration());
logger.info("Row execution time " + stopWatch.getFormattedDuration());
logger.info(
"---------------------------------------------------------------------------------------");
rowCounter++;
Expand Down

0 comments on commit 537fb63

Please sign in to comment.