diff options
-rw-r--r-- | HACKERS | 9 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | core/loggingmanager.lua | 1 |
3 files changed, 9 insertions, 3 deletions
@@ -1,5 +1,10 @@ Welcome hackers! -This project accepts and *encourages* contributions. If you would like to get involved you can join us on our mailing list and discussion rooms. More information on these at http://prosody.im/discuss +This project accepts and *encourages* contributions. If you would like to get +involved you can join us on our mailing list and discussion rooms. More +information on these at http://prosody.im/discuss -Patches are welcome, though before sending we would appreciate if you read docs/coding_style.txt for guidelines on how to format your code, and are comfortable with copyright of contributions being assigned to the core developers. +Patches are welcome, though before sending we would appreciate if you read +docs/coding_style.txt for guidelines on how to format your code, and are +comfortable with copyright of contributions being assigned to the core +developers. @@ -86,7 +86,7 @@ do OSTYPE="$value" OSTYPE_SET=yes ;; - --data-dir=*) + --datadir=*) DATADIR="$value" DATADIR_SET=yes ;; diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua index 13b091cc..ea0f497d 100644 --- a/core/loggingmanager.lua +++ b/core/loggingmanager.lua @@ -122,6 +122,7 @@ end --- Definition of built-in logging sinks --- +-- Null sink, must enter log_sink_types *first* function log_sink_types.nowhere() return function () return false; end; end |