https://bugs.kde.org/show_bug.cgi?id=482077

David Conner <dconner....@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dconner....@gmail.com

--- Comment #58 from David Conner <dconner....@gmail.com> ---
for me, it seems to stop the logging if i run `systemctl --user restart
plasma-powerdevil.service`

if i lock my session, then unlock, it starts logging the "negative timer"
events again.

anyways, for now that works for me. thanks!

also, I can follow the events using the script below running in a terminal. 
this is helpful to me.

```sh
#!/bin/sh
i=0
journalctl -f | grep -e 'QObject::startTimer' | while read log
do
  i=$((i + 1))
  if [ $((i % 10)) -eq 9 ]; then
    echo $(date -u --iso-8601=seconds) :: $i :: $log
  fi
done
```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to