Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d949d13
Rename Flogger classes to Jvm
alexander-yevsyukov Jun 25, 2025
df3e237
Rename the `flogger` directory
alexander-yevsyukov Jun 25, 2025
521de75
Restore (c) statements
alexander-yevsyukov Jun 25, 2025
3b4bf8e
Address inspection warnings
alexander-yevsyukov Jun 25, 2025
d7f9c22
Improve doc formatting
alexander-yevsyukov Jun 25, 2025
222df91
Rename `FluentLogger2` to `Middleman`
alexander-yevsyukov Jun 25, 2025
a307c72
Rename `FluentLogger2` to `Middleman`
alexander-yevsyukov Jun 25, 2025
9ebff0e
Update `config` ref.
alexander-yevsyukov Jun 25, 2025
b64c8a0
Update build time
alexander-yevsyukov Jun 25, 2025
d359006
Improve Javadoc comments
alexander-yevsyukov Jun 25, 2025
c794aec
Merge pull request #99 from SpineEventEngine/codex/improve-javadoc-la…
alexander-yevsyukov Jun 25, 2025
ccb0f12
docs: adjust Javadoc formatting
alexander-yevsyukov Jun 25, 2025
e85eef3
Merge pull request #100 from SpineEventEngine/codex/fix-javadoc-layou…
alexander-yevsyukov Jun 25, 2025
38ca9dd
Remove the `Jvm` prefix in `JvmMetadataKey`
alexander-yevsyukov Jun 26, 2025
14865de
Update build time
alexander-yevsyukov Jun 26, 2025
0e912b4
Update `config`
alexander-yevsyukov Jun 26, 2025
b0d07f7
Improve formatting
alexander-yevsyukov Jun 26, 2025
98be155
Auto-updated by IDEA
alexander-yevsyukov Jun 26, 2025
b09e135
Rename `JvmApi` to `MiddlemanApi`
alexander-yevsyukov Jun 26, 2025
065cb1a
Update build time
alexander-yevsyukov Jun 26, 2025
aa2cf08
Merge remote-tracking branch 'origin/master' into codex/rename-.flogg…
alexander-yevsyukov Jun 26, 2025
2cec0ca
Fix `https` in (c) headers
alexander-yevsyukov Jun 26, 2025
db926b8
Use HTTPs
alexander-yevsyukov Jun 26, 2025
bbab5df
Improve doc formatting
alexander-yevsyukov Jun 26, 2025
3798483
Pull `LogSite` classes to the package level
alexander-yevsyukov Jun 26, 2025
1c389c7
Restore (c) headers.
alexander-yevsyukov Jun 26, 2025
fb7609a
Rollback renaming `DefaultPlatform`
alexander-yevsyukov Jun 26, 2025
fd869bf
Update build time
alexander-yevsyukov Jun 26, 2025
2b4c74f
Restore Gradle to `8.14.2`
alexander-yevsyukov Jun 26, 2025
3ea57d1
Add `for historical context.` clarification
alexander-yevsyukov Jun 26, 2025
390ca77
Add API notes in `Middleman` types
alexander-yevsyukov Jun 26, 2025
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
16 changes: 2 additions & 14 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,12 @@ Does the task involve complex architectural decisions or advanced Kotlin feature

#### Using periods
- Use periods at the end of complete sentences.
- Use no periods for short bullets.
- Use periods for full or multi-clause bullets.
- Use no periods for fragments.
- Use no periods in titles and headers.
- Use NO periods for short bullets.
- Use NO periods for fragments.
- Use NO periods in titles and headers.
- Use NO periods in parameter descriptions in Javadoc.
- DO USE periods in parameter and property descriptions in KDoc.
- Be consistent within the list!

### Text formatting
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ dependencies {
[codecov]: https://codecov.io/gh/SpineEventEngine/logging
[codecov-badge]: https://codecov.io/gh/SpineEventEngine/logging/branch/master/graph/badge.svg
[license-badge]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
[license]: http://www.apache.org/licenses/LICENSE-2.0
[license]: https://www.apache.org/licenses/LICENSE-2.0
[gh-actions]: https://github.com/SpineEventEngine/logging/actions
[ubuntu-build-badge]: https://github.com/SpineEventEngine/logging/actions/workflows/build-on-ubuntu.yml/badge.svg
[windows-build-badge]: https://github.com/SpineEventEngine/logging/actions/workflows/build-on-windows.yml/badge.svg
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
* Copyright 2014, The Flogger Authors; 2023, TeamDev. All rights reserved.
* Copyright 2023, The Flogger Authors; 2025, TeamDev. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* https://www.apache.org/licenses/LICENSE-2.0
*
* Redistribution and use in source and/or binary forms, with or without
* modification, must retain the above copyright notice and the following
Expand All @@ -26,7 +26,7 @@

package io.spine.logging.backend.jul;

import io.spine.logging.flogger.backend.LoggerBackend;
import io.spine.logging.jvm.backend.LoggerBackend;

import java.util.logging.Filter;
import java.util.logging.Handler;
Expand All @@ -40,7 +40,7 @@
* <p>This class handles everything except formatting of a log message
* and metadata.
*
* @see <a href="https://rb.gy/jzz7x">Original Java code of Google Flogger</a>
* @see <a href="https://rb.gy/jzz7x">Original Java code of Google Flogger</a> for historical context.
*/
public abstract class AbstractJulBackend extends LoggerBackend {
// Set if any attempt at logging via the "forcing" logger fails due to an inability to set the
Expand Down
Loading
Loading