apps/nshlib: Change some *err() message to *info() messages if what was a *dbg() message does not indicate and error condition.

This commit is contained in:
Gregory Nutt
2016-06-14 14:18:07 -06:00
parent c0a4e00cc9
commit 65899c99e6
7 changed files with 36 additions and 29 deletions

View File

@@ -205,7 +205,7 @@ int nsh_telnetstart(void)
ret = telnetd_start(&config);
if (ret < 0)
{
err("Failed to tart the Telnet daemon: %d\n", ret);
err("ERROR: Failed to tart the Telnet daemon: %d\n", ret);
}
return ret;