[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

sets the detail level of db4o messages.

Namespace: Db4objects.Db4o.Config
Assembly:   Db4objects.Db4o (in Db4objects.Db4o.dll)

Syntax

Visual Basic (Declaration)
Sub MessageLevel ( _
	level As Integer _
)
C#
void MessageLevel (
	int level
)
Visual C++
void MessageLevel (
	int level
)

Parameters

level
System.Int32
integer from 0 to 3

Remarks

sets the detail level of db4o messages. Messages will be output to the configured output PrintStream .

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.

See Also