summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toxcore/tox.api.h10
-rw-r--r--toxcore/tox.h10
2 files changed, 10 insertions, 10 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/**
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