PrintLogo prints the devspace logo
()
| 20 | |
| 21 | // PrintLogo prints the devspace logo |
| 22 | func PrintLogo() { |
| 23 | logo := ` |
| 24 | %########% |
| 25 | %###########% ____ _____ |
| 26 | %#########% | _ \ ___ __ __ / ___/ ____ ____ ____ ___ |
| 27 | %#########% | | | | / _ \\ \ / / \___ \ | _ \ / _ | / __// _ \ |
| 28 | %#############% | |_| |( __/ \ V / ____) )| |_) )( (_| |( (__( __/ |
| 29 | %#############% |____/ \___| \_/ \____/ | __/ \__,_| \___\\___| |
| 30 | %###############% |_| |
| 31 | %###########%` |
| 32 | stdout.Write([]byte(ansi.Color("\r\n"+logo+"\r\n\r\n", "cyan+b"))) |
| 33 | } |
| 34 | |
| 35 | // StartFileLogging logs the output of the global logger to the file default.log |
| 36 | func StartFileLogging() { |