Comment # 17 on bug 1177395 from
Created attachment 843610 [details]
Output of journalctl, pkmon, gnome-software in one single file

Here's how the log got created:
..........................................
#!/bin/sh

LOG=log

killall gnome-software

echo "### Log started at `date`" > $LOG

echo "### Capturing output of journalctl --utc -f" >> $LOG
journalctl --utc -f >> $LOG 2>&1 &

echo "### Capturing output of pkmon" >> $LOG
pkmon >> $LOG 2>&1 &

echo "### Starting and capturing gnome-software --verbose" >> $LOG
gnome-software --verbose >> $LOG 2>&1 &

echo "READY.  Type in comments"
sed -u 's/^/### /' < /dev/stdin >> $LOG
..........................................


You are receiving this mail because: