|
@@ -33,7 +33,7 @@ You can run the above example with:
|
|
cargo run --example init
|
|
cargo run --example init
|
|
```
|
|
```
|
|
|
|
|
|
-If you want to remove the colorized output and its dependencies, add the
|
|
|
|
|
|
+If you want to remove the colorized output and the timestamps with its respective dependencies, add the
|
|
the following to your Cargo.toml:
|
|
the following to your Cargo.toml:
|
|
|
|
|
|
```
|
|
```
|
|
@@ -41,6 +41,22 @@ the following to your Cargo.toml:
|
|
default-features = false
|
|
default-features = false
|
|
```
|
|
```
|
|
|
|
|
|
|
|
+Or to remove only the colorized output but keep the timestamps:
|
|
|
|
+
|
|
|
|
+```
|
|
|
|
+[dependencies.simple_logger]
|
|
|
|
+default-features = false
|
|
|
|
+features = ["ts"]
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+Or to remove only the timestamps but keep the colorized output:
|
|
|
|
+
|
|
|
|
+```
|
|
|
|
+[dependencies.simple_logger]
|
|
|
|
+default-features = false
|
|
|
|
+features = ["color"]
|
|
|
|
+```
|
|
|
|
+
|
|
Licence
|
|
Licence
|
|
-------
|
|
-------
|
|
|
|
|