summaryrefslogtreecommitdiff
path: root/toxcore/tox.api.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxcore/tox.api.h')
-rw-r--r--toxcore/tox.api.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h
index b6f86bf4..0a651c11 100644
--- a/toxcore/tox.api.h
+++ b/toxcore/tox.api.h
@@ -627,23 +627,23 @@ enum class LOG_LEVEL {
627 /** 627 /**
628 * Very detailed traces including all network activity. 628 * Very detailed traces including all network activity.
629 */ 629 */
630 LOG_TRACE, 630 TRACE,
631 /** 631 /**
632 * Debug messages such as which port we bind to. 632 * Debug messages such as which port we bind to.
633 */ 633 */
634 LOG_DEBUG, 634 DEBUG,
635 /** 635 /**
636 * Informational log messages such as video call status changes. 636 * Informational log messages such as video call status changes.
637 */ 637 */
638 LOG_INFO, 638 INFO,
639 /** 639 /**
640 * Warnings about internal inconsistency or logic errors. 640 * Warnings about internal inconsistency or logic errors.
641 */ 641 */
642 LOG_WARNING, 642 WARNING,
643 /** 643 /**
644 * Severe unexpected errors caused by external or internal inconsistency. 644 * Severe unexpected errors caused by external or internal inconsistency.
645 */ 645 */
646 LOG_ERROR, 646 ERROR,
647} 647}
648 648
649/** 649/**