mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix error log when loading issues caused by a xorm bug (#7271)
* fix error log when loading issues caused by a xorm bug * upgrade packages * fix fmt * fix Consistency * fix tests
This commit is contained in:
		
							
								
								
									
										35
									
								
								vendor/xorm.io/core/ilogger.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								vendor/xorm.io/core/ilogger.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,35 @@ | ||||
| // Copyright 2019 The Xorm Authors. All rights reserved. | ||||
| // Use of this source code is governed by a BSD-style | ||||
| // license that can be found in the LICENSE file. | ||||
|  | ||||
| package core | ||||
|  | ||||
| type LogLevel int | ||||
|  | ||||
| const ( | ||||
| 	// !nashtsai! following level also match syslog.Priority value | ||||
| 	LOG_DEBUG LogLevel = iota | ||||
| 	LOG_INFO | ||||
| 	LOG_WARNING | ||||
| 	LOG_ERR | ||||
| 	LOG_OFF | ||||
| 	LOG_UNKNOWN | ||||
| ) | ||||
|  | ||||
| // logger interface | ||||
| type ILogger interface { | ||||
| 	Debug(v ...interface{}) | ||||
| 	Debugf(format string, v ...interface{}) | ||||
| 	Error(v ...interface{}) | ||||
| 	Errorf(format string, v ...interface{}) | ||||
| 	Info(v ...interface{}) | ||||
| 	Infof(format string, v ...interface{}) | ||||
| 	Warn(v ...interface{}) | ||||
| 	Warnf(format string, v ...interface{}) | ||||
|  | ||||
| 	Level() LogLevel | ||||
| 	SetLevel(l LogLevel) | ||||
|  | ||||
| 	ShowSQL(show ...bool) | ||||
| 	IsShowSQL() bool | ||||
| } | ||||
		Reference in New Issue
	
	Block a user