Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have my nLog layout like below

  fileTarget.Layout =  "${date}  ${message}";

In My code, i am logging like following

  logger.Info("ORDER UPDATE",order.Name,order.Instrument,order.OrderState);

However it only logs the first string for eg.

11/22/2012 22:37:16  ORDER UPDATE
11/22/2012 22:37:16  ORDER UPDATE
11/22/2012 22:37:16  ORDER UPDATE
11/22/2012 22:37:16  ORDER UPDATE

I am pretty sure that i am missing something in my layout but cannot figure out how to fix it. Can someone point out my error?

share|improve this question
What language do you use? – eagle.dan.1349 Nov 23 '12 at 4:11

3 Answers

up vote 2 down vote accepted

To save all your strings you should concatenate them first. As I see, your logger recognizes only first one, so you should add other strings you need to make them one string since you are actually logging one string, not several. Or update your logger to recognize numerous strings, I mean something like this: fileTarget.Layout = "${date} ${message1} ${message2} ${message3} ${message4}";

share|improve this answer

Could you do something like:

Info("ORDER UPDATE: " + order.Name + ", " + order.Instrument + ", " + order.OrderState);
share|improve this answer

Or you could use the string.Format (i.e. Console.WriteLine) style expecting token replacement, which is probably what you were intending to use:

logger.Info("ORDER UPDATE: Name = {0}; Instrument = {1}; State = {2} ", order.Name, order.Instrument, order.OrderState);

rather than assuming the same number of messages for every Logger request.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.