-
Notifications
You must be signed in to change notification settings - Fork 589
development
Tomofumi Hayashi edited this page Nov 6, 2018
·
2 revisions
git clone https://github.com/intel/multus-cni.git
cd multus-cni
./build
Multus has go unit tests (based on ginkgo framework). Following commands drive CI tests in your environment:
sudo ./test.sh
Followings are multus logging best practices:
- Add
logging.Debugf()
at the begining of function - In case of error handling, use
logging.Errorf()
with given error info -
logging.Panicf()
only be used at very critical error (it should NOT used usually)
TBD