Hi Mahe, Here is a simple camel route code. It will create a log entry in the file i specify . It may help you upto my knowledge
<camelContext xmlns="http://camel.apache.org/schema/blueprint"> <route> <from uri="file:camel/input"/> *<log message="Moving ${file:name} to the output directory"/>* <to uri="file:camel/output"/> </route> </camelContext> Cheers Guru ----- Cheers Guru -- View this message in context: http://servicemix.396122.n5.nabble.com/can-we-create-a-seperate-log-file-tp4806230p4806479.html Sent from the ServiceMix - User mailing list archive at Nabble.com.
