I am used to working with DVLOGs in Chrome. Let's say I want to check DVLOG(1) in /media. I then do:
ninja -C out Debug/chrome -j 100
./out/Debug/chrome --enable-logging --vmodule=*/media/*=1
and read the printouts in my terminal.
How can I do the same on my Pixel?
- I assume I must build a Debug version of Chromium for Chrome OS.
- Download a debug image (or test image?)
- Modify chrome_dev.conf like so:
--enable-logging
vmodule=*/media/*=1
..and then what? How can I check the output logs?