> ## Documentation Index
> Fetch the complete documentation index at: https://hedera-0c6e0218-docs--429.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Change the logging level of the application

> Allows changing the logging level dynamically at runtime for the application. Requires Basic Authentication.



## OpenAPI

````yaml smart-contract-verification-api.yaml post /change-log-level
openapi: 3.0.0
info:
  title: Sourcify API
  version: 1.0.0
servers:
  - description: The current REST API server
    url: ''
  - description: The production REST API server
    url: https://server-verify.hashscan.io
  - description: The staging REST API server
    url: https://server-sourcify.hedera-devops.com
  - description: Local development server address on default port 5555
    url: http://localhost:5555
security: []
tags:
  - name: Stateless Verification
    description: Main verification endpoints
paths:
  /change-log-level:
    post:
      tags:
        - Logging
      summary: Change the logging level of the application
      description: >-
        Allows changing the logging level dynamically at runtime for the
        application. Requires Basic Authentication.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - level
              properties:
                level:
                  type: string
                  description: The new logging level to set.
                  enum:
                    - error
                    - warn
                    - info
                    - debug
                    - silly
      responses:
        '200':
          description: The logging level was successfully changed.
          content:
            text/plain:
              schema:
                type: string
        '400':
          description: Bad request (e.g., invalid logging level provided).
        '401':
          description: Unauthorized (missing or invalid Basic Authentication credentials).

````