Skip to content

Commit

Permalink
fixed typo in trace log message: "stop method" -> "start method"
Browse files Browse the repository at this point in the history
  • Loading branch information
mlinhard authored and maniksurtani committed Sep 7, 2011
1 parent 657d31e commit 4ba0b88
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -679,7 +679,7 @@ private void internalStart() throws CacheException, IllegalArgumentException {

boolean traceEnabled = getLog().isTraceEnabled();
for (PrioritizedMethod em : startMethods) {
if (traceEnabled) getLog().tracef("Invoking stop method %s on component %s", em.method, em.component.getName());
if (traceEnabled) getLog().tracef("Invoking start method %s on component %s", em.method, em.component.getName());
em.invoke();
}

Expand Down

0 comments on commit 4ba0b88

Please sign in to comment.