mirror of
https://github.com/discourse/discourse.git
synced 2024-12-19 05:45:59 +08:00
PERF: Don't execute a git
command each time we log a log line (#30177)
We already have a `GIT_VERSION` constant in `DiscourseLogstashLogger` so we can just use that.
This commit is contained in:
parent
4ddf7e61f9
commit
25ce1f3399
|
@ -67,7 +67,7 @@ class DiscourseLogstashLogger < Logger
|
|||
"pid" => PROCESS_PID,
|
||||
"type" => @type.to_s,
|
||||
"host" => HOST,
|
||||
"git_version" => GitUtils.git_version,
|
||||
"git_version" => GIT_VERSION,
|
||||
}
|
||||
|
||||
# Only log backtrace and env for Logger::WARN and above.
|
||||
|
|
Loading…
Reference in New Issue
Block a user