kubernetes/pkg/proxy
Clayton Coleman 4e56dafecc Introduce some default log verbosity control
Move a lot of common error logging into better buckets:

glog.Errorf() - Always an error
glog.Warningf() - Something unexpected, but probably not an error
glog.V(0) - Generally useful for this to ALWAYS be visible
            to an operator
            * Programmer errors
            * Logging extra info about a panic
            * CLI argument handling
glog.V(1) - A reasonable default log level if you don't want
            verbosity
            * Information about config (listening on X, watching Y)
            * Errors that repeat frequently that relate to conditions
              that can be corrected (pod detected as unhealthy)
glog.V(2) - Useful steady state information about the service
            * Logging HTTP requests and their exit code
            * System state changing (killing pod)
            * Controller state change events (starting pods)
            * Scheduler log messages
glog.V(3) - Extended information about changes
            * More info about system state changes
glog.V(4) - Debug level verbosity (for now)
            * Logging in particularly thorny parts of code where
              you may want to come back later and check it
2014-09-25 16:30:14 -04:00
..
config Introduce some default log verbosity control 2014-09-25 16:30:14 -04:00
doc.go proxy: fixing linting errors. 2014-07-10 22:36:06 -07:00
loadbalancer.go Unify Godoc formatting, fix various typos 2014-09-02 13:41:03 +02:00
proxier.go Introduce some default log verbosity control 2014-09-25 16:30:14 -04:00
proxier_test.go Move some test-only code into the test 2014-09-20 11:38:05 -07:00
roundrobin.go Introduce some default log verbosity control 2014-09-25 16:30:14 -04:00
roundrobin_test.go Pass obj with lock by reference. Methods->funcs. 2014-08-14 14:01:27 -07:00
udp_server.go Implement UDP proxying in kube-proxy 2014-09-12 16:47:40 -07:00