示例#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; }
 }