From e3bc25d5103cba857a487ab804c273fb737100ff Mon Sep 17 00:00:00 2001 From: Jason Watkins Date: Wed, 6 May 2015 15:13:58 -0700 Subject: [PATCH] Updated description of logging levels and changed default logging verbosity. --- xpcPlugin/Log.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xpcPlugin/Log.h b/xpcPlugin/Log.h index 84d75c0..b7413c1 100644 --- a/xpcPlugin/Log.h +++ b/xpcPlugin/Log.h @@ -12,10 +12,11 @@ // As a result, these log messages may be the only indication of failure. // 2: All errors. Any time something unexpected happens, log it. // 3: Significant actions. Any time something happens outside of normal -// command processing, log it. +// command processing, log it. Will also log when commands are received. +// 4: Detailed actions. Log aditional information as commands are processed. // 5: Everything. Log nearly every single action the plugin takes. This may // have a detrimental impact on X-Plane performance. -#define LOG_VERBOSITY 2 +#define LOG_VERBOSITY 3 namespace XPC {