degCol: Logger for storing degree of colocation

degCol: logger
This commit is contained in:
Akash Kothawale 2018-02-02 19:15:48 -05:00 committed by Pradyumna Kaushik
parent b58ffdbdd6
commit abadb9a328
5 changed files with 26 additions and 0 deletions

View file

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