Browse Source

WPS: Configure logging to show nfcpy log message

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 12 years ago
parent
commit
8140ae969b
2 changed files with 7 additions and 1 deletions
  1. 3 0
      hostapd/wps-ap-nfc.py
  2. 4 1
      wpa_supplicant/examples/wps-nfc.py

+ 3 - 0
hostapd/wps-ap-nfc.py

@@ -15,6 +15,9 @@ import nfc.ndef
 import nfc.llcp
 import nfc.handover
 
+import logging
+logging.basicConfig()
+
 import wpactrl
 
 wpas_ctrl = '/var/run/hostapd'

+ 4 - 1
wpa_supplicant/examples/wps-nfc.py

@@ -1,7 +1,7 @@
 #!/usr/bin/python
 #
 # Example nfcpy to wpa_supplicant wrapper for WPS NFC operations
-# Copyright (c) 2012, Jouni Malinen <j@w1.fi>
+# Copyright (c) 2012-2013, Jouni Malinen <j@w1.fi>
 #
 # This software may be distributed under the terms of the BSD license.
 # See README for more details.
@@ -15,6 +15,9 @@ import nfc.ndef
 import nfc.llcp
 import nfc.handover
 
+import logging
+logging.basicConfig()
+
 import wpactrl
 
 wpas_ctrl = '/var/run/wpa_supplicant'