au.net.causal.maven.plugins.boxdb.DumpLogsOnErrorOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boxdb-maven-plugin Show documentation
Show all versions of boxdb-maven-plugin Show documentation
Maven plugin to start databases using Docker and VMs
package au.net.causal.maven.plugins.boxdb;
/**
* Controls which database logs, if any, are dumped to user output when a boxed database fails to start.
*/
public enum DumpLogsOnErrorOption
{
/**
* Do not dump logs.
*/
OFF,
/**
* Dump the main log only if it exists.
*/
MAIN,
/**
* Dump all log files.
*/
ALL
}