Summary
sets the detail level of db4o messages.
- Assembly
- Db4objects
.Db4o-2010 .dll - Namespace
- Db4objects
.Db4o .Config - Containing Type
- ICommonConfiguration
Syntax
int MessageLevel { set; }
Remarks
sets the detail level of db4o messages. Messages will be output to the
configured output
Level 0 - no messages
Level 1 - open and close messages
Level 2 - messages for new, update and delete
Level 3 - messages for activate and deactivate
When using client-server and the level is set to 0, the server will override this and set it to 1. To get around this you can set the level to -1. This has the effect of not returning any messages.
In client-server environment this setting can be used on client or on server depending on which information do you want to track (server side provides more detailed information).
System.IO.TextWriter
.
Level 0 - no messages
Level 1 - open and close messages
Level 2 - messages for new, update and delete
Level 3 - messages for activate and deactivate
When using client-server and the level is set to 0, the server will override this and set it to 1. To get around this you can set the level to -1. This has the effect of not returning any messages.
In client-server environment this setting can be used on client or on server depending on which information do you want to track (server side provides more detailed information).
Value
Type | Description |
---|---|
int | integer from 0 to 3 |
See Also
- OutStream(System.IO.TextWriter)