uiDebug<P> function

P uiDebug<P>(
  1. P object
)

Implementation

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