Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6548819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:01:01+00:00 2026-05-25T12:01:01+00:00

I am converting my logback.xml file to groovy and am posed with this challenge

  • 0

I am converting my logback.xml file to groovy and am posed with this challenge of adding appenders to my custom appender!

Currently I do it like this:

<appender name="MyCustomAppender" class="url.MyCustomAppender">
    <param name="BufferSize" value="10000"/>
    <param name="Blocking" value="true"/>
    <appender-ref ref="FILE"/>
    <!-- <appender-ref ref="CONSOLE"/> -->
    <appender-ref ref="CONSOLE_ERR"/>
</appender>

I tried something like this with groovy but it fails:

   appender("MyCustomAppender", MyCustomAppender) {
    BufferSize = 10000
    Blocking = true
    appender-ref('ref':"CONSOLE_ERR");
        appender-ref('ref':"FILE"); 
   }

I can’t change the custom appender as it is in shared code, so that isn’t a solution. I would just like to do the exact same thing that happens in xml, but in groovy.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T12:01:02+00:00Added an answer on May 25, 2026 at 12:01 pm

    Try this:

    def consoleErrAppender = appenderList.find { it -> it.name == "CONSOLE_ERR" }
    def fileAppender = appenderList.find { it -> it.name == "FILE" }
    
    appender("MyCustomAppender", MyCustomAppender) {
        BufferSize = 10000
        Blocking = true
        appender = consoleErrAppender
        appender = fileAppender    
    }
    

    I suppose your MyCustomAppender implements the AppenderAttachable interface (or at least has a public void addAppender(Appender<E> newAppender) method).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Converting from Django, I'm used to doing something like this: {% if not var1
Converting non-negative Integer to its list of digits is commonly done like this: import
Is converting a file to a byte array the best way to save ANY
Converting a C++ lib to ANSI C and it seems like though ANSI C
converting some CSS to Sass, for example: .ptn, .pvn, .pan{padding-top:0px !important} to this @mixin
Converting large static site to Drupal 6.2 Page urls are now aliased like folder/
While converting a webdesign given as a photoshop file to html+css, I got confused
Im converting an OBJ-C application to C# and am having trouble with this one:
I'm currently converting my MsTest unit tests to xUnit. With xUnit, is there a
Converting String to File : I am passing a file to an action in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.