Skip to content
This repository has been archived by the owner on Sep 28, 2021. It is now read-only.

Commit

Permalink
Properly setup logging directories.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeiklejohn committed Nov 25, 2017
1 parent b433ce2 commit 8610129
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simulations/lasp_simulation_support.erl
Expand Up @@ -51,7 +51,7 @@ run(Case, Config, Options) ->
).

%% @private
start(_Case, _Config, Options) ->
start(Case, _Config, Options) ->
%% Launch distribution for the test runner.
ct:pal("Launching Erlang distribution..."),

Expand Down Expand Up @@ -97,7 +97,7 @@ start(_Case, _Config, Options) ->
ct:pal("Loading lasp on node: ~p", [Node]),

PrivDir = code:priv_dir(?APP),
NodeDir = filename:join([PrivDir, "lager", Node]),
NodeDir = filename:join([PrivDir, "lager", Case, Node]),

%% Manually force sasl loading, and disable the logger.
ok = rpc:call(Node, application, load, [sasl]),
Expand Down

0 comments on commit 8610129

Please sign in to comment.