Interesting code--switching log mode with system signals

Source: Internet
Author: User

See kite inside of the source code, there is a piece of coding very interesting.

On the code first:


//Setupsignalhandler listens to signals and toggles the log level to DEBUG//mode when it received a SIGUSR2 signal. Another SIGUSR2 toggles the log//Level back to the old level .Func (k *Kite) Setupsignalhandler () {c:= Make (Chan os. Signal,1) signal. Notify (c, Syscall. SIGUSR2) go func () { forS: =range C {k.log.info ("Got signal:%s", s)ifDebugMode {//Toogle back-to-old settings.K.log.info ("Disabling debug mode") ifK.setloglevel = =Nil {k.log.error ("Setloglevel is not defined") Continue} k.setloglevel (Getloglevel ()) DebugMode=false } Else{k.log.info ("Enabling debug Mode") ifK.setloglevel = =Nil {k.log.error ("Setloglevel is not defined") Continue} k.setloglevel (DEBUG) DebugMode=true } } }()}

You can toggle the log mode by giving the program that is running.

Extrapolate, you can use this method to do a lot of switching switching.

Interesting code--switching log mode with system signals

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.