I had few questions on configuring serviceability.xml.
Isnt there duplicate logging into console and event log by using the following
<logger level="INFO" additivity="false" name="com.springsource.osgi.medic.eventlog.localiz ed">
<appender-ref ref="EVENT_LOG_STDOUT" />
<appender-ref ref="EVENT_LOG_FILE" />
</logger>
Is there any extra information in any one of the logs , or are they(console and evenetlog.log) exactly same ?
In such case can i comment and use as follows if i do not want logs in console ?
<logger level="INFO" additivity="false" name="com.springsource.osgi.medic.eventlog.localiz ed">
<appender-ref ref="EVENT_LOG_FILE" />
</logger>
Also same question with sifted log file and log file ? SInt there duplication ?
Is ant any information present in one which is not there in another.
<logger level="INFO" additivity="false" name="com.springsource.osgi.medic.eventlog.default ">
<appender-ref ref="SIFTED_LOG_FILE" />
<appender-ref ref="LOG_FILE" />
</logger>
Note:
[We do not using plans or PARs , only deploy bundles into pickup directory. ]


