Skip to content

Commit

Permalink
logging try aws-samples#4
Browse files Browse the repository at this point in the history
  • Loading branch information
manbearshark committed Oct 2, 2022
1 parent 62341f9 commit c138d92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/recommendations/src/recommendations-service/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1033,8 +1033,8 @@ def experiment_outcome():
amplitude_rec_id = os.environ.get('AMPLITUDE_RECOMMENDATION_ID', 'NONE')
amplitude_secret_key = os.environ.get('AMPLITUDE_SECRET_KEY', 'NONE')

logging.info('ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ')
logging.info(f'amp id: {amplitude_rec_id}')
logging.info(f'amp secret: {amplitude_secret_key}')
app.logger.debug('ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ')
app.logger.debug(f'amp id: {amplitude_rec_id}')
app.logger.debug(f'amp secret: {amplitude_secret_key}')

app.run(debug=True, host='0.0.0.0', port=80)

0 comments on commit c138d92

Please sign in to comment.