ExBuddy.Logging.Logger.Verbose C# (CSharp) Method

Verbose() public method

public Verbose ( string message ) : void
message string
return void
		public void Verbose(string message)
		{
			if (ExBuddySettings.Instance.VerboseLogging)
			{
				Logging.WriteVerbose(logColors.Info, Prefix + message);
			}
		}

Usage Example

Ejemplo n.º 1
0
		public FlightEnabledNavigator(
			INavigationProvider innerNavigator,
			IFlightEnabledPlayerMover playerMover,
			IFlightNavigationArgs flightNavigationArgs)
		{
			logger = new Logger(this);
			this.innerNavigator = innerNavigator;
			this.playerMover = playerMover;
			this.flightNavigationArgs = flightNavigationArgs;
			Navigator.NavigationProvider = this;
			CurrentPath = new FlightPath(Vector3.Zero, Vector3.Zero, flightNavigationArgs);

			logger.Verbose(Localization.Localization.FlightEnabledNavigator_Enabled);
		}
All Usage Examples Of ExBuddy.Logging.Logger::Verbose