summaryrefslogtreecommitdiff
path: root/sv/pipewire/log/run
blob: 64fc800fad70d86ef17172d315c108afa97e6f19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

[ -r ../conf ] && . ../conf

if [ "${LOGGING_ENABLE}x" = "1x" ]; then
    # Create the log directory if not exists.
    [ -d "${LOG_DIR}" ] || mkdir -p "${LOG_DIR}"

    exec svlogd -tt "${LOG_DIR}"
else
    exec chpst -b pipewire-log-null cat >/dev/null
fi