File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
* Enhancements
6
6
* [ Elixir] Support Erlang 17.5 and 18.0
7
+ * [ Mix] Support "--search PATTERN" in "mix help"
8
+ * [ Mix] Support ` :start_permanent ` that starts the application as permanent
9
+ * [ Mix] Support ` :build_embedded ` that compile protocols, avoid symlinks and ensure protocols are loaded on boot
10
+ * [ Mix] Make "mix app.start" public and support "--permanent" and "--temporary" options
7
11
* [ URI] Speed decoding operations
8
12
9
13
* Bug fixes
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ defmodule Mix.Tasks.App.Start do
56
56
# or not.
57
57
#
58
58
# Mix should not depend directly on Logger so check that it's loaded.
59
- if Code . ensure_loaded? ( Logger ) , do: Logger.App . stop ( )
59
+ if Process . whereis ( Logger ) , do: Logger.App . stop ( )
60
60
start ( Mix.Project . config , opts )
61
61
end
62
62
end
You can’t perform that action at this time.
0 commit comments