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

Assigns a PrintStream where db4o is to print its event messages.

Messages are useful for debugging purposes and for learning to understand, how db4o works. The message level can be raised with Db4o.configure().messageLevel() to produce more detailed messages.

Use
 Copy imageCopy Code
setOut(System.out)
to print messages to the console.

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

Syntax

Visual Basic (Declaration)
Sub SetOut ( _
	outStream As TextWriter _
)
C#
void SetOut (
	TextWriter outStream
)
Visual C++
void SetOut (
	TextWriter^ outStream
)

Parameters

outStream
System.IO.TextWriter
the new
 Copy imageCopy Code
PrintStream
for messages.

See Also