Search code examples
atomikos

How to turn off Atomikos logging?


I am using atomikos v3.7.0 TransactionEssentials in a stand-alone java app (v1.6) running on Redhat Linux. Everything was and still is working smoothly except that all of a sudden atomikos is churning out logs to the console. I try many things, not sure what caused this and no clue how to control this. Yes, I have seen the link (How to set Atomikos to not write to console logs?)) but that was not useful to me. The java app uses a message driven poj and spring's DefaultMessageListenerContainer, listening to queue for messages and updating MySql database. When the listener is started it prints out the following logs even when no messages are received and the app is supposed to be doing nothing:

createCompositeTransaction ( 300000 ): created new ROOT transaction with id 192.168.252.15.tm0000100002
commit() done (by application) of transaction 192.168.252.15.tm0000100002
createCompositeTransaction ( 300000 ): created new ROOT transaction with id 192.168.252.15.tm0000200002
commit() done (by application) of transaction 192.168.252.15.tm0000200002
createCompositeTransaction ( 300000 ): created new ROOT transaction with id 192.168.252.15.tm0000300002

Now when the listener is shut down and restarted again, it prints logs below as well, in addition the ones above:

Local heuristic termination of coordinator 192.168.252.15.tm1200000016 with state COMMITTING Local heuristic termination of coordinator 192.168.252.15.tm1200100016 with state COMMITTING Local heuristic termination of coordinator 192.168.252.15.tm1200100016 with state COMMITTING Local heuristic termination of coordinator 192.168.252.15.tm1200200016 with state COMMITTING Local heuristic termination of coordinator 192.168.252.15.tm1200200016 with state COMMITTING Local heuristic termination of coordinator 192.168.252.15.tm1200300016 with state COMMITTING

Is anything wrong? How do I get this stopped?


Solution

  • I was able to stop the never ending logs, when I swiched to slf4j (over log4j) and by using

    <logger name="atomikos">
        <level value="error" />
    </logger>
    

    Thanks.