From 13fdcc0ef8c7a757ba927a3bbfce2adae49aa81c Mon Sep 17 00:00:00 2001 From: ryannewington Date: Fri, 18 Nov 2016 15:40:32 +1100 Subject: [PATCH] Increments version number to 1.0.6166 Converts perf counter fields to properties --- src/Lithnet.Pan.RAProxy.Setup/Product.wxs | 2 +- src/Lithnet.Pan.RAProxy/Logging.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Lithnet.Pan.RAProxy.Setup/Product.wxs b/src/Lithnet.Pan.RAProxy.Setup/Product.wxs index 1bea30b..f327d05 100644 --- a/src/Lithnet.Pan.RAProxy.Setup/Product.wxs +++ b/src/Lithnet.Pan.RAProxy.Setup/Product.wxs @@ -4,7 +4,7 @@ diff --git a/src/Lithnet.Pan.RAProxy/Logging.cs b/src/Lithnet.Pan.RAProxy/Logging.cs index 71a59d3..3adf63f 100644 --- a/src/Lithnet.Pan.RAProxy/Logging.cs +++ b/src/Lithnet.Pan.RAProxy/Logging.cs @@ -27,12 +27,12 @@ internal class Logging public const int EventIDAccountingRequestRecieved = 4001; public const int EventIDUserIDUpdateComplete = 4002; - public static PerformanceCounter CounterReceivedPerSecond; + public static PerformanceCounter CounterReceivedPerSecond { get; } - public static PerformanceCounter CounterSentPerSecond; + public static PerformanceCounter CounterSentPerSecond { get; } + + public static PerformanceCounter CounterItemsInQueue { get; } - public static PerformanceCounter CounterItemsInQueue; - public static void WriteEntry(string message, EventLogEntryType type, int eventID) { Trace.WriteLine(message);