Closed jameslamb closed 6 years ago
Very minor thing, but having return(NULL) can cause some weird things to happen in logs in certain situations.
return(NULL)
Seeing this is always a bit confusing:
[INFO] doing some stuff... [INFO] done [INFO] doing other stuff.... NULL [INFO] done [INFO] moving on from stuff to things...
Using return(invisible(NULL)) everywhere would suppress these NULLs from being printed
return(invisible(NULL))
Issue is address with last PR, closing this out!
Very minor thing, but having
return(NULL)
can cause some weird things to happen in logs in certain situations.Seeing this is always a bit confusing:
Using
return(invisible(NULL))
everywhere would suppress these NULLs from being printed