Logger.log

Logs using the default context an arbitrary amount of arguments

  1. void log(string text, string c1, string c2, ulong c3, string c4, string c5, string c6)
  2. void log(TextType segments, string c1, string c2, ulong c3, string c4, string c5, string c6)
    class Logger
    public final
    void
    log
    (
    TextType...
    )
    (
    TextType segments
    ,
    string c1 = __FILE_FULL_PATH__
    ,
    string c2 = __FILE__
    ,
    ulong c3 = __LINE__
    ,
    string c4 = __MODULE__
    ,
    string c5 = __FUNCTION__
    ,
    string c6 = __PRETTY_FUNCTION__
    )

Parameters

segments TextType

the arbitrary argumnets (alias sequence)

Meta