Type for the log export.
log
Only logs if the given condition is true.
true
import {log} from '@augment-vir/common';// this will loglog.if(true).info('hi');// this will not loglog.if(false).info('hi'); Copy
import {log} from '@augment-vir/common';// this will loglog.if(true).info('hi');// this will not loglog.if(false).info('hi');
@augment-vir/common
Type for the
log
export.