Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/ui/src/app/mocks/settings.mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const MOCK_INTERFACE_VALUE: SystemInterfaces = {
};
export const MOCK_LOG_VALUE: SystemInterfaces = {
key: 'DEBUG',
value: '',
value: 'Every event will be logged',
};

export const MOCK_PERIOD_VALUE: SystemInterfaces = {
Expand Down
2 changes: 1 addition & 1 deletion modules/ui/src/app/pages/settings/settings.store.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ describe('SettingsStore', () => {
});
expect((form.get(FormKey.LOG_LEVEL) as FormControl).value).toEqual({
key: 'INFO',
value: '',
value: 'Normal events and issues',
});
expect(
(form.get(FormKey.MONITOR_PERIOD) as FormControl).value
Expand Down
10 changes: 5 additions & 5 deletions modules/ui/src/app/pages/settings/settings.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ export const DEFAULT_INTERNET_OPTION = {
};

export const LOG_LEVELS = {
DEBUG: '',
INFO: '',
WARNING: '',
ERROR: '',
CRITICAL: '',
DEBUG: 'Every event will be logged',
INFO: 'Normal events and issues',
WARNING: 'Warnings, errors, critical issues',
ERROR: 'Errors and critical problems',
CRITICAL: 'Critical problems',
};

export const MONITORING_PERIOD = {
Expand Down