module SemanticLogger

def self.sync!

log them using the current thread.
I.e. Instead of logging messages in a separate thread for better performance,

Run Semantic Logger in Synchronous mode.
def self.sync!
  Logger.sync!
end