mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-15 00:15:32 +02:00
Use print instead of printf when there are no arguments
This commit is contained in:
@ -42,7 +42,7 @@ func (self *CachedGitConfig) Get(key string) string {
|
||||
defer self.mutex.Unlock()
|
||||
|
||||
if value, ok := self.cache[key]; ok {
|
||||
self.log.Debugf("using cache for key " + key)
|
||||
self.log.Debug("using cache for key " + key)
|
||||
return value
|
||||
}
|
||||
|
||||
@ -56,7 +56,7 @@ func (self *CachedGitConfig) GetGeneral(args string) string {
|
||||
defer self.mutex.Unlock()
|
||||
|
||||
if value, ok := self.cache[args]; ok {
|
||||
self.log.Debugf("using cache for args " + args)
|
||||
self.log.Debug("using cache for args " + args)
|
||||
return value
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user