Skip to content

Commit bafbbc0

Browse files
committed
dddd
1 parent 5fb8dbf commit bafbbc0

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

jumpgate/identity/drivers/sl/versions.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
import falcon
2+
import logging
3+
4+
LOG = logging.getLogger(__name__)
5+
LOG.setLevel('INFO')
6+
LOG.addHandler(logging.StreamHandler())
27

38

49
class Versions(object):
510
def __init__(self, disp):
611
self.disp = disp
712

813
def on_get(self, req, resp):
14+
LOG.info('GOT HERE VERSION')
15+
916
resp.status = falcon.HTTP_300
1017
resp.body = {
1118
'versions': {
@@ -78,4 +85,7 @@ def on_get(self, req, resp):
7885
}
7986
]
8087
}
88+
8189
}
90+
LOG.info('GOT HERE VERSION EXIT')
91+

0 commit comments

Comments
 (0)