ChivoxAILogLevel.h
493 Bytes
//
// ChivoxAILogLevel.h
// CAIEngine
//
// Created by chivox on 2019/11/20.
// Copyright © 2019 chivox. All rights reserved.
//
#ifndef ChivoxAILogLevel_h
#define ChivoxAILogLevel_h
enum {
kChivoxAILogLevelDebug = 0, // 调试信息
kChivoxAILogLevelInfo = 1, // 普通信息
kChivoxAILogLevelNoti = 2, // 注意信息
kChivoxAILogLevelWarn = 3, // 警告信息
kChivoxAILogLevelError = 4, // 错误信息
};
#endif /* ChivoxAILogLevel_h */