From 70090131134baae6a7efaf2ceba1734e514a6a8a Mon Sep 17 00:00:00 2001 From: Eric Khun Date: Tue, 3 Mar 2020 08:48:08 +0000 Subject: [PATCH 1/6] update readme for level description --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bc96fbc..4916061 100644 --- a/README.md +++ b/README.md @@ -51,9 +51,9 @@ If you wish to see more logs, simply set the `LOG_LEVEL` to the desired level. H | Levels | Use case | Examples | |:-:|---|---| -| DEBUG | Logs that are used for interactive investigation during development. These logs should primarily contain information useful for debugging and have no long-term value. | | -| INFO | Informational messages | | -| NOTICE | Logs that track the general flow of the application. This is the default level | | -| WARNING | Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the application execution to stop. | | -| ERROR | Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a failure in the current activity, not an application-wide failure. | | -| CRITICAL | Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires immediate attention. | | +| DEBUG | Detailed debug information. Used for interactive investigation during development. Should primarily contain information useful for debugging and have no long-term value. | | +| INFO | Interesting events. Track the general flow of the application. | User logs in, SQL logs. | +| NOTICE | Uncommon events. This is the default verbosity level | | +| WARNING | Exceptional occurrences that are not errors. | Use of deprecated APIs, poor use of an API, undesirable things that are not necessarily wrong. | +| ERROR | Runtime errors. Highlight when the current flow of execution is stopped due to a failure. | | +| CRITICAL | Critical conditions. Describe an unrecoverable application, system crash, or a catastrophic failure that requires immediate attention. | Application component unavailable, unexpected exception. Entire website down, database unavailable, etc.| From 55f22141dd519ff00a56faba0246fa253ba5ef52 Mon Sep 17 00:00:00 2001 From: Eric Khun Date: Tue, 3 Mar 2020 08:58:44 +0000 Subject: [PATCH 2/6] update readme for level description --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4916061..3f52a00 100644 --- a/README.md +++ b/README.md @@ -51,9 +51,9 @@ If you wish to see more logs, simply set the `LOG_LEVEL` to the desired level. H | Levels | Use case | Examples | |:-:|---|---| -| DEBUG | Detailed debug information. Used for interactive investigation during development. Should primarily contain information useful for debugging and have no long-term value. | | +| DEBUG | Detailed debug information. Used for interactive investigation during development. Contain information useful for debugging and have no long-term value. | | | INFO | Interesting events. Track the general flow of the application. | User logs in, SQL logs. | -| NOTICE | Uncommon events. This is the default verbosity level | | -| WARNING | Exceptional occurrences that are not errors. | Use of deprecated APIs, poor use of an API, undesirable things that are not necessarily wrong. | -| ERROR | Runtime errors. Highlight when the current flow of execution is stopped due to a failure. | | -| CRITICAL | Critical conditions. Describe an unrecoverable application, system crash, or a catastrophic failure that requires immediate attention. | Application component unavailable, unexpected exception. Entire website down, database unavailable, etc.| +| NOTICE | Uncommon events. **This is the default verbosity level**. | Missing variables environment. | +| WARNING | Exceptional occurrences that are not errors. Undesirable things that are not necessarily wrong. | Use of deprecated APIs, poor use of an API, Unauthorized access. | +| ERROR | Runtime errors. Highlight when the current flow of execution is stopped due to a failure. | | +| CRITICAL | Critical conditions. Describe an unrecoverable application, system crash, or a catastrophic failure that requires immediate attention. | Application component unavailable, unexpected exception. entire website down, database unavailable, etc.| From adbf4f64cf16b995b145db2e0cc0619ff8b1dc66 Mon Sep 17 00:00:00 2001 From: Eric Khun Date: Tue, 3 Mar 2020 09:03:07 +0000 Subject: [PATCH 3/6] update readme for level description --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f52a00..1ebb650 100644 --- a/README.md +++ b/README.md @@ -51,9 +51,9 @@ If you wish to see more logs, simply set the `LOG_LEVEL` to the desired level. H | Levels | Use case | Examples | |:-:|---|---| -| DEBUG | Detailed debug information. Used for interactive investigation during development. Contain information useful for debugging and have no long-term value. | | +| DEBUG | Information used for interactive investigation, with no long-term value.| Printing function names, steps inside a function. | | INFO | Interesting events. Track the general flow of the application. | User logs in, SQL logs. | | NOTICE | Uncommon events. **This is the default verbosity level**. | Missing variables environment. | | WARNING | Exceptional occurrences that are not errors. Undesirable things that are not necessarily wrong. | Use of deprecated APIs, poor use of an API, Unauthorized access. | -| ERROR | Runtime errors. Highlight when the current flow of execution is stopped due to a failure. | | +| ERROR | Runtime errors. Highlight when the current flow of execution is stopped due to a failure. | Exceptions messages, incorect credentials or permissions | | CRITICAL | Critical conditions. Describe an unrecoverable application, system crash, or a catastrophic failure that requires immediate attention. | Application component unavailable, unexpected exception. entire website down, database unavailable, etc.| From cf6a629a0052ae568a2833df20d0f2b2f008eef8 Mon Sep 17 00:00:00 2001 From: Eric Khun Date: Tue, 3 Mar 2020 09:13:20 +0000 Subject: [PATCH 4/6] update readme for level description --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1ebb650..f7ef6e9 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ If you wish to see more logs, simply set the `LOG_LEVEL` to the desired level. H |:-:|---|---| | DEBUG | Information used for interactive investigation, with no long-term value.| Printing function names, steps inside a function. | | INFO | Interesting events. Track the general flow of the application. | User logs in, SQL logs. | -| NOTICE | Uncommon events. **This is the default verbosity level**. | Missing variables environment. | -| WARNING | Exceptional occurrences that are not errors. Undesirable things that are not necessarily wrong. | Use of deprecated APIs, poor use of an API, Unauthorized access. | -| ERROR | Runtime errors. Highlight when the current flow of execution is stopped due to a failure. | Exceptions messages, incorect credentials or permissions | -| CRITICAL | Critical conditions. Describe an unrecoverable application, system crash, or a catastrophic failure that requires immediate attention. | Application component unavailable, unexpected exception. entire website down, database unavailable, etc.| +| NOTICE | Uncommon events. **This is the default verbosity level**. | Missing environment variables, Page redirection, pod starting/restarting/terminating, retrying to query an API... | +| WARNING | Exceptional occurrences that are not errors. Undesirable things that are not necessarily wrong. | Use of deprecated APIs, poor use of an API, unauthorized access... | +| ERROR | Runtime errors. Highlight when the current flow of execution is stopped due to a failure. | Exceptions messages, incorect credentials or permissions... | +| CRITICAL | Critical conditions. Describe an unrecoverable application, system crash, or a catastrophic failure that requires immediate attention. | Application component unavailable, unexpected exception. entire website down, database unavailable ...| From 071b71665bcdcfbb1c16854a1340596c8fbec0e0 Mon Sep 17 00:00:00 2001 From: Eric Khun Date: Tue, 3 Mar 2020 09:14:23 +0000 Subject: [PATCH 5/6] update readme for level description --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f7ef6e9..701c6a8 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ If you wish to see more logs, simply set the `LOG_LEVEL` to the desired level. H |:-:|---|---| | DEBUG | Information used for interactive investigation, with no long-term value.| Printing function names, steps inside a function. | | INFO | Interesting events. Track the general flow of the application. | User logs in, SQL logs. | -| NOTICE | Uncommon events. **This is the default verbosity level**. | Missing environment variables, Page redirection, pod starting/restarting/terminating, retrying to query an API... | -| WARNING | Exceptional occurrences that are not errors. Undesirable things that are not necessarily wrong. | Use of deprecated APIs, poor use of an API, unauthorized access... | +| NOTICE | Uncommon events. **This is the default verbosity level**. | Missing environment variables, page redirection, pod starting/restarting/terminating, retrying to query an API... | +| WARNING | Exceptional occurrences that are not errors. Undesirable things that are not necessarily wrong. | Use of deprecated APIs, poor use of an API, unauthorized access, pod restart because of memory limit ... | | ERROR | Runtime errors. Highlight when the current flow of execution is stopped due to a failure. | Exceptions messages, incorect credentials or permissions... | | CRITICAL | Critical conditions. Describe an unrecoverable application, system crash, or a catastrophic failure that requires immediate attention. | Application component unavailable, unexpected exception. entire website down, database unavailable ...| From 17ffed3af32baaf0f36f876938e3c823918b2ef6 Mon Sep 17 00:00:00 2001 From: Eric Khun Date: Tue, 3 Mar 2020 09:19:56 +0000 Subject: [PATCH 6/6] update readme for level description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 701c6a8..505d7c6 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ If you wish to see more logs, simply set the `LOG_LEVEL` to the desired level. H | Levels | Use case | Examples | |:-:|---|---| | DEBUG | Information used for interactive investigation, with no long-term value.| Printing function names, steps inside a function. | -| INFO | Interesting events. Track the general flow of the application. | User logs in, SQL logs. | +| INFO | Interesting events. Track the general flow of the application. | User logs in, SQL logs, worker process/delete a message... | | NOTICE | Uncommon events. **This is the default verbosity level**. | Missing environment variables, page redirection, pod starting/restarting/terminating, retrying to query an API... | | WARNING | Exceptional occurrences that are not errors. Undesirable things that are not necessarily wrong. | Use of deprecated APIs, poor use of an API, unauthorized access, pod restart because of memory limit ... | | ERROR | Runtime errors. Highlight when the current flow of execution is stopped due to a failure. | Exceptions messages, incorect credentials or permissions... |