tag property

String tag
final

tag is given while creating a instance of the Log. If a instance has previously created with the same tag, the same instance will be return. Else new instance will be created.

tag is also printed in the log, so it will be easier to differentiate between two log prints from different Log instances.

Implementation

final String tag;