Merged in akash/LogPolicySwitch (pull request #4)

Scheduling Policy Switch Logger

Approved-by: Pradyumna Kaushik <pkaushi1@binghamton.edu>
This commit is contained in:
Akash Kothawale 2018-02-11 13:11:42 +00:00 committed by Pradyumna Kaushik
parent 3fa4a45ca7
commit b1bd21f730
11 changed files with 94 additions and 4 deletions

View file

@ -0,0 +1,9 @@
package logging
type SchedPolicySwitchLogger struct {
loggerObserverImpl
}
func (pl *SchedPolicySwitchLogger) Log(message string) {
pl.logObserverSpecifics[spsLogger].logFile.Println(message)
}