Get the value of a boolean property. Print out the value if logging is enabled.
(Properties props, String prop)
| 171 | * Print out the value if logging is enabled. |
| 172 | */ |
| 173 | private final synchronized boolean getBoolProp(Properties props, |
| 174 | String prop) { |
| 175 | boolean val = PropUtil.getBooleanProperty(props, prop, false); |
| 176 | if (logger.isLoggable(Level.CONFIG)) |
| 177 | logger.config(prop + ": " + val); |
| 178 | return val; |
| 179 | } |
| 180 | |
| 181 | private void initStreams() throws IOException { |
| 182 | boolean quote = PropUtil.getBooleanProperty(props, |
no test coverage detected