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

@@ -183,7 +183,8 @@ static ssize_t nsh_consolewrite(FAR struct nsh_vtbl_s *vtbl,
ret = fwrite(buffer, 1, nbytes, pstate->cn_outstream);
if (ret < 0)
{
err("[%d] Failed to send buffer: %d\n", pstate->cn_outfd, errno);
err("ERROR: [%d] Failed to send buffer: %d\n",
pstate->cn_outfd, errno);
}
return ret;
#else