stateDebug<P> function

P stateDebug<P>(
  1. P object
)

Implementation

P stateDebug<P>(P object){
  if(kDebugMode){
    CategoryLogger.dSingle(LogCategory.state, object.toString());
  }
  return object;
}