Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Mathis-Hu/phoebus
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathis-Hu committed Jul 19, 2023
2 parents 1da0bd4 + 50ccf5d commit f3c08e0
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 f3c08e0

Please sign in to comment.