07-23-2022, 10:41 AM
(This post was last modified: 07-23-2022, 11:04 AM by TheOldPresbyope.
Edit Reason: fix silly typo
)
@MooicIan
Try
tail -f /var/log/mpd/log
You'll see a stream of lines in the log as MPD processes the contents of its music directory.
Example
You may see 'added', 'updating', 'removing' lines depending on what MPD finds.
Note that this command continuously monitors the target file until you kill it with a ctrl-C.
Regards,
Kent
Try
tail -f /var/log/mpd/log
You'll see a stream of lines in the log as MPD processes the contents of its music directory.
Example
Code:
pi@m81pi3a64:~ $ tail -f /var/log/mpd/log
Jul 23 06:34 : update: updating NAS/OMV-Music/NewAge/William Ackerman/In Search of the Turtles Navel/02 William Ackerman - Ely.flac
Jul 23 06:34 : update: updating NAS/OMV-Music/NewAge/William Ackerman/In Search of the Turtles Navel/01 William Ackerman - The Pink Chiffon Tricycle Queen.flac
...
You may see 'added', 'updating', 'removing' lines depending on what MPD finds.
Note that this command continuously monitors the target file until you kill it with a ctrl-C.
Regards,
Kent