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; } }