Skip to content

Commit 39fbad7

Browse files
committed
CI: Improve logging to find out about any errors when starting CrateDB
1 parent c87dc71 commit 39fbad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crate/testing/layer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def _clean(self):
297297

298298
def start(self):
299299
self._clean()
300-
log.info("Starting process '{}'".format(self.start_cmd))
300+
sys.stderr.write("Starting process '{}'\n".format(self.start_cmd))
301301
self.process = subprocess.Popen(self.start_cmd,
302302
env=self.env,
303303
stdout=subprocess.PIPE)

0 commit comments

Comments
 (0)