I'm wondering if it's possible to read what's happening in Windows console live and either store it in a log/text file or store as a string of some sort as it runs.
Below is an example of some of the information that is displayed. In this case it's stating what is happening on a django/python webpage it is running:
[27/Feb/2016 14:51:50] "GET /color_liker/static/color_ajax_switch.js HTTP/1.1" 404 1697
[27/Feb/2016 14:51:52] "GET /color_liker/search/?color_search_text=th HTTP/1.1" 200 93
[27/Feb/2016 14:51:53] "GET /color_liker/search/?color_search_text=thi HTTP/1.1" 200 94
[27/Feb/2016 14:51:53] "GET /color_liker/search/?color_search_text=this HTTP/1.1" 200 95
[27/Feb/2016 14:51:54] "GET /color_liker/search/?color_search_text=this HTTP/1.1" 200 95
[27/Feb/2016 14:51:54] "GET /color_liker/search/?color_search_text=this+i HTTP/1.1" 200 97
[27/Feb/2016 14:51:55] "GET /color_liker/search/?color_search_text=this+is HTTP/1.1" 200 98
[27/Feb/2016 14:51:55] "GET /color_liker/search/?color_search_text=this+is HTTP/1.1" 200 98
[27/Feb/2016 14:51:55] "GET /color_liker/search/?color_search_text=this+is+a HTTP/1.1" 200 100
[27/Feb/2016 14:51:56] "GET /color_liker/search/?color_search_text=this+is+a HTTP/1.1" 200 100
[27/Feb/2016 14:51:56] "GET /color_liker/search/?color_search_text=this+is+a+t HTTP/1.1" 200 102
[27/Feb/2016 14:51:57] "GET /color_liker/search/?color_search_text=this+is+a+te HTTP/1.1" 200 103
[27/Feb/2016 14:51:57] "GET /color_liker/search/?color_search_text=this+is+a+tes HTTP/1.1" 200 104
[27/Feb/2016 14:51:58] "GET /color_liker/like_color_3/ HTTP/1.1" 200 46
[27/Feb/2016 14:51:59] "GET /color_liker/like_color_6/ HTTP/1.1" 200 45
[27/Feb/2016 14:52:00] "GET /color_liker/like_color_1/ HTTP/1.1" 200 45
[27/Feb/2016 14:52:01] "GET /color_liker/like_color_2/ HTTP/1.1" 200 45
[27/Feb/2016 14:52:03] "GET /color_liker/search/?color_search_text=this+is+a+test HTTP/1.1" 200 105
Basically, once able to read the file, I'd ideally be able to parse out the information I'm actually looking for, but I'm unsure of how to get to that stage.