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 6589073
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:07:34+00:00 2026-05-25T17:07:34+00:00

can any one provide me of a very sample custom layoutrenderer for nlog ?

  • 0

can any one provide me of a very sample custom layoutrenderer for nlog ?

I want to make indentation while im logging , by example

if im calling Method B from Method C

the Text log file goes like this :

Inside Method C
       Inside Method B

and so on.

  • 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-25T17:07:35+00:00Added an answer on May 25, 2026 at 5:07 pm

    here it is:

    [LayoutRenderer("IndentationLayout")]
    public sealed class IndentationLayoutRenderer : LayoutRenderer
    {
        // Value to substract from stack count
        private uint _ignore = 12;
    
        // Value to pad with.
        private string _ipadding = "| ";
    
        /// <summary>Set the number of (top) stackframes to ignore</summary>
        public uint Ignore
        {
            get { return _ignore; }
            set { _ignore = value; }
        }
    
        /// <summary>Set the padding value</summary>
        public string IndentationPadding
        {
            get { return _ipadding; }
            set { _ipadding = value; }
        }
    
        protected override void Append(StringBuilder builder, LogEventInfo ev)
        {
            // Get current stack depth, insert padding chars.
            StackTrace st = new StackTrace();
            long indent = st.FrameCount;
            indent = indent > _ignore ? indent - _ignore : 0;
            for (int i = 0; i < indent; ++i)
            {
                builder.Append(_ipadding);
            }
        }
    }
    

    Registration:

    if(NLog.Config.ConfigurationItemFactory.Default.LayoutRenderers.AllRegisteredItems.ContainsKey(
                    "IndentationLayout"))
                    return;
    
    NLog.Config.ConfigurationItemFactory.Default.LayoutRenderers.RegisterDefinition("IndentationLayout", typeof(IndentationLayoutRenderer));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can any one provide sample program to dequeue messages in Java? I want standalone
can any one provide me full 2 mapping file which implements cascade delete. measn
Can any one provide me code for consuming webservices via SOAP in java? Actually
How to install the oauth in php. Can any one provide me the full
Can anyone provide a clear explanation / example of what these functions do, and
Can anyone provide me with a hello world example for a major mode in
i want to make my android apps very stylish, i.e. styling controls like EditText,
Can anyone provide some real examples as to how best to keep script files
Can anyone provide some pseudo code for a roulette selection function? How would I
Can anyone provide me with a link to good article about using Firebird.NET with

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.