measureUpdateDebug<P> function

P measureUpdateDebug<P>(
  1. P object
)

Implementation

P measureUpdateDebug<P>(P object){
  if(kDebugMode){
    CategoryLogger.d([LogCategory.measure, LogCategory.update], object.toString());
  }
  return object;
}