Search code examples
loggingdvibed

When should I use logInfo and when writeln?


Vibed have logInfo class. In case when I need to write to console information about connection status what's better to use writeln or logInfo?


Solution

  • In vibe, you should always use the vibe functions. Normal writeln locks the output which keeps it sequential and such... but that's a problem in the async environment of vibe.d because it will slow down the other threads trying to log too.