diff options
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) { |
