Skip to content

Commit fef35d3

Browse files
committed
fix:logger comments
1 parent f60ffcf commit fef35d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/Utils/Console/BDebug.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
public static class BDebug
66
{
77
//
8-
// Use this to debug log with color and a "title" it's useful so you can search by logs with the same title
8+
// Use this to debug log with color and a "title" it's useful so you can search by logs with the same title;
99
// To check logs related to some class you are testing.
10-
//
10+
//
1111
public static void Log(object message, string title = "Log", Color? color = null){
1212
var c = color == null ? Color.yellow : color.Value;
1313
Debug.Log(string.Format("<color=#{0:X2}{1:X2}{2:X2}><b>{3}</b> || </color>{4}", (byte)(c.r * 255f), (byte)(c.g * 255f), (byte)(c.b * 255f), title, message));

0 commit comments

Comments
 (0)