Index: net/tools/testserver/device_management.py |
diff --git a/net/tools/testserver/device_management.py b/net/tools/testserver/device_management.py |
index 0bf7df3a90a39453146c9e72b8382c98d13072b9..a33d0f79552cc70cc55a77f0134c13db4a50210e 100644 |
--- a/net/tools/testserver/device_management.py |
+++ b/net/tools/testserver/device_management.py |
@@ -50,6 +50,10 @@ import tlslite |
import tlslite.api |
import tlslite.utils |
+LOG_FILENAME = '/dev/stdout' |
+logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG) |
+ |
+ |
# The name and availability of the json module varies in python versions. |
try: |
import simplejson as json |