copy
public static final boolean copy
Used to determine whether to copy messages (copy=true) in retransmission tables,
or whether to use references (copy=false). Once copy=false has worked for some time, this flag
will be removed entirely
debug
public static final boolean debug
Allows for conditional compilation, e.g. if(log.isTraceEnabled()) if(log.isInfoEnabled()) log.info(...) would be removed from the code
(if recompiled) when this flag is set to false. Therefore, code that should be removed from the final
product should use if(log.isTraceEnabled()) rather than .