Last changes not published

This commit is contained in:
vjrj 2026-03-05 01:18:27 +01:00
parent ac65ccf990
commit 21ec08303a
43 changed files with 607 additions and 613 deletions

View file

@ -30,7 +30,7 @@ LoggingMiddleware customLogPrinter<State>({
void main() {
globals.isDevelopment = true;
print("Is development!");
String onlyLogActionFormatter<State>(
State state,
dynamic action,
@ -39,9 +39,9 @@ void main() {
return ">>>>> ${action.toString().replaceAll('Instance of ', '')}";
}
LogLevel logRedux = LogLevel.none;
LogLevel logRedux = LogLevel.actions;
List<Middleware> devMiddlewares = logRedux == LogLevel.none
List<Middleware> devMiddlewares = logRedux == LogLevel.actions
? []
: [
customLogPrinter(