diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-15 00:50:17 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:21:57 +0100 |
commit | 4e2d038c42d6995d69239455ec4fbad9931fcfd5 (patch) | |
tree | fba8e639519ba7dd9510218de0ea799cc65ab1e0 /src | |
parent | 7f041a55908c503037df4e3848d325dfdfee6c87 (diff) |
Littles comments improvments
Change-Id: Idcc7e5b4dedad8e39eb829b25502d7dea3e5b29a
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src')
-rw-r--r-- | src/configuration.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp index d8c44a71..e6114cb9 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -120,7 +120,7 @@ void configuration_t::find_obd2_signals(const openxc_DynamicField &key, std::vec ERROR(binder_interface, "find_obd2_signals: wrong openxc_DynamicField specified. Use openxc_DynamicField_Type_NUM or openxc_DynamicField_Type_STRING type only."); break; } - DEBUG(binder_interface, "Found %d signal(s)", (int)found_signals.size()); + DEBUG(binder_interface, "find_obd2_signals: Found %d signal(s)", (int)found_signals.size()); } /** @@ -146,5 +146,5 @@ void configuration_t::find_can_signals(const openxc_DynamicField& key, std::vect ERROR(binder_interface, "find_can_signals: wrong openxc_DynamicField specified. Use openxc_DynamicField_Type_NUM or openxc_DynamicField_Type_STRING type only."); break; } - DEBUG(binder_interface, "Found %d signal(s)", (int)found_signals.size()); + DEBUG(binder_interface, "find_can_signals: Found %d signal(s)", (int)found_signals.size()); }
\ No newline at end of file |