diff --git a/testgres/plugins/pg_probackup2/pg_probackup2/app.py b/testgres/plugins/pg_probackup2/pg_probackup2/app.py index 94dcd997..4e6e91ff 100644 --- a/testgres/plugins/pg_probackup2/pg_probackup2/app.py +++ b/testgres/plugins/pg_probackup2/pg_probackup2/app.py @@ -1,6 +1,7 @@ import contextlib import importlib import json +import logging import os import re import subprocess @@ -101,6 +102,7 @@ def run(self, command, gdb=False, old_binary=False, return_id=True, env=None, print(self.test_class.cmd) cmdline = [binary_path, *command] + logging.info(' '.join(cmdline)) if gdb is True: # general test flow for using GDBObj return GDBobj(cmdline, self.test_class)