PorkStudios / PorkLib

Fast, lightweight libraries for Java. Note: this is very much a work-in-progress, documentation is spotty and the API is changing constantly!
https://daporkchop.net
Other
31 stars 5 forks source link

Custom stdout logger channel name #59

Open RemainingToast opened 2 years ago

RemainingToast commented 2 years ago

could you make redirectStdOut have changeable channel name? like this

public DefaultLogger redirectStdOut(String channelName) {
        ...
                Logger fakeLogger = this.channel(channelName);
        ...
}

image