Skip to content

Commit

Permalink
Merge pull request #2733 from ControlSystemStudio/CSSTUDIO-1972
Browse files Browse the repository at this point in the history
CSSTUDIO-1972 Clarify log-message.
  • Loading branch information
abrahamwolk authored Jul 13, 2023
2 parents 7e26b3c + b6028de commit c47d883
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1097,12 +1097,12 @@ public Collection<Channel> call() throws Exception {
} catch (Exception e) {
log.log(Level.WARNING, "Error creating channels:", e);
}
log.log(Level.FINE, "Finished mapping to xml : " + String.valueOf(System.currentTimeMillis()-start));
log.log(Level.FINE, "Finished mapping to xml. (Time: " + String.valueOf(System.currentTimeMillis()-start) + " ms)");
start = System.currentTimeMillis();
for (XmlChannel xmlchannel : xmlchannels) {
channels.add(new Channel(xmlchannel));
}
log.log(Level.FINE, "Finished creating new channels : " + String.valueOf(System.currentTimeMillis()-start));
log.log(Level.FINE, "Finished creating new channels. (Time: " + String.valueOf(System.currentTimeMillis()-start) + " ms)");
return Collections.unmodifiableCollection(channels);
}
}
Expand Down

0 comments on commit c47d883

Please sign in to comment.