wlan: Enable logp ini by default

Currently WdThread is created and gpVosWatchdogContext is
initialized when logp ini is set to 1.
Now when timer callback is executed, it checks for which thread
this timer belongs to.
Crash is observed while checking the threadID
for WDThread as logp ini is not set and gpVosWatchdogContext is
uninitialized.

Enable logp ini to 1 by default to mitigate the issue

Change-Id: I5bee1de46aab4773c8e91a0c76976b712b8f9707
CRs-Fixed: 998016
diff --git a/CORE/HDD/inc/wlan_hdd_cfg.h b/CORE/HDD/inc/wlan_hdd_cfg.h
index 3dcf634..99e4f18 100644
--- a/CORE/HDD/inc/wlan_hdd_cfg.h
+++ b/CORE/HDD/inc/wlan_hdd_cfg.h
@@ -1090,7 +1090,7 @@
 #define CFG_ENABLE_LOGP_NAME                                "gEnableLogp"
 #define CFG_ENABLE_LOGP_MIN                                 ( 0 )
 #define CFG_ENABLE_LOGP_MAX                                 ( 1 )
-#define CFG_ENABLE_LOGP_DEFAULT                             ( 0 )
+#define CFG_ENABLE_LOGP_DEFAULT                             ( 1 )
 
 #define CFG_BTC_EXECUTION_MODE_NAME                         "BtcExecutionMode"
 #define CFG_BTC_EXECUTION_MODE_MIN                          ( 0 )