You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

logger.go 4.2 kB

Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
6 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package log
  5. import (
  6. "fmt"
  7. "os"
  8. "runtime"
  9. "strings"
  10. "time"
  11. )
  12. // Logger is default logger in the Gitea application.
  13. // it can contain several providers and log message into all providers.
  14. type Logger struct {
  15. *MultiChannelledLog
  16. bufferLength int64
  17. }
  18. // newLogger initializes and returns a new logger.
  19. func newLogger(name string, buffer int64) *Logger {
  20. l := &Logger{
  21. MultiChannelledLog: NewMultiChannelledLog(name, buffer),
  22. bufferLength: buffer,
  23. }
  24. return l
  25. }
  26. // SetLogger sets new logger instance with given logger provider and config.
  27. func (l *Logger) SetLogger(name, provider, config string) error {
  28. eventLogger, err := NewChannelledLog(name, provider, config, l.bufferLength)
  29. if err != nil {
  30. return fmt.Errorf("Failed to create sublogger (%s): %v", name, err)
  31. }
  32. l.MultiChannelledLog.DelLogger(name)
  33. err = l.MultiChannelledLog.AddLogger(eventLogger)
  34. if err != nil {
  35. if IsErrDuplicateName(err) {
  36. return fmt.Errorf("Duplicate named sublogger %s %v", name, l.MultiChannelledLog.GetEventLoggerNames())
  37. }
  38. return fmt.Errorf("Failed to add sublogger (%s): %v", name, err)
  39. }
  40. return nil
  41. }
  42. // DelLogger deletes a sublogger from this logger.
  43. func (l *Logger) DelLogger(name string) (bool, error) {
  44. return l.MultiChannelledLog.DelLogger(name), nil
  45. }
  46. // Log msg at the provided level with the provided caller defined by skip (0 being the function that calls this function)
  47. func (l *Logger) Log(skip int, level Level, format string, v ...interface{}) error {
  48. if l.GetLevel() > level {
  49. return nil
  50. }
  51. caller := "?()"
  52. pc, filename, line, ok := runtime.Caller(skip + 1)
  53. if ok {
  54. // Get caller function name.
  55. fn := runtime.FuncForPC(pc)
  56. if fn != nil {
  57. caller = fn.Name() + "()"
  58. }
  59. }
  60. msg := format
  61. if len(v) > 0 {
  62. args := make([]interface{}, len(v))
  63. for i := 0; i < len(args); i++ {
  64. args[i] = NewColoredValuePointer(&v[i])
  65. }
  66. msg = fmt.Sprintf(format, args...)
  67. }
  68. stack := ""
  69. if l.GetStacktraceLevel() <= level {
  70. stack = Stack(skip + 1)
  71. }
  72. return l.SendLog(level, caller, strings.TrimPrefix(filename, prefix), line, msg, stack)
  73. }
  74. // SendLog sends a log event at the provided level with the information given
  75. func (l *Logger) SendLog(level Level, caller, filename string, line int, msg string, stack string) error {
  76. if l.GetLevel() > level {
  77. return nil
  78. }
  79. event := &Event{
  80. level: level,
  81. caller: caller,
  82. filename: filename,
  83. line: line,
  84. msg: msg,
  85. time: time.Now(),
  86. stacktrace: stack,
  87. }
  88. l.LogEvent(event)
  89. return nil
  90. }
  91. // Trace records trace log
  92. func (l *Logger) Trace(format string, v ...interface{}) {
  93. l.Log(1, TRACE, format, v...)
  94. }
  95. // Debug records debug log
  96. func (l *Logger) Debug(format string, v ...interface{}) {
  97. l.Log(1, DEBUG, format, v...)
  98. }
  99. // Info records information log
  100. func (l *Logger) Info(format string, v ...interface{}) {
  101. l.Log(1, INFO, format, v...)
  102. }
  103. // Warn records warning log
  104. func (l *Logger) Warn(format string, v ...interface{}) {
  105. l.Log(1, WARN, format, v...)
  106. }
  107. // Error records error log
  108. func (l *Logger) Error(format string, v ...interface{}) {
  109. l.Log(1, ERROR, format, v...)
  110. }
  111. // ErrorWithSkip records error log from "skip" calls back from this function
  112. func (l *Logger) ErrorWithSkip(skip int, format string, v ...interface{}) {
  113. l.Log(skip+1, ERROR, format, v...)
  114. }
  115. // Critical records critical log
  116. func (l *Logger) Critical(format string, v ...interface{}) {
  117. l.Log(1, CRITICAL, format, v...)
  118. }
  119. // CriticalWithSkip records critical log from "skip" calls back from this function
  120. func (l *Logger) CriticalWithSkip(skip int, format string, v ...interface{}) {
  121. l.Log(skip+1, CRITICAL, format, v...)
  122. }
  123. // Fatal records fatal log and exit the process
  124. func (l *Logger) Fatal(format string, v ...interface{}) {
  125. l.Log(1, FATAL, format, v...)
  126. l.Close()
  127. os.Exit(1)
  128. }
  129. // FatalWithSkip records fatal log from "skip" calls back from this function and exits the process
  130. func (l *Logger) FatalWithSkip(skip int, format string, v ...interface{}) {
  131. l.Log(skip+1, FATAL, format, v...)
  132. l.Close()
  133. os.Exit(1)
  134. }