diff options
| author | RncLsn <rnc.lsn@gmail.com> | 2015-06-16 15:54:53 +0100 |
|---|---|---|
| committer | RncLsn <rnc.lsn@gmail.com> | 2015-06-26 12:04:49 +0100 |
| commit | 29eecb27c7f91de92b21bbd646d8b7a55e526833 (patch) | |
| tree | 233481bccd68e4b718598320f121024db16ff0e5 /src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java | |
| parent | 3a276b7c7836e56a171ab753b018913ce022ba8e (diff) | |
| download | ACQuA-29eecb27c7f91de92b21bbd646d8b7a55e526833.tar.gz ACQuA-29eecb27c7f91de92b21bbd646d8b7a55e526833.zip | |
Maybe fixed bug in internalisation.
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java b/src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java index e501821..4991d0d 100644 --- a/src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java +++ b/src/uk/ac/ox/cs/pagoda/util/PagodaProperties.java | |||
| @@ -43,14 +43,14 @@ public class PagodaProperties { | |||
| 43 | defaultUseAlwaysSimpleUpperBound = | 43 | defaultUseAlwaysSimpleUpperBound = |
| 44 | Boolean.parseBoolean(config.getProperty("useAlwaysSimpleUpperBound")); | 44 | Boolean.parseBoolean(config.getProperty("useAlwaysSimpleUpperBound")); |
| 45 | if(defaultUseAlwaysSimpleUpperBound) | 45 | if(defaultUseAlwaysSimpleUpperBound) |
| 46 | logger.info("By default the simple upper bound is always used"); | 46 | logger.debug("By default the simple upper bound is always used"); |
| 47 | } | 47 | } |
| 48 | if(config.containsKey("useSkolemUpperBound")) { | 48 | if(config.containsKey("useSkolemUpperBound")) { |
| 49 | defaultUseSkolemUpperBound = Boolean.parseBoolean(config.getProperty("useSkolemUpperBound")); | 49 | defaultUseSkolemUpperBound = Boolean.parseBoolean(config.getProperty("useSkolemUpperBound")); |
| 50 | if(defaultUseSkolemUpperBound) | 50 | if(defaultUseSkolemUpperBound) |
| 51 | logger.info("By default the Skolem upper bound is enabled"); | 51 | logger.debug("By default the Skolem upper bound is enabled"); |
| 52 | else | 52 | else |
| 53 | logger.info("By default the Skolem upper bound is disabled"); | 53 | logger.debug("By default the Skolem upper bound is disabled"); |
| 54 | } | 54 | } |
| 55 | 55 | ||
| 56 | } catch(IOException e) { | 56 | } catch(IOException e) { |
