104 lines
3.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*******************************************************************************
Copyright © 2015-2022 PICO Technology Co., Ltd.All rights reserved.
NOTICEAll information contained herein is, and remains the property of
PICO Technology Co., Ltd. The intellectual and technical concepts
contained hererin are proprietary to PICO Technology Co., Ltd. and may be
covered by patents, patents in process, and are protected by trade secret or
copyright law. Dissemination of this information or reproduction of this
material is strictly forbidden unless prior written permission is obtained from
PICO Technology Co., Ltd.
*******************************************************************************/
#if UNITY_ANDROID && !UNITY_EDITOR
using System.Runtime.InteropServices;
#endif
using UnityEngine;
namespace Unity.XR.OpenXR.Features.PICOSupport
{
public class PLog
{
public static string TAG = "[PoxrUnity] ";
// 7--all print, 4--info to fatal, 3--warning to fatal,
// 2--error to fatal, 1--only fatal print
public static LogLevel logLevel = LogLevel.LogInfo;
public enum LogLevel
{
LogFatal = 1,
LogError = 2,
LogWarn = 3,
LogInfo = 4,
LogDebug = 5,
LogVerbose,
}
public static void v(string message)
{
v(TAG,message);
}
public static void d(string message)
{
d(TAG,message);
}
public static void i(string message)
{
i(TAG,message);
}
public static void w(string message)
{
w(TAG,message);
}
public static void e(string message)
{
e(TAG,message);
}
public static void f(string message)
{
f(TAG,message);
}
public static void v(string tag,string message)
{
if (LogLevel.LogVerbose <= logLevel)
Debug.Log(string.Format("{0} FrameID={1}>>>>>>{2}", TAG, Time.frameCount, message));
}
public static void d(string tag,string message)
{
if (LogLevel.LogDebug <= logLevel)
Debug.Log(string.Format("{0} FrameID={1}>>>>>>{2}", TAG, Time.frameCount, message));
}
public static void i(string tag,string message)
{
if (LogLevel.LogInfo <= logLevel)
Debug.Log(string.Format("{0} FrameID={1}>>>>>>{2}", TAG, Time.frameCount, message));
}
public static void w(string tag,string message)
{
if (LogLevel.LogWarn <= logLevel)
Debug.LogWarning(string.Format("{0} FrameID={1}>>>>>>{2}", TAG, Time.frameCount, message));
}
public static void e(string tag,string message)
{
if (LogLevel.LogError <= logLevel)
Debug.LogError(string.Format("{0} FrameID={1}>>>>>>{2}", TAG, Time.frameCount, message));
}
public static void f(string tag,string message)
{
if (LogLevel.LogFatal <= logLevel)
Debug.LogError(string.Format("{0} FrameID={1}>>>>>>{2}", TAG, Time.frameCount, message));
}
}
}