utils: dialback setproctitle failure message

This isn't in any way fatal, so let's only warn about it with INFO, not
ERROR.

Signed-off-by: Tycho Andersen <tycho.andersen@canonical.com>
Acked-by: Serge E. Hallyn <serge.hallyn@ubuntu.com>
This commit is contained in:
Tycho Andersen 2015-11-09 13:33:32 -07:00 committed by Stéphane Graber
parent 529c24df9b
commit 2681c0e7ea

View File

@ -1458,7 +1458,7 @@ int setproctitle(char *title)
if (ret == 0)
strcpy((char*)arg_start, title);
else
SYSERROR("setting cmdline failed");
INFO("setting cmdline failed - %s", strerror(errno));
return ret;
}