We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a18eaa commit d08a48bCopy full SHA for d08a48b
src/main/com/mongodb/MongoURI.java
@@ -154,7 +154,7 @@ else if ( key.equals( "waitqueuemultiple" ) )
154
else if ( key.equals( "w" ) ) _options.w = Integer.parseInt( value );
155
else if ( key.equals( "wtimeout" ) ) _options.wtimeout = Integer.parseInt( value );
156
else if ( key.equals( "fsync" ) ) _options.fsync = _parseBoolean( value );
157
- else LOGGER.warning( "Unknown or Unsupported Option '" + value + "'" );
+ else LOGGER.warning( "Unknown or Unsupported Option '" + key + "'" );
158
}
159
160
0 commit comments