Model.OpcodeHelper.IsNeedDebugLogMessage C# (CSharp) Méthode

IsNeedDebugLogMessage() public static méthode

public static IsNeedDebugLogMessage ( ushort opcode ) : bool
opcode ushort
Résultat bool
		public static bool IsNeedDebugLogMessage(ushort opcode)
		{
			//return true;
			if (opcode > 1000)
			{
				return true;
			}

			if (needDebugLogMessageSet.Contains(opcode))
			{
				return true;
			}

			return false;
		}
	}