24
24
import com .arangodb .internal .ArangoDBImpl ;
25
25
import com .arangodb .internal .InternalArangoDBBuilder ;
26
26
import com .arangodb .internal .net .*;
27
- import com .arangodb .model .DBCreateOptions ;
28
- import com .arangodb .model .LogOptions ;
29
- import com .arangodb .model .UserCreateOptions ;
30
- import com .arangodb .model .UserUpdateOptions ;
27
+ import com .arangodb .model .*;
31
28
32
29
import javax .annotation .concurrent .ThreadSafe ;
33
30
import java .util .Collection ;
@@ -298,6 +295,14 @@ public interface ArangoDB extends ArangoSerdeAccessor {
298
295
*/
299
296
LogLevelEntity getLogLevel ();
300
297
298
+ /**
299
+ * Returns the server's current loglevel settings.
300
+ *
301
+ * @return the server's current loglevel settings
302
+ * @since ArangoDB 3.10
303
+ */
304
+ LogLevelEntity getLogLevel (LogLevelOptions options );
305
+
301
306
/**
302
307
* Modifies and returns the server's current loglevel settings.
303
308
*
@@ -307,6 +312,15 @@ public interface ArangoDB extends ArangoSerdeAccessor {
307
312
*/
308
313
LogLevelEntity setLogLevel (LogLevelEntity entity );
309
314
315
+ /**
316
+ * Modifies and returns the server's current loglevel settings.
317
+ *
318
+ * @param entity loglevel settings
319
+ * @return the server's current loglevel settings
320
+ * @since ArangoDB 3.10
321
+ */
322
+ LogLevelEntity setLogLevel (LogLevelEntity entity , LogLevelOptions options );
323
+
310
324
/**
311
325
* @return the list of available rules and their respective flags
312
326
* @since ArangoDB 3.10
0 commit comments