diff options
author | Andrey Nering <andrey.nering@gmail.com> | 2017-06-15 14:57:29 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 14:57:29 -0300 |
commit | b7d597e40c239cc1e64a873cec92cf62c5965bdc (patch) | |
tree | cde417628152f000b1164032dfa2e40dbaea9f71 | |
parent | 2bcd9471c9b7efcf8f832f2855e2bc2221c75e03 (diff) | |
parent | d1e4af66c19a99a83367e4550fddadc6526381a5 (diff) | |
download | gitea-b7d597e40c239cc1e64a873cec92cf62c5965bdc.tar.gz gitea-b7d597e40c239cc1e64a873cec92cf62c5965bdc.zip |
Merge pull request #1976 from ethantkoenig/log/integration_test
Set console to debug for integration tests
-rw-r--r-- | integrations/mysql.ini | 4 | ||||
-rw-r--r-- | integrations/pgsql.ini | 4 | ||||
-rw-r--r-- | integrations/sqlite.ini | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/integrations/mysql.ini b/integrations/mysql.ini index bf3fa9105c..2818e2bf36 100644 --- a/integrations/mysql.ini +++ b/integrations/mysql.ini @@ -6,7 +6,7 @@ DB_TYPE = mysql HOST = 127.0.0.1:3306 NAME = testgitea USER = root -PASSWD = +PASSWD = SSL_MODE = disable PATH = data/gitea.db @@ -47,7 +47,7 @@ MODE = console,file ROOT_PATH = mysql-log [log.console] -LEVEL = Debug +LEVEL = Warn [log.file] LEVEL = Debug diff --git a/integrations/pgsql.ini b/integrations/pgsql.ini index 1a680a0acb..43a7cc78c1 100644 --- a/integrations/pgsql.ini +++ b/integrations/pgsql.ini @@ -47,10 +47,10 @@ MODE = console,file ROOT_PATH = pgsql-log [log.console] -LEVEL = Debug +LEVEL = Warn [log.file] -LEVEL = Debug +LEVEL = Debug [security] INSTALL_LOCK = true diff --git a/integrations/sqlite.ini b/integrations/sqlite.ini index 3f14ad884f..c771507a76 100644 --- a/integrations/sqlite.ini +++ b/integrations/sqlite.ini @@ -44,13 +44,13 @@ PROVIDER = file [log] MODE = console,file +ROOT_PATH = sqlite-log [log.console] -LEVEL = Debug +LEVEL = Warn [log.file] -LEVEL = Debug -ROOT_PATH = log +LEVEL = Debug [security] INSTALL_LOCK = true |