updateDebug<P> function
P
updateDebug<P>(
- P object
Implementation
P updateDebug<P>(P object){
if(kDebugMode){
CategoryLogger.dSingle(LogCategory.update, object.toString());
}
return object;
}