1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

transmission/README.rst: Overhaul logging instructions

This commit is contained in:
A Holt 2023-06-12 01:31:19 -04:00 committed by GitHub
parent 16ba23bf3e
commit 9df95cedf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -125,14 +125,14 @@ As of June 2023, these docs appear to be the most up-to-date:
Logging
-------
To turn on logging and/or record the Process ID (PID), follow these instructions: https://pawelrychlicki.pl/Home/Details/59/transmission-daemon-doesnt-create-a-log-file-nor-a-pid-file-ubuntu-server-1804
Increase logging by changing transmission-daemon's ``--log-level=error`` to ``--log-level=debug`` in ``/lib/systemd/system/transmission-daemon.service``
This gives permissions to user ``debian-transmission`` — if you use these 3 lines in ``/lib/systemd/system/transmission-daemon.service`` :
(Options are: ``critical``, ``error``, ``warn``, ``info``, ``debug`` or ``trace``)
::
Then run::
RuntimeDirectory=transmission-daemon
LogsDirectory=transmission-daemon
ExecStart=/usr/bin/transmission-daemon -f --log-error --log-debug --logfile /var/log/transmission-daemon/transmission.log --pid-file /run/transmission-daemon/transmission.pid
systemctl daemon-reload
systemctl restart transmission-daemon
journalctl -eu transmission-daemon
Noting that one should not normally edit files in ``/lib`` or ``/usr/lib`` — systemd has a command for customizing unit files: ``systemctl edit --full transmission-daemon.service``