You are here

public function KeycloakService::isDebugMode in Keycloak OpenID Connect 8

Whether the Keycloak client is in verbose debug mode.

Return value

bool TRUE, if debug mode is enabled, FALSE otherwise.

Overrides KeycloakServiceInterface::isDebugMode

File

src/Service/KeycloakService.php, line 348

Class

KeycloakService
Keycloak service.

Namespace

Drupal\keycloak\Service

Code

public function isDebugMode() {
  return $this->config
    ->get('settings.debug');
}