summaryrefslogtreecommitdiff
path: root/toxcore/tox.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxcore/tox.h')
-rw-r--r--toxcore/tox.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/toxcore/tox.h b/toxcore/tox.h
index c0b7e6b5..d97d94c7 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -742,27 +742,27 @@ typedef enum TOX_LOG_LEVEL {
742 /** 742 /**
743 * Very detailed traces including all network activity. 743 * Very detailed traces including all network activity.
744 */ 744 */
745 TOX_LOG_LEVEL_LOG_TRACE, 745 TOX_LOG_LEVEL_TRACE,
746 746
747 /** 747 /**
748 * Debug messages such as which port we bind to. 748 * Debug messages such as which port we bind to.
749 */ 749 */
750 TOX_LOG_LEVEL_LOG_DEBUG, 750 TOX_LOG_LEVEL_DEBUG,
751 751
752 /** 752 /**
753 * Informational log messages such as video call status changes. 753 * Informational log messages such as video call status changes.
754 */ 754 */
755 TOX_LOG_LEVEL_LOG_INFO, 755 TOX_LOG_LEVEL_INFO,
756 756
757 /** 757 /**
758 * Warnings about internal inconsistency or logic errors. 758 * Warnings about internal inconsistency or logic errors.
759 */ 759 */
760 TOX_LOG_LEVEL_LOG_WARNING, 760 TOX_LOG_LEVEL_WARNING,
761 761
762 /** 762 /**
763 * Severe unexpected errors caused by external or internal inconsistency. 763 * Severe unexpected errors caused by external or internal inconsistency.
764 */ 764 */
765 TOX_LOG_LEVEL_LOG_ERROR, 765 TOX_LOG_LEVEL_ERROR,
766 766
767} TOX_LOG_LEVEL; 767} TOX_LOG_LEVEL;
768 768