eventFluxLog function
Logs the given message with the corresponding event and tag.
Implementation
void eventFluxLog(String message, LogEvent event, String? tag) {
log('${_getEmoji(event)} $message',
name: tag ?? "EventFlux ${DateTime.now()}");
}