sandbox/drawings/lead/styleguide_logging.puml
2025-01-29 15:31:44 +03:00

20 lines
No EOL
642 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@startuml
start
if (Для кого я пишу лог?) then (Для разработчиков)
:DEBUG;
stop
else (Для системных операторов)
if (Я пишу лог\nпотому-что получено\nнежелательное состояние системы?) then (Да)
if (Может процесс продолжить\nвыполнение с\nнежелательным состоянием?) then (Да)
:WARNING;
stop
else (Нет)
:ERROR;
stop
endif
else (Нет)
:INFO;
stop
endif
endif
@enduml