Normally the debug messages of db4o are printed to the default console. However you can configure db4o to send the information to any output stream:
IEmbeddedConfiguration configuration = Db4oEmbedded.NewConfiguration(); configuration.Common.OutStream = Console.Out;
Dim configuration As IEmbeddedConfiguration = Db4oEmbedded.NewConfiguration() configuration.Common.OutStream = Console.Out