Running GridGain in Debug Mode

I need to find out why my code does not work, I need more information. Debugging messages are likely to help.

How to start GridGain nodes in debug mode?

+3
source share
1 answer

To run GridGain in debug mode, add an additional JVM option

-DGRIDGAIN_DEBUG_ENABLED=true

at the start of the GridGain script and uncomment the following section in the file GRIDGAIN_HOME / config / default-log4j.xml:

<category name="org.gridgain">
    <level value="DEBUG"/>
</category>
+2
source

All Articles