1# phosphor-debug-collector 2Phosphor Debug Collector provides mechanisms to collect various log files and 3system parameters. Used to troubleshoot problems in OpenBMC based systems. 4 5## To Build 6To build this package with meson, do the following steps: 7``` 8 1. meson builddir 9 2. ninja -C builddir 10``` 11To clean the built files run `ninja -C builddir clean`. 12 13## To run unit tests 14Tests can be run in the CI docker container, refer 15[local-ci-build](https://github.com/openbmc/docs/blob/master/testing/local-ci-build.md) 16 17or with an OpenBMC x86 sdk(see below for x86 steps). 18``` 19meson -Doe-sdk=enabled -Dtests=enabled build 20ninja -C build test 21``` 22