jaykataria1111 commented on issue #2769:
URL:
https://github.com/apache/logging-log4j2/issues/2769#issuecomment-2475496860
@timtebeek, regarding this:
> @timtebeek, do you have any recommendations on how to rewrite:
>
> public static class Builder implements Supplier<ConsoleAppender> {
>
> @PluginBuilderAttribute
> private boolean follow;
>
> public Builder setFollow(boolean follow) {
> this.follow = follow;
> return this;
> }
> }
> to
>
> public static class Builder implements Supplier<ConsoleAppender> {
>
> private boolean follow;
>
> public Builder setFollow(@PluginAttribute boolean follow) {
> this.follow = follow;
> return this;
> }
> }
I tried to lookup if there are any prewritten recipes for the purpose which
would help us achieve the above case ^^ and that does not seem to be the case,
will we have to write our own recipe? Would that be the way to go?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]