Skip to content

Support isEnabledFor to isEnabled in Log4j 1.x to 2.x migration#277

Merged
timtebeek merged 2 commits into
mainfrom
fix/276-isEnabledFor-to-isEnabled
Feb 10, 2026
Merged

Support isEnabledFor to isEnabled in Log4j 1.x to 2.x migration#277
timtebeek merged 2 commits into
mainfrom
fix/276-isEnabledFor-to-isEnabled

Conversation

@timtebeek

@timtebeek timtebeek commented Feb 10, 2026

Copy link
Copy Markdown
Member

Summary

  • Adds a ChangeMethodName recipe step to rename Category.isEnabledFor(Priority) to isEnabled in the Log4j1ToLog4j2 recipe, placed before the PriorityLevel type change so the method pattern matches original Log4j 1.x types

  • Adds test verifying logger.isEnabledFor(Priority.INFO) is migrated to logger.isEnabled(Level.INFO)

  • Closes Log4j rewrite could support isEnabledFor to isEnabled #276

Test plan

  • Existing Log4j1ToLog4j2Test tests pass
  • New isEnabledForToIsEnabled test verifies the method rename along with type migration

🤖 Generated with Claude Code

Closes #276

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@timtebeek timtebeek merged commit 37b84bf into main Feb 10, 2026
1 check passed
@timtebeek timtebeek deleted the fix/276-isEnabledFor-to-isEnabled branch February 10, 2026 12:54
@github-project-automation github-project-automation Bot moved this from In Progress to Done in OpenRewrite Feb 10, 2026
mergify Bot added a commit to robfrank/linklift that referenced this pull request Feb 14, 2026
…rom 3.22.0 to 3.23.0 [skip ci]

Bumps [org.openrewrite.recipe:rewrite-logging-frameworks](https://github.com/openrewrite/rewrite-logging-frameworks) from 3.22.0 to 3.23.0.
Release notes

*Sourced from [org.openrewrite.recipe:rewrite-logging-frameworks's releases](https://github.com/openrewrite/rewrite-logging-frameworks/releases).*

> 3.23.0
> ------
>
> What's Changed
> --------------
>
> * Make declarative recipes singletons by [`@​sambsnyd`](https://github.com/sambsnyd) in [openrewrite/rewrite-logging-frameworks#275](https://redirect.github.com/openrewrite/rewrite-logging-frameworks/pull/275)
> * Support `isEnabledFor` to `isEnabled` in Log4j 1.x to 2.x migration by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-logging-frameworks#277](https://redirect.github.com/openrewrite/rewrite-logging-frameworks/pull/277)
>
> **Full Changelog**: <openrewrite/rewrite-logging-frameworks@v3.22.0...v3.23.0>


Commits

* [`37b84bf`](openrewrite/rewrite-logging-frameworks@37b84bf) Support `isEnabledFor` to `isEnabled` in Log4j 1.x to 2.x migration ([#277](https://redirect.github.com/openrewrite/rewrite-logging-frameworks/issues/277))
* [`86f5279`](openrewrite/rewrite-logging-frameworks@86f5279) Delete files
* [`061d6b0`](openrewrite/rewrite-logging-frameworks@061d6b0) Update suppression
* [`96fa8df`](openrewrite/rewrite-logging-frameworks@96fa8df) Make declarative recipes singletons ([#275](https://redirect.github.com/openrewrite/rewrite-logging-frameworks/issues/275))
* [`7b5b37d`](openrewrite/rewrite-logging-frameworks@7b5b37d) Adopt JUnit 5.14.2 where 5.13.x was pinned
* [`a157f0d`](openrewrite/rewrite-logging-frameworks@a157f0d) OpenRewrite recipe best practices
* See full diff in [compare view](openrewrite/rewrite-logging-frameworks@v3.22.0...v3.23.0)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=org.openrewrite.recipe:rewrite-logging-frameworks&package-manager=maven&previous-version=3.22.0&new-version=3.23.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Archived in project

Development

Successfully merging this pull request may close these issues.

Log4j rewrite could support isEnabledFor to isEnabled

1 participant