Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bin/pg_repack.c
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,7 @@ rebuild_indexes(const repack_table *table)
/* Assign available worker to build an index. */
index_jobs[i].status = INPROGRESS;
index_jobs[i].worker_idx = i;
elog(LOG, "Initial worker %d to build index: %s",
elog(INFO, "Initial worker %d to build index: %s",
i, index_jobs[i].create_index);

if (!(PQsendQuery(workers.conns[i], index_jobs[i].create_index)))
Expand Down Expand Up @@ -1154,7 +1154,7 @@ rebuild_indexes(const repack_table *table)
}
if (!PQisBusy(workers.conns[index_jobs[i].worker_idx]))
{
elog(LOG, "Command finished in worker %d: %s",
elog(INFO, "Command finished in worker %d: %s",
index_jobs[i].worker_idx,
index_jobs[i].create_index);

Expand Down Expand Up @@ -1191,7 +1191,7 @@ rebuild_indexes(const repack_table *table)
{
index_jobs[i].status = INPROGRESS;
index_jobs[i].worker_idx = freed_worker;
elog(LOG, "Assigning worker %d to build index #%d: "
elog(INFO, "Assigning worker %d to build index #%d: "
"%s", freed_worker, i,
index_jobs[i].create_index);

Expand Down
6 changes: 3 additions & 3 deletions bin/pgut/pgut.c
Original file line number Diff line number Diff line change
Expand Up @@ -613,11 +613,11 @@ echo_query(const char *query, int nParams, const char **params)
int i;

if (strchr(query, '\n'))
elog(LOG, "(query)\n%s", query);
elog(INFO, "(query)\n%s", query);
else
elog(LOG, "(query) %s", query);
elog(INFO, "(query) %s", query);
for (i = 0; i < nParams; i++)
elog(LOG, "\t(param:%d) = %s", i, params[i] ? params[i] : "(null)");
elog(INFO, "\t(param:%d) = %s", i, params[i] ? params[i] : "(null)");
}

PGresult *
Expand Down