Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Document logging options #2003

Open
mshustov opened this issue Dec 5, 2024 · 0 comments
Open

[docs] Document logging options #2003

mshustov opened this issue Dec 5, 2024 · 0 comments
Assignees
Milestone

Comments

@mshustov
Copy link
Member

mshustov commented Dec 5, 2024

scope:

  • slf4j compatibility
  • log deps
  • log levels
  • configuration

@mzitnik example with logback-classic:

<dependency>
  <groupId>ch.qos.logback</groupId>
  <artifactId>logback-classic</artifactId>
  <version>1.2.6</version>
</dependency>
<configuration debug="false">
    <appender name="stdout" class="ch.qos.logback.core.ConsoleAppender">
        <encoder>
            <pattern>%date [%level] %logger - %msg %n</pattern>
        </encoder>
    </appender>

    <root level="DEBUG">
        <appender-ref ref="stdout"/>
    </root>
</configuration>

an example from js client: https://clickhouse.com/docs/en/integrations/javascript#logging-nodejs-only

@chernser chernser added this to the 0.7.2 milestone Dec 5, 2024
@chernser chernser self-assigned this Dec 5, 2024
@chernser chernser changed the title Document logging options [docs] Document logging options Dec 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants