Skip to content

Commit

Permalink
Reducing build output
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Jan 26, 2018
1 parent 785d3e2 commit 0a0bc43
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion schemacrawler-distrib/clean package.launch
Expand Up @@ -12,5 +12,5 @@
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
<stringAttribute key="M2_USER_SETTINGS" value=""/>
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/SchemaCrawler - 1 - API}/.."/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/~ SchemaCrawler [Parent]}"/>
</launchConfiguration>
Expand Up @@ -29,13 +29,17 @@


import static schemacrawler.test.utility.TestUtility.readerForResource;
import static sf.util.Utility.applyApplicationLogLevel;

import java.nio.charset.StandardCharsets;
import java.nio.file.Path;
import java.sql.Connection;
import java.util.logging.Level;

import javax.sql.DataSource;

import org.junit.BeforeClass;

import schemacrawler.schemacrawler.Config;
import schemacrawler.schemacrawler.SchemaCrawlerException;
import schemacrawler.schemacrawler.SingleUseUserCredentials;
Expand All @@ -49,6 +53,13 @@
public abstract class BaseSqliteTest
{

@BeforeClass
public static void setApplicationLogLevel()
throws Exception
{
applyApplicationLogLevel(Level.OFF);
}

protected DataSource createDataSource(final Path sqliteDbFile)
throws SchemaCrawlerException
{
Expand Down

0 comments on commit 0a0bc43

Please sign in to comment.