adding debug to mock plpy

This commit is contained in:
Andy Eschbacher 2016-05-25 11:03:58 -04:00
parent c44434ef08
commit 7a1eb6b9b6

View File

@ -24,6 +24,9 @@ class MockPlPy:
def notice(self, msg): def notice(self, msg):
self.notices.append(msg) self.notices.append(msg)
def debug(self, msg):
self.notices.append(msg)
def info(self, msg): def info(self, msg):
self.infos.append(msg) self.infos.append(msg)