Skip to content

Commit

Permalink
Document that "internalCompilerData" field is not meant for public co…
Browse files Browse the repository at this point in the history
…nsumption
  • Loading branch information
Neeme Praks committed Oct 31, 2024
1 parent c7047dc commit c0735bb
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ public class KLoggingEventBuilder {
public var message: String? = null
public var cause: Throwable? = null
public var payload: Map<String, Any?>? = null

/**
* Internal data that is used by compiler plugin to provide additional information about the log site.
* Not intended for use by user code, API stability is not guaranteed.
*/
public var internalCompilerData: InternalCompilerData? = null

public class InternalCompilerData(
Expand Down

0 comments on commit c0735bb

Please sign in to comment.