Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/logging/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Logging 我需要在我的Elixir应用程序中包含SASL吗?_Logging_Elixir - Fatal编程技术网

Logging 我需要在我的Elixir应用程序中包含SASL吗?

Logging 我需要在我的Elixir应用程序中包含SASL吗?,logging,elixir,Logging,Elixir,在我的Elixir应用程序中,我没有将SASL列为依赖项或extra_应用程序。我是否需要将其包含在某个地方,以便在我的distillery版本中使用它?否,distillery在其生成的每个版本中默认包含多个应用程序。包括SASL。下面是包含基本版本配置的结构的一个片段: ... applications: [ # required for elixir apps :elixir, # included

在我的Elixir应用程序中,我没有将SASL列为依赖项或
extra_应用程序
。我是否需要将其包含在某个地方,以便在我的distillery版本中使用它?

否,distillery在其生成的每个版本中默认包含多个应用程序。包括SASL。下面是包含基本版本配置的结构的一个片段:

        ...
        applications: [
          # required for elixir apps
          :elixir,
          # included so the elixir shell works
          :iex,
          # required for upgrades
          :sasl,
          ...