# Update log settings

This endpoint updates the log settings for a specific point of sale device.

Endpoint: PUT /point-of-sales/{pointOfSaleId}/log-settings
Version: 1.0.0

## Path parameters:

  - `pointOfSaleId` (integer, required)
    The unique system identifier for the point of sale device.
    Example: 123456789

## Request fields (application/json):

  - `verboseLoggingEnabled` (boolean,null)
    Indicates whether verbose logging is enabled for the point of sale device. When enabled, more detailed logs are generated, which can be useful for debugging and troubleshooting.
    Example: true

  - `maximumLogSize` (integer,null)
    The maximum size of the log file in bytes. Once the log file reaches this size, older log entries may be removed or archived to prevent exceeding the size limit.
    Example: 10485760

  - `logFileCleanUpDays` (integer,null)
    The number of days after which log files are cleaned up or archived. This helps manage storage by removing or archiving logs that are older than the specified number of days.
    Example: 30


## Response 200 fields
