-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Extract log helper methods into a Logger::Formatter, Push the job_id into the Job object
#6808
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b34fa15
A Dependabot::Job knows its id
brrygrdn a52a9c3
Teach Dependabot::Environment about debug flags
brrygrdn 01343c5
Formalize some logger formatters to replace class methods
brrygrdn a4c0342
Just use Dependabot.logger since it has been formatted for us
brrygrdn 48f41af
Memoize the prefix, Handle the cli placeholder id
brrygrdn 43652c7
Fix comment
brrygrdn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| # frozen_string_literal: true | ||
|
|
||
| require "logger" | ||
|
|
||
| # Provides Logger::Formatter classes specific to the Updater project to augment | ||
| # the global log helper defined in common/lib/dependabot/logger.rb | ||
| module Dependabot | ||
| module Logger | ||
| class BasicFormatter < ::Logger::Formatter | ||
| # Strip out timestamps as these are included in the runner's logger | ||
| def call(severity, _datetime, _progname, msg) | ||
| "#{severity} #{msg2str(msg)}\n" | ||
| end | ||
| end | ||
|
|
||
| class JobFormatter < ::Logger::Formatter | ||
| CLI_ID = "cli" | ||
| UNKNOWN_ID = "unknown_id" | ||
|
|
||
| def initialize(job_id) | ||
| @job_id = job_id | ||
| end | ||
|
|
||
| def call(severity, _datetime, _progname, msg) | ||
| [ | ||
| severity, | ||
| job_prefix, | ||
| msg2str(msg) | ||
| ].compact.join(" ") + "\n" | ||
| end | ||
|
|
||
| private | ||
|
|
||
| def job_prefix | ||
| return @job_prefix if defined? @job_prefix | ||
| # The dependabot/cli tool uses a placeholder value since it does not | ||
| # have an actual Job ID issued by the service. | ||
| # | ||
| # Let's just omit the prefix if this is the case. | ||
| return @job_prefix = nil if @job_id == CLI_ID | ||
|
|
||
| @job_prefix = "<job_#{@job_id || UNKNOWN_ID}>" | ||
| end | ||
| end | ||
| end | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
!!nilreturns false here but this is kind of a weird way to do it?Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, the "double-bang operator" is an idiom in Ruby to force any type into Boolean but I do always feel odd about using it over the
present?helper - but that's a Rails-isim we don't have in Core as we don't want to include ActiveSupport anymore.