I would like to modify the scrapy log messages to contain user id at the beginning of it. for example, instead of this
2015-03-03 17:09:34+0530 [scrapy] INFO: Enabled spider middlewares: HttpErrorMiddleware, OffsiteMiddleware, RefererMiddleware, UrlLengthMiddleware, DepthMiddleware
Is it possible to make it appear like
**user_id**:2015-03-03 17:09:34+0530 [scrapy] INFO: Enabled spider middlewares: HttpErrorMiddleware, OffsiteMiddleware, RefererMiddleware, UrlLengthMiddleware, DepthMiddleware
Additionaly, is there a way to log only the user messages; i.e, Log only the messages I want logged which I will supply from the code?
Any help would be greatly appreciated. Thanks in advance!