Update parent to latest version
[yosql.git] / yosql-website / content / logging / no-op.md
blobe6c43e02d5f99ecb577c1f2f5ee5690edca0a756
1 ---
2 title: No-Op
3 date: 2019-09-27T18:51:08+02:00
4 menu:
5   main:
6     parent: Logging APIs
7 categories:
8   - Loggers
9 tags:
10   - no-op
11 ---
13 The `no-op` implementation for a logging generator. It won't generate any logging statements in your generated code.
15 ## Tooling
17 ### Maven
19 In order to use `YoSQL` together with [Maven](https://maven.apache.org/), take a look at the tooling [documentation
20 for Maven](/tooling/maven/).
22 {{< maven/logging/no-op >}}
24 ### Gradle
26 In order to use `YoSQL` together with [Gradle](https://gradle.org/), take a look at the tooling [documentation for Gradle](/tooling/gradle/).
28 ```groovy
29 plugins {
30   id("wtf.metio.yosql")
33 yosql {
34   apis {
35     loggingApi = NONE
36   }
38 ```
40 ### Bazel
42 In order to use `YoSQL` together with [Bazel](https://bazel.build/), take a look at the tooling [documentation for
43 Bazel](/tooling/bazel/).
45 ### CLI
47 In order to use YoSQL on the command line, take a look at the tooling [documentation for CLI](/tooling/cli/).
49 ```shell
50 $ yosql --apis-logging-api=NONE
51 ```
53 The shorter form is available as well:
55 ```shell
56 $ yosql --logging-api=NONE
57 ```