diff options
author | Tristan Sloughter <[email protected]> | 2013-09-28 11:56:32 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2013-09-28 16:26:00 -0500 |
commit | 3fc8e0408cd27e15fdfbd3711c6ab18140745c86 (patch) | |
tree | f18af1a207aa2964e49085081a6dcc4f06c2ac10 /include/relx.hrl | |
parent | 8a60327694646893729cde1708be4f507beceae0 (diff) | |
download | relx-3fc8e0408cd27e15fdfbd3711c6ab18140745c86.tar.gz relx-3fc8e0408cd27e15fdfbd3711c6ab18140745c86.tar.bz2 relx-3fc8e0408cd27e15fdfbd3711c6ab18140745c86.zip |
warn, not error, on bad app during discovery provider
Diffstat (limited to 'include/relx.hrl')
-rw-r--r-- | include/relx.hrl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/relx.hrl b/include/relx.hrl index 4b78ca6..ee575a2 100644 --- a/include/relx.hrl +++ b/include/relx.hrl @@ -17,8 +17,9 @@ %% -define(RLX_ERROR, 0). --define(RLX_INFO, 1). --define(RLX_DEBUG, 2). +-define(RLX_WARN, 1). +-define(RLX_INFO, 2). +-define(RLX_DEBUG, 3). %% This is the default form of error messages for the Relx %% system. It is expected that everything that returns an error use |