Summary
sets the detail level of db4o messages.
- Assembly
- Db4objects
.Db4o-2010 .dll - Namespace
- Db4objects
.Db4o .Config - Containing Type
- IConfiguration
Syntax
void MessageLevel(int level)
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).
Parameters
Name | Type | Description |
---|---|---|
level | int | integer from 0 to 3 |
Return Value
Type | Description |
---|---|
void |
See Also
- Db4objects.Db4o.Config.IConfiguration.SetOut(System.IO.TextWriter)