maskAddress property

  1. @JsonKey.new(name: 'maskAddress')
String? maskAddress
getter/setter pair

IP address masking, when enabled, will automatically replace the IP address appearing in the log. It is used to protect privacy when sharing logs.

The default is empty and is not enabled. Currently available levels are quarter, half, full.

The mask form corresponds to the following:

  • ipv4 1.2.. 1...* Masked IPv4;
  • ipv6 1234:5678::/32 1234::/16 Masked IPv6;

Implementation

@JsonKey(name: 'maskAddress')
String? maskAddress;