Currently the ClangModulesDeclVendor is spamming the expression log with the compiler flags it is using, which creates a log that looks like this:
clang -fmodules -fimplicit-module-maps
This patch removes all these newlines and just prints the compiler flags in one line as you see in the command line:
clang -fmodules -fimplicit-module-maps [...]