Debug.cpp 362 B

1234567891011121314151617181920212223
  1. #include "il2cpp-config.h"
  2. #if IL2CPP_TARGET_LUMIN
  3. #include "os/Debug.h"
  4. #include "utils/StringUtils.h"
  5. #include "ml_logging.h"
  6. #define TAG "IL2CPP"
  7. namespace il2cpp
  8. {
  9. namespace os
  10. {
  11. void Debug::WriteString(const utils::StringView<Il2CppNativeChar>& message)
  12. {
  13. ML_LOG_TAG(Debug, TAG, message.Str());
  14. }
  15. }
  16. }
  17. #endif // IL2CPP_TARGET_LUMIN