dev

Dependencies:   MTS-Serial libmDot-mbed5

Fork of Dot-AT-Firmware by MultiTech

Revision:
9:ff62b20f7000
Parent:
1:e52ae6584f1c
Child:
14:f9a77400b622
--- a/CommandTerminal/CmdLogLevel.cpp	Mon Apr 04 13:17:44 2016 +0000
+++ b/CommandTerminal/CmdLogLevel.cpp	Mon Apr 04 09:00:31 2016 -0500
@@ -20,13 +20,13 @@
     else if (args.size() == 2)
     {
         int32_t code;
-        int32_t level;
-        sscanf(args[1].c_str(), "%ld", &level);
+        int level;
+        sscanf(args[1].c_str(), "%d", &level);
 
         if ((code = _dot->setLogLevel(level)) != mDot::MDOT_OK)
         {
-            std::string error = mDot::getReturnCodeString(code) + " - " + _dot->getLastError();
-            setErrorMessage(error);
+            
+            setErrorMessage(_dot->getLastError());;
             return 1;
         }
     }
@@ -41,8 +41,8 @@
 
     if (args.size() == 2)
     {
-        int32_t level;
-        if (sscanf(args[1].c_str(), "%ld", &level) != 1) {
+        int level;
+        if (sscanf(args[1].c_str(), "%d", &level) != 1) {
             setErrorMessage("Invalid argument");
             return false;
         }