Skip to content

feat: Allow customizing written log entries by exposing parameters via appender configuration #625

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 40 commits into from
Jan 14, 2022
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
93e492e
feat: Allow customizing written log entries by exposing parameters vi…
losalex Dec 28, 2021
caf47cb
Merge branch 'main' into losalex/fix-551
losalex Dec 30, 2021
4b7fd87
Merge branch 'main' into losalex/fix-551
losalex Jan 5, 2022
59d686a
Add project id override in getLoggingOptions
losalex Jan 5, 2022
de74d68
Add tests
losalex Jan 6, 2022
f5a365c
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 6, 2022
53bf09f
Expose project ID based resource name support
losalex Jan 7, 2022
233467c
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
losalex Jan 7, 2022
e5d574d
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 7, 2022
93f4592
Fix comment
losalex Jan 11, 2022
9f6ea38
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
losalex Jan 11, 2022
3c8d677
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 11, 2022
433d3b3
Address PR comments
losalex Jan 12, 2022
592683c
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
losalex Jan 12, 2022
8c24990
Fix README
losalex Jan 12, 2022
4b62554
Fix name in README
losalex Jan 12, 2022
1192e64
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 12, 2022
bf0ee30
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
losalex Jan 12, 2022
ddfd56c
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 12, 2022
989339b
Revert version for logback used
losalex Jan 12, 2022
bc5b072
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
losalex Jan 12, 2022
5d765d5
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 12, 2022
7164b5f
Fix README
losalex Jan 12, 2022
66736f1
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
losalex Jan 12, 2022
48cd281
Revert 0.122.9-alpha reference
losalex Jan 12, 2022
cc8ed4e
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 12, 2022
cb04777
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
gcf-owl-bot[bot] Jan 12, 2022
a722a73
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 12, 2022
c0b0c00
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
gcf-owl-bot[bot] Jan 12, 2022
63eddc8
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 12, 2022
506a622
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
gcf-owl-bot[bot] Jan 12, 2022
7693b8f
Add comment to partial README
losalex Jan 12, 2022
96cf31e
Merge branch 'main' into losalex/fix-551
losalex Jan 12, 2022
73bed8f
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 12, 2022
c0f5217
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
gcf-owl-bot[bot] Jan 12, 2022
02ab5ad
🦉 Updates from OwlBot
gcf-owl-bot[bot] Jan 12, 2022
7da71cf
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
gcf-owl-bot[bot] Jan 12, 2022
97dcd9b
Add extra fixes
losalex Jan 12, 2022
157728a
Merge branch 'losalex/fix-551' of https://github.com/googleapis/java-…
losalex Jan 12, 2022
9d4250d
Remove WriteOptions initialization
losalex Jan 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
🦉 Updates from OwlBot
  • Loading branch information
gcf-owl-bot[bot] committed Jan 12, 2022
commit 73bed8f5f22e6720ee0e0a626d28325d10040b74
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ See [Logback filters](https://logback.qos.ch/manual/filters.html#thresholdFilter
<!-- Optional: defaults to the default credentials of the environment -->
<credentialsFile>/path/to/credentials/file</credentialsFile>

<!-- Optional: defaults to the project id obtained during authentication process. Project id is also used to construct resource name of the log entries -->
<logDestinationProjectId>String</logDestinationProjectId>

Comment on lines +99 to +101
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this change is done by you, please undo it to avoid unnecessary PRs since the change to .readme-partials.yaml does the job.
If this change is submitted by Owlbot, please ignore this comment.

<!-- Optional: add custom labels to log entries using LoggingEnhancer classes -->
<enhancer>com.example.enhancers.TestLoggingEnhancer</enhancer>
<enhancer>com.example.enhancers.AnotherEnhancer</enhancer>
Expand Down