0 votes
by (750 points)

I want to create a communication log file between client and my production server becoz I am getting a rebex.imap timeout issue frequently for this I am adding a line as below :-

objImapClient.LogWriter = new Rebex.FileLogWriter(@PathForRebexLog, Rebex.LogLevel.Info);

so should I use in my case Rebex.LogLevel.Debug or Rebex.LogLevel.Info ??? please tell me quickly as possible.

related to an answer for: Rebex.Imap Timeout Issue
Applies to: Rebex Secure Mail

1 Answer

0 votes
by (58.9k points)

LogLevel.Info is less verbose than the LogLevel.Debug.

For your purpose, please use Rebex.LogLevel.Debug (this is the default value as well).

...