summaryrefslogtreecommitdiff
path: root/toxcore/tox.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-11-06 19:54:34 +0000
committeriphydf <iphydf@users.noreply.github.com>2016-11-06 19:54:34 +0000
commitfcc8ad943e93308b7048c4e0071ae00b54804934 (patch)
treea9fefc8d47650a8b5170297a9f7d1520eef830b3 /toxcore/tox.h
parent5019a5aaf9b6e927e7b56b0f808efc01ba62d66a (diff)
Rename log levels to remove the extra "LOG" prefix.
`TOX_LOG_LEVEL_LOG_TRACE` => `TOX_LOG_LEVEL_TRACE`.
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