python: Create new vlog module.
authorEthan Jackson <ethan@nicira.com>
Wed, 21 Sep 2011 22:43:27 +0000 (15:43 -0700)
committerEthan Jackson <ethan@nicira.com>
Tue, 27 Sep 2011 21:50:26 +0000 (14:50 -0700)
commit8ed182d80ed37c94c88ca5a4df11267ee6432fe8
treebb2a02f56cbb3b22f56d9ad0911dd49ad72433f6
parent6c88547dd0f75a29e6d1c0cd3c76d9678fa4752f
python: Create new vlog module.

Currently, each python daemon has to come up with it's own logging
solution.  These logging strategies are not consistent across the
python code or with the C vlog module.  This patch adds a new
logging module which hopes to solve the problem.  This new module
generates log messages in a manner consistent with the C code.
Furthermore, it can easily be extended to support things like rate
limiters in the future.

This patch does not update any python code to use the new module.
python/ovs/automake.mk
python/ovs/vlog.py [new file with mode: 0644]
tests/automake.mk
tests/test-vlog.py [new file with mode: 0644]
tests/testsuite.at
tests/vlog.at [new file with mode: 0644]