Skip to content

Commit

Permalink
fixed linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sufyankhanrao committed Apr 18, 2024
1 parent 73fafdb commit e22f8ed
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* Interface representing an object capable of logging messages at different levels.
*/
public interface Logger {

/**
* Logs a message with the specified logging level, format, and arguments.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
import java.util.List;

public interface ReadonlyLogOptions {
/**

/**
* Checks if logging of request body is enabled.
* @return True if logging of request body is enabled, otherwise false.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@
* To hold logging configuration
*/
public interface ReadonlyLoggingConfiguration {
/***
* Getter for Logger
* @return Logger Instance
*/
Logger getLogger();


/***
* Getter for Logger
* @return Logger Instance
*/
Logger getLogger();

/**
* Getter for level.
* @return Level of logging.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package io.apimatic.coreinterfaces.logger.configuration;

public interface ReadonlyRequestLogging extends ReadonlyLogOptions {
/**

/**
* Checks if logging of query parameters is required
* @return True if logging of query parameters enabled, otherwise false.
*/
boolean shouldIncludeQueryInPath();
boolean shouldIncludeQueryInPath();
}

0 comments on commit e22f8ed

Please sign in to comment.