-
Notifications
You must be signed in to change notification settings - Fork 42
Conversation
Codecov Report
@@ Coverage Diff @@
## master #429 +/- ##
============================================
- Coverage 59.50% 59.47% -0.03%
Complexity 120 120
============================================
Files 32 32
Lines 642 644 +2
Branches 50 50
============================================
+ Hits 382 383 +1
- Misses 244 245 +1
Partials 16 16
Continue to review full report at Codecov.
|
@@ -42,6 +42,9 @@ | |||
@Parameter(property = "serviceAccountKeyFile", required = false) | |||
private File serviceAccountKeyFile; | |||
|
|||
/** Optional parameter to configure the gcloud logging verbosity level. */ | |||
@Parameter private String verbosity; |
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.
Is it unnecessary to have
@Parameter(property = "verbosity", required = false)
like for the serviceAccountKeyFile
field?
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.
property is for the command line option -Dverbosity=info
or something, which I'm hesitant to add, maybe it could be gcloud.verbosity
or something? verbosity
seems like it could clash with a bunch of things
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.
I will add gcloud.verbosity
No description provided.