aboutsummaryrefslogtreecommitdiff
path: root/ble/misc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ble/misc.cpp')
-rw-r--r--ble/misc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ble/misc.cpp b/ble/misc.cpp
index a8df2cb..a4f4b57 100644
--- a/ble/misc.cpp
+++ b/ble/misc.cpp
@@ -50,7 +50,7 @@ o<Uuid> Uuid::fromString(const std::string &str) {
}
auto tmp = str.substr(i, 2);
- cout << "str=" << tmp << endl;
+ // cout << "str=" << tmp << endl;
unsigned long x = std::stoul(tmp, nullptr, 16);
if (x > std::numeric_limits<uint8_t>::max()) {