mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-27 22:11:39 +00:00
15 lines
321 B
C#
15 lines
321 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class LoggerInit : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
OpenMetaverse.Logger.Log("First log. Logger.Log is working.", OpenMetaverse.Helpers.LogLevel.Info);
|
|
|
|
}
|
|
}
|
|
|