"az-hibernate-agent" string is redundant on logs, remove it

This commit is contained in:
Leandro Pereira 2021-04-12 14:09:36 -07:00
Родитель b257540f3c
Коммит 0b6a0c8995
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -67,7 +67,7 @@ static int ioprio_set(int which, int who, int ioprio)
static void log_impl(const char *type, const char *fmt, va_list ap)
{
flockfile(stdout);
printf("az-hibernate-agent: %s ", type);
printf("%s: ", type);
vprintf(fmt, ap);
printf("\n");
funlockfile(stdout);