예제 #1
0
파일: Cat.cs 프로젝트: zhuthree/cat.net
 public static void LogSizeEvent(string name, long size)
 {
     try {
         string scale = SizeUtils.GetSizeScale(size);
         Cat.GetProducer().LogEvent(name, scale, CatConstants.SUCCESS, "size=" + size);
     }
     catch (Exception ex) { Cat.lastException = ex; }
 }