Skip to content

Commit

Permalink
Merge pull request #74 from paynl/feature/PLUG-1356
Browse files Browse the repository at this point in the history
PLUG-1320 - Make logging options clearer
  • Loading branch information
woutse authored Oct 19, 2022
2 parents 06a6ed7 + 586658e commit 0b6e686
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Model/Config/Source/LogOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public function toOptionArray()
public function toArray()
{
return [
self::LOG_NONE => __('None'),
self::LOG_ONLY_CRITICAL => __('Only critical'),
self::LOG_CRITICAL_NOTICE => __('Critical + Notice'),
self::LOG_ALL => __('All'),
self::LOG_NONE => __('No logging'),
self::LOG_ONLY_CRITICAL => __('Only Critical errors are logged'),
self::LOG_CRITICAL_NOTICE => __('Only Critical errors and Notices are logged'),
self::LOG_ALL => __('Everything is logged, including Critical, Notice, Info and Debug'),
];
}
}
4 changes: 4 additions & 0 deletions i18n/nl_NL.csv
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,7 @@
"PAY.: Unable to send E-mail", "PAY.: Kan geen e-mail verzenden"
"PAY.: Customer E-mail is empty cannot send E-mail.", "PAY.: E-mail klant is leeg kan geen e-mail verzenden."
"Payment pending","Betaling in behandeling"
"No logging","Geen logging"
"Only Critical errors are logged","Alleen kritieke fouten worden gelogd"
"Only Critical errors and Notices are logged","Alleen kritieke fouten en waarschuwingen worden gelogd"
"Everything is logged, including Critical, Notice, Info and Debug","Alles wordt gelogd, inclusief kritieke fouten, waarschuwingen, informatie en debugging"

0 comments on commit 0b6e686

Please sign in to comment.