call method

Logging call(
  1. String name
)

Create a new child Logging instance with a name.

The full name of this new Logging will be this logging's full name + the name.

Implementation

Logging call(String name) {
  assert(name.isNotEmpty, 'Name should not be empty');

  return Logging('${logger.fullName}.$name');
}