注释log

main
xiaohang 2023-10-18 10:17:44 +08:00
parent a6cd2af2d0
commit cceee2b05a
1 changed files with 7 additions and 7 deletions

View File

@ -49,7 +49,7 @@ namespace DofLibrary
}
};
Send(playerEnter);
Debug.Log("PlayerEnter message sent");
//Debug.Log("PlayerEnter message sent");
}
public void LevelPrepared(string levelId)
@ -63,7 +63,7 @@ namespace DofLibrary
}
};
Send(message);
Debug.Log("LevelPrepared message sent");
//Debug.Log("LevelPrepared message sent");
}
public void PointFound(string levelId, int pointId, float combo)
@ -79,7 +79,7 @@ namespace DofLibrary
}
};
Send(message);
Debug.Log("PointFound message sent");
//Debug.Log("PointFound message sent");
}
public void LevelEnd(string levelId)
@ -93,7 +93,7 @@ namespace DofLibrary
}
};
Send(message);
Debug.Log("LevelEnd message sent");
//Debug.Log("LevelEnd message sent");
}
public void AllLevelEnd(float timeSpent)
@ -107,7 +107,7 @@ namespace DofLibrary
}
};
Send(message);
Debug.Log("AllLevelEnd message sent");
//Debug.Log("AllLevelEnd message sent");
}
public void PlayerLeave()
@ -120,7 +120,7 @@ namespace DofLibrary
}
};
Send(message);
Debug.Log("PlayerLeave message sent");
//Debug.Log("PlayerLeave message sent");
}
public void Heartbeat(long timestamp)
@ -133,7 +133,7 @@ namespace DofLibrary
}
};
Send(message);
Debug.Log("Heartbeat message sent");
//Debug.Log("Heartbeat message sent");
}
private void Send(ClientMessage message)