Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix log output for suggestions' tests (#7803)
Very verbose log output discovered by @4e6. Needed an explicit log setup call, similar to other language server's tests. Before (tons of): ``` ... 23:04:42.319 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.CodeGen -- Compiled server-side to: | CompiledStatement "select "id" from "suggestions_version"" : Vector[t10<(Long')>] 23:04:42.320 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.QueryCompiler -- After phase codeGen: | ResultSetMapping : Vector[Mapped[Option[Long']]] | from s8: CompiledStatement "select "id" from "suggestions_version"" : Vector[t10<(Long')>] | map: CompiledMapping : Mapped[Option[Long']] | converter: TypeMappingResultConverter | child: OptionResultConverter$mcJ$sp idx=1 : Long' 23:04:42.320 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.QueryCompilerBenchmark -- ------------------- Phase: Time --------- 23:04:42.320 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.QueryCompilerBenchmark -- assignUniqueSymbols: 0.101991 ms 23:04:42.320 [TestSystem-akka.actor.default-dispatcher-6] DEBUG slick.compiler.QueryCompilerBenchmark -- unrollTailBinds: 0.015431 ms ... ``` Now: Gone.
- Loading branch information