1) exporting camiant.util.slf.logback.converters.CamLevelConverter class into the Eclipse runtime platform
2) associating the conversionWord "camlevel" with the camiant.util.slf.logback.converters.CamLevelConverter class in logback (the logback instance running under Eclipse)
I would suggest that you simply build your own copy of logback-beagle combining steps 1 and 2.
For Step 1, just include a copy of CamLevelConverter in your build of logback-beagle.
For Step 2, see ConversionRuleAction lines 63 to 70. You can obtain the context by invoking:
1) exporting camiant.util.slf.logback.converters.CamLevelConverter class into the Eclipse runtime platform
2) associating the conversionWord "camlevel" with the camiant.util.slf.logback.converters.CamLevelConverter class in logback (the logback instance running under Eclipse)
I would suggest that you simply build your own copy of logback-beagle combining steps 1 and 2.
For Step 1, just include a copy of CamLevelConverter in your build of logback-beagle.
For Step 2, see ConversionRuleAction lines 63 to 70. You can obtain the context by invoking:
import org.slf4j.LoggerFactory;
import ch.qos.logack.classic.LoggerContext;
...
LoggerContext context = (LoggerContext) LoggerFactory.getILoggerFactory();
[1] http://logback.qos.ch/xref/ch/qos/logback/core/joran/action/ConversionRuleAction.html#63