Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Keystone Python Client

Keystone includes an official Python client designed to simplify integration with the platform's [REST API](../../keystone-api/).
Keystone provides an official Python client designed to simplify integration with the platform's [REST API](../../keystone-api/).
It handles authentication, request execution, and response parsing, allowing developers to concentrate on application
logic rather than API mechanics.

Expand Down
10 changes: 4 additions & 6 deletions docs/logging.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Application Logging

The Keystone Python Client includes a dedicated logger named `kclient`, which is automatically registered on package
import. The logger provides full compatibility with the standard Python `logging` module, including support for custom
handlers, formatters, and filters.
The logger can be accessed and customized in the standard fashion, demonstrated below.
The `kclient` Python logger is automatically registered on package import.
It provides full compatibility with the standard Python `logging` module and can be accessed and customized in the
standard fashion.

```python
import logging
Expand Down Expand Up @@ -32,8 +31,7 @@ These fields are passed to all log messages and may be accessed via custom forma

## Session IDs

Each client session is assigned a unique correlation ID (CID) that accompanies all emitted log records and requests.
This identifier provides a reference value for correlating client and API logs across multiple endpoints and services.
Each client session is assigned a unique correlation ID (CID) that accompanies all emitted log records.
CID values are accessible as logging fields or directly from an active client session, demonstrated below:

=== "Synchronous"
Expand Down
175 changes: 0 additions & 175 deletions docs/requests.md

This file was deleted.

84 changes: 0 additions & 84 deletions docs/session.md

This file was deleted.

Loading
Loading