Reputation: 930
is there a way in Mule to log a message to a different logger than the default/root one?
in java, you can call a different logger, using its name from the log4j file:
org.apache.log4j.Logger.getLogger("myLogger")
Upvotes: 0
Views: 88
Reputation: 33413
The logger
message processor has a category
attribute that let's you configure the name of the logger to use.
Upvotes: 1