JL.
JL.

Reputation: 81292

Log4net : How to test UDP Appender quick

Just setup a UDP appender, and its not working, how can I very quickly check if messages are being sent outbound from the app?

Upvotes: 3

Views: 4033

Answers (4)

pospec4444
pospec4444

Reputation: 364

Really fast way for me was was SocketSniff.

Upvotes: 1

metalcam
metalcam

Reputation: 402

You also can use Log2Console !

Upvotes: 0

Jochen
Jochen

Reputation: 1488

Have you tried monitoring them with a tool?

  • Log4net Viewer: With this tool you can recieve de udp-messages
  • WireShark: With this tool you can watch all the trafic on your network card and see if the messages are being send

Upvotes: 3

Aaron Digulla
Aaron Digulla

Reputation: 328614

Send one message at the start of the application at a level that will be logged. This way, you can be sure that it works at a specific point in time.

Upvotes: 0

Related Questions