logger
The logger
operator is a utility function for RxJS observables, designed to simplify logging emitted values using different console functions. This operator is useful for debugging and monitoring the behavior of your observables.
Example Code
import {logger} from 'ngx-lift';
import {of} from 'rxjs';
of([1, 1, 2, 2, 3, 4, 4, 5]).pipe(logger('table')).subscribe();
// check your console for result