Skip to content

Commit

Permalink
Fixed documentation issue on logging sync/async by default (#47)
Browse files Browse the repository at this point in the history
Co-authored-by: Rijn Buve <[email protected]>
  • Loading branch information
rijnb and RijnBuve-TomTom authored Jun 21, 2022
1 parent 0defd86 commit 5be0cfd
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,10 @@ Contributors: Timon Kanters, Jeroen Erik Jensen, Krzysztof Karczewski

## Release notes

### 1.7.2

* Fixed documentation on logging sync instead of async by default. No functional change.

### 1.7.1

* Remove use of reflection on the critical path of creating a `Tracer` object by removing the use of
Expand Down
2 changes: 1 addition & 1 deletion extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.tomtom.kotlin</groupId>
<artifactId>kotlin-tools</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
</parent>

<artifactId>extensions</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion memoization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.tomtom.kotlin</groupId>
<artifactId>kotlin-tools</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
</parent>

<artifactId>memoization</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>com.tomtom.kotlin</groupId>
<artifactId>kotlin-tools</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
<packaging>pom</packaging>

<name>Kotlin Tools</name>
Expand Down
2 changes: 1 addition & 1 deletion traceevents/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.tomtom.kotlin</groupId>
<artifactId>kotlin-tools</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
</parent>

<artifactId>traceevents</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ public class Tracer private constructor(
/**
* Set trace logging to sync (events are logged to logger in same thread as event caller)
* or async (events are queued and logged in a separate thread).
* Default is async, so event processing doesn't get in the way of the caller thread.
* Default is sync (so events and calls to a logger are traced in order).
*/
public fun setTraceEventLoggingMode(loggingMode: LoggingMode) {
this.loggingMode = loggingMode
Expand Down
2 changes: 1 addition & 1 deletion uid/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.tomtom.kotlin</groupId>
<artifactId>kotlin-tools</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
</parent>

<artifactId>uid</artifactId>
Expand Down

0 comments on commit 5be0cfd

Please sign in to comment.