Bluetooth: Shell: Remove a debug-print

I don't think it was intentional to leave this line.

Signed-off-by: Aleksander Wasaznik <aleksander.wasaznik@nordicsemi.no>
This commit is contained in:
Aleksander Wasaznik 2022-09-15 12:33:37 +02:00 committed by Carles Cufí
commit a89d5edb92

View file

@ -144,7 +144,6 @@ static bool is_substring(const char *substr, const char *str)
for (size_t pos = 0; pos < str_len; pos++) {
if (tolower(substr[0]) == tolower(str[pos])) {
if (pos + sub_str_len > str_len) {
shell_print(ctx_shell, "length fail");
return false;
}