1e7fff0133
- Renames s_assemble to s_brief - Link s_local to s_brief
12 lines
211 B
Python
12 lines
211 B
Python
# third-party imports
|
|
import celery
|
|
import logging
|
|
|
|
celery_app = celery.current_app
|
|
logg = logging.getLogger()
|
|
|
|
|
|
@celery_app.task()
|
|
def log_it_plz(whatever):
|
|
logg.info('logged it plz: {}'.format(whatever))
|