-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix extraneous logging in test (#317)
* Disabled logging in test I have no idea why logs are appearing with the compile-time config. I had to resort to calling Logger.configure() in test.exs. Something is up. Fixes #297 * Extraneous logging releated fixes * Removed import from config.exs * Handled default case for ports exiting, which was causing a log message * Added lexical_test to plugin_runner's deps so we can run tests in its app directory
- Loading branch information
Showing
5 changed files
with
15 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import Config | ||
alias Lexical.Server.JsonRpc.Backend, as: JsonRpcBackend | ||
|
||
import_config("#{Mix.env()}.exs") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import Config | ||
|
||
Logger.remove_backend(:console) | ||
config :logger, level: :error | ||
config :logger, level: :none |