diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2017-12-22 13:50:00 +0100 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2018-02-23 15:42:38 +0100 |
commit | caa4a0246d9ebe956d725feaa773eca2c8bd8f11 (patch) | |
tree | b76e31df47e14fd2203d75769bbd9a62463c8502 | |
parent | c93fdb6625ee952e5cf17e4caaeddf2975276f90 (diff) | |
download | libnitrokey-caa4a0246d9ebe956d725feaa773eca2c8bd8f11.tar.gz libnitrokey-caa4a0246d9ebe956d725feaa773eca2c8bd8f11.tar.bz2 |
Extend busy status description
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
-rw-r--r-- | include/device_proto.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/device_proto.h b/include/device_proto.h index 7873a0a..50aea38 100644 --- a/include/device_proto.h +++ b/include/device_proto.h @@ -351,12 +351,14 @@ namespace nitrokey { LOG("Status busy, decreasing receiving_retry_counter counter: " + std::to_string(receiving_retry_counter) + ", current delay:" + std::to_string(retry_timeout.count()), Loglevel::DEBUG); - LOG(std::string("Busy retry ") + LOG(std::string("Busy retry: status ") + std::to_string(resp.storage_status.device_status) - + " " + + ", " + std::to_string(retry_timeout.count()) - + " " + + "ms, counter " + std::to_string(receiving_retry_counter) + + ", progress: " + + std::to_string(resp.storage_status.progress_bar_value) , Loglevel::DEBUG_L1); } } |