instance<T> static method

NullTypedLogger<T> instance<T>()

Returns the shared instance of NullTypedLogger for type T.

Implementation

static NullTypedLogger<T> instance<T>() =>
    _instances.putIfAbsent(T, NullTypedLogger<T>.new) as NullTypedLogger<T>;