Skip to content

Commit

Permalink
doc and error message cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jecollins committed Jan 25, 2021
1 parent f99b4c9 commit 8696cf4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,8 @@ private boolean configurePlugins ()
ArrayList<InitializationService> deferredInitializers = new ArrayList<InitializationService>();
for (InitializationService initializer : initializers) {
if (bootstrapMode) {
if (initializer.equals(visualizerProxyService) ||
initializer.equals(jmsManagementService)) {
if (initializer.equals(visualizerProxyService)) {
//|| initializer.equals(jmsManagementService)) { // not an InitializationService
log.info("Skipping initialization of " + initializer.toString());
continue;
}
Expand Down
9 changes: 4 additions & 5 deletions server-main/src/main/java/org/powertac/server/LogService.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,11 @@
* <pre> static private Logger stateLog = Logger.getLogger("State");
* </pre>
* Entries in the state log are of the form
* <pre> type:class:id:op:arg1:...
* <pre> msec:class::id::op::arg1::...
* </pre>
* where type is one of [c,u,d] for create, update, delete; id is the identifier of the
* object, op (used only for update) is the operation, and the args are the arguments for
* that operation. The logger format will prepend the current offset from the beginning
* of the simulation in milliseconds.</p>
* where id is the identifier of the
* object, op is the operation, and the args are the arguments for
* that operation.</p>
* @author John Collins
*/
@Service
Expand Down

0 comments on commit 8696cf4

Please sign in to comment.