diff --git a/.vs/Socioboard/v14/.suo b/.vs/Socioboard/v14/.suo index ed4f06057..d8076e02c 100644 Binary files a/.vs/Socioboard/v14/.suo and b/.vs/Socioboard/v14/.suo differ diff --git a/src/Api.Socioboard/Controllers/GroupProfilesController.cs b/src/Api.Socioboard/Controllers/GroupProfilesController.cs index 327b3146a..7b348da9f 100644 --- a/src/Api.Socioboard/Controllers/GroupProfilesController.cs +++ b/src/Api.Socioboard/Controllers/GroupProfilesController.cs @@ -77,6 +77,13 @@ public IActionResult DeleteProfile(long groupId, long userId, string profileId) return Ok(GroupProfilesRepository.DeleteProfile(groupId, userId, profileId, _redisCache, dbr, _appSettings)); } + [HttpPost("IsPrimaryAcc")] + public IActionResult IsPrimaryAcc(long userId, string profileId) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + return Ok(GroupProfilesRepository.IsPrimaryAccount(userId, profileId, dbr, _appSettings)); + } + [HttpPost("AddSelectedProfiles")] public IActionResult AddSelectedProfiles(long groupId, long userId) { diff --git a/src/Api.Socioboard/Controllers/InstagramController.cs b/src/Api.Socioboard/Controllers/InstagramController.cs index d838e7ffd..7936170f6 100644 --- a/src/Api.Socioboard/Controllers/InstagramController.cs +++ b/src/Api.Socioboard/Controllers/InstagramController.cs @@ -226,5 +226,24 @@ public IActionResult DeleteinstagramFeed(string profileId, string FeedId) _DeleteistagramFeeds.Delete(filter); return Ok(); } + + [HttpGet("Searchinsta")] + public IActionResult Searchinsta(string instagramId, string qury,string count) + { + count = "1"; + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + string Searchdata = Repositories.InstagramRepository.Searchbyname(qury, instagramId, count, _appSettings, _redisCache, dbr); + return Ok(Searchdata); + + } + + [HttpPost("followpeople")] + public IActionResult followpeople(string instagramId ,string followingid) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + string Searchdata = Repositories.InstagramRepository.Followpeople( instagramId, followingid, _appSettings, _redisCache, dbr); + return Ok(Searchdata); + + } } } diff --git a/src/Api.Socioboard/Controllers/NotificationsController.cs b/src/Api.Socioboard/Controllers/NotificationsController.cs index 5c4690631..462e2501f 100644 --- a/src/Api.Socioboard/Controllers/NotificationsController.cs +++ b/src/Api.Socioboard/Controllers/NotificationsController.cs @@ -138,5 +138,8 @@ public IActionResult UpdateNotifications(long userId) } + + + } } diff --git a/src/Api.Socioboard/Repositories/FacebookRepository.cs b/src/Api.Socioboard/Repositories/FacebookRepository.cs index 00a716b68..612540ee5 100644 --- a/src/Api.Socioboard/Repositories/FacebookRepository.cs +++ b/src/Api.Socioboard/Repositories/FacebookRepository.cs @@ -1676,8 +1676,8 @@ public static List FbPostComments(string postid, dynamic pos List lstfacebookfeed = new List(); MongoRepository mongorepo = new MongoRepository("MongoFacebookFeed", settings); var builder = Builders.Sort; - var sort = builder.Descending(t => t.EntryDate); - var result = mongorepo.FindWithRange(t => t.ProfileId.Equals(profileId), sort, skip, count); + var sort = builder.Descending(t => t.FeedDate); + var result = mongorepo.FindWithRange(t => t.ProfileId.Equals(profileId), sort, skip, 20); var task = Task.Run(async () => { return await result; diff --git a/src/Api.Socioboard/Repositories/GroupProfilesRepository.cs b/src/Api.Socioboard/Repositories/GroupProfilesRepository.cs index 9dd9c8ead..4b8f88665 100644 --- a/src/Api.Socioboard/Repositories/GroupProfilesRepository.cs +++ b/src/Api.Socioboard/Repositories/GroupProfilesRepository.cs @@ -444,6 +444,32 @@ public static string DeleteProfile(long groupId, long userId, string profileId, } } + public static string IsPrimaryAccount(long userId, string profileId, Model.DatabaseRepository dbr, Helper.AppSettings _appSettings) + { + Domain.Socioboard.Models.User user = new User(); + Domain.Socioboard.Models.Facebookaccounts fbAcc = dbr.Find(t => t.FbUserId.Equals(profileId) && t.UserId == userId && t.IsActive).FirstOrDefault(); + try + { + user = dbr.Find(t => t.Id.Equals(userId) && t.EmailId == fbAcc.EmailId && t.EmailValidateToken == "Facebook").FirstOrDefault(); + + } + catch (Exception ex) + { + + } + if (user != null) + { + + return "Primary Account"; + } + else + { + return "Not Primary Account"; + } + + } + + public static List SearchProfileType(long groupId, string Profiletype, Helper.Cache _redisCache, Model.DatabaseRepository dbr) { try diff --git a/src/Api.Socioboard/Repositories/InstagramRepository.cs b/src/Api.Socioboard/Repositories/InstagramRepository.cs index 6060d3285..b1b79f4ce 100644 --- a/src/Api.Socioboard/Repositories/InstagramRepository.cs +++ b/src/Api.Socioboard/Repositories/InstagramRepository.cs @@ -8,6 +8,7 @@ using Socioboard.Instagram.App.Core; using Socioboard.Instagram.Authentication; using Socioboard.Instagram.Instagram.Core.MediaMethods; +using Socioboard.Instagram.Instagram.Core.RelationshipMethods; using Socioboard.Instagram.Instagram.Core.UsersMethods; using System; using System.Collections.Generic; @@ -1135,5 +1136,31 @@ public static string ApiInstagramHttp(string url) } } + + //public static string SearchastagData(string tag, string InstagramId, long groupId, Helper.AppSettings _appSettings, Helper.Cache _redisCache, Model.DatabaseRepository dbr) + //{ + // Domain.Socioboard.Models.Instagramaccounts _Instagramaccounts = Repositories.InstagramRepository.getInstagramAccount(InstagramId, _redisCache, dbr); + // TagController objSearchtag = new TagController(); + // string reta = objSearchtag.GetTagSearch(tag, _Instagramaccounts.AccessToken); + // return ""; + //} + + public static string Searchbyname(string quary, string InstagramId,string count, Helper.AppSettings _appSettings, Helper.Cache _redisCache, Model.DatabaseRepository dbr) + { + Domain.Socioboard.Models.Instagramaccounts _Instagramaccounts = Repositories.InstagramRepository.getInstagramAccount(InstagramId, _redisCache, dbr); + UserController objSearch = new UserController(); + Relationship objfollw = new Relationship(); + string reta = objSearch.GetUsersSearch(quary, count, _Instagramaccounts.AccessToken, InstagramId); + return reta; + } + + + public static string Followpeople(string InstagramId, string followingid, Helper.AppSettings _appSettings, Helper.Cache _redisCache, Model.DatabaseRepository dbr) + { + Domain.Socioboard.Models.Instagramaccounts _Instagramaccounts = Repositories.InstagramRepository.getInstagramAccount(InstagramId, _redisCache, dbr); + Relationship objfollw = new Relationship(); + string respon = objfollw.FollowPost(followingid, _Instagramaccounts.AccessToken); + return respon ; + } } } diff --git a/src/Api.Socioboard/Repositories/RssNewsContentsRepository.cs b/src/Api.Socioboard/Repositories/RssNewsContentsRepository.cs index c40a2525e..3f8334ce0 100644 --- a/src/Api.Socioboard/Repositories/RssNewsContentsRepository.cs +++ b/src/Api.Socioboard/Repositories/RssNewsContentsRepository.cs @@ -205,34 +205,7 @@ public static List findUrl(string keywords) } } - //if (responce_Baskar.Contains(keywordslist)) - //{ - // try - // { - // string data = obj_reqest.getBetween(responce_Baskar, "RSS Path", "
"); - // string[] report = Regex.Split(data, ""); - // foreach (string item in report) - // { - // try - // { - // if (item.Contains(keywordslist)) - // { - // string[] value = Regex.Split(item, ""); - // url[3] = obj_reqest.getBetween(value[2], "href=\"", "\""); - // break; - // } - // } - // catch (Exception ex) - // { - - // } - // } - // } - // catch (Exception ex) - // { - - // } - //} + foreach (var itemurl in url) { diff --git a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe index f2a143d0c..d0795a628 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe and b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe differ diff --git a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb index ee047ea59..fa57d2036 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb and b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe index f2a143d0c..d0795a628 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb index ee047ea59..fa57d2036 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb differ diff --git a/src/Api.Socioboard/wwwroot/log/log-20171211.txt b/src/Api.Socioboard/wwwroot/log/log-20171211.txt index 20708efc2..6292933c6 100644 --- a/src/Api.Socioboard/wwwroot/log/log-20171211.txt +++ b/src/Api.Socioboard/wwwroot/log/log-20171211.txt @@ -365,3 +365,1852 @@ 2017-12-11 12:36:38.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5551.0522ms 2017-12-11 12:36:38.064 +05:30 [Information] Request finished in 5557.5433ms 200 application/json; charset=utf-8 2017-12-11 12:36:38.064 +05:30 [Debug] Connection id ""0HLA0CMC0JORA"" completed keep alive response. +2017-12-11 17:28:27.495 +05:30 [Debug] Hosting starting +2017-12-11 17:28:27.994 +05:30 [Debug] Hosting started +2017-12-11 17:28:28.223 +05:30 [Debug] Connection id ""0HLA0HPUS0NK4"" started. +2017-12-11 17:28:28.223 +05:30 [Debug] Connection id ""0HLA0HPUS0NK5"" started. +2017-12-11 17:28:28.427 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-11 17:28:28.427 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-11 17:28:28.497 +05:30 [Information] Request finished in 99.7626ms 200 +2017-12-11 17:28:28.534 +05:30 [Debug] Connection id ""0HLA0HPUS0NK4"" completed keep alive response. +2017-12-11 17:28:29.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-11 17:28:30.020 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"6162e275-4ef0-4c4e-b1c9-3f931a0d5b5b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-11 17:28:30.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-11 17:28:30.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-11 17:28:30.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-11 17:28:30.239 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:28:30.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:28:30.244 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:28:30.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 408.4336ms +2017-12-11 17:28:30.587 +05:30 [Information] Request finished in 2204.1157ms 200 application/json; charset=utf-8 +2017-12-11 17:28:30.589 +05:30 [Debug] Connection id ""0HLA0HPUS0NK5"" completed keep alive response. +2017-12-11 17:28:30.647 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-11 17:28:30.650 +05:30 [Debug] Request did not match any routes. +2017-12-11 17:28:30.671 +05:30 [Debug] The request path "" does not match the path filter +2017-12-11 17:28:30.673 +05:30 [Information] Request finished in 25.4339ms 404 +2017-12-11 17:28:30.673 +05:30 [Debug] Connection id ""0HLA0HPUS0NK4"" completed keep alive response. +2017-12-11 17:28:53.303 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-11 17:28:53.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-11 17:28:53.308 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-11 17:28:57.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-11 17:29:06.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:29:06.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:29:06.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:29:06.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 13018.4804ms +2017-12-11 17:29:06.329 +05:30 [Information] Request finished in 13027.6156ms 200 application/json; charset=utf-8 +2017-12-11 17:29:06.329 +05:30 [Debug] Connection id ""0HLA0HPUS0NK5"" completed keep alive response. +2017-12-11 17:29:07.280 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-11 17:29:07.280 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 17:29:07.281 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 17:29:10.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-11 17:29:12.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:29:12.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:29:12.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:29:12.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5259.3905ms +2017-12-11 17:29:12.544 +05:30 [Information] Request finished in 5263.8737ms 200 application/json; charset=utf-8 +2017-12-11 17:29:12.544 +05:30 [Debug] Connection id ""0HLA0HPUS0NK4"" completed keep alive response. +2017-12-11 17:29:14.134 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 17:29:14.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 17:29:14.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 17:29:14.141 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 17:29:14.150 +05:30 [Debug] Connection id ""0HLA0HPUS0NK6"" started. +2017-12-11 17:29:14.150 +05:30 [Debug] Connection id ""0HLA0HPUS0NK7"" started. +2017-12-11 17:29:14.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 17:29:14.205 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 17:29:14.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 17:29:14.206 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 17:29:14.216 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 17:29:14.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 17:29:14.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 17:29:14.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 17:29:14.238 +05:30 [Debug] Connection id ""0HLA0HPUS0NK8"" started. +2017-12-11 17:29:14.238 +05:30 [Debug] Connection id ""0HLA0HPUS0NK9"" started. +2017-12-11 17:29:14.239 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 17:29:14.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 17:29:14.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 17:29:14.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 17:29:14.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 17:29:14.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 17:29:17.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:29:18.399 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:29:18.399 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:29:18.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:29:18.400 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:29:18.407 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4270.092ms +2017-12-11 17:29:18.411 +05:30 [Information] Request finished in 4276.5849ms 200 application/json; charset=utf-8 +2017-12-11 17:29:18.412 +05:30 [Debug] Connection id ""0HLA0HPUS0NK5"" completed keep alive response. +2017-12-11 17:29:18.420 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-11 17:29:18.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-11 17:29:18.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-11 17:29:18.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:29:18.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:29:18.999 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:29:19.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:29:19.022 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:29:20.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:29:20.275 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:29:20.275 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:29:20.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:29:20.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6060.4275ms +2017-12-11 17:29:20.281 +05:30 [Information] Request finished in 6109.1986ms 200 application/json; charset=utf-8 +2017-12-11 17:29:20.281 +05:30 [Debug] Connection id ""0HLA0HPUS0NK6"" completed keep alive response. +2017-12-11 17:29:21.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:29:21.053 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:29:21.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:29:21.055 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:29:21.055 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:29:21.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:29:21.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:29:21.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:29:21.068 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6862.5288ms +2017-12-11 17:29:21.072 +05:30 [Information] Request finished in 6931.5738ms 200 application/json; charset=utf-8 +2017-12-11 17:29:21.073 +05:30 [Debug] Connection id ""0HLA0HPUS0NK4"" completed keep alive response. +2017-12-11 17:29:21.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6858.8683ms +2017-12-11 17:29:21.082 +05:30 [Information] Request finished in 6908.5039ms 200 application/json; charset=utf-8 +2017-12-11 17:29:21.082 +05:30 [Debug] Connection id ""0HLA0HPUS0NK7"" completed keep alive response. +2017-12-11 17:29:21.381 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:29:21.383 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:29:21.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:29:21.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:29:21.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6573.3219ms +2017-12-11 17:29:21.394 +05:30 [Information] Request finished in 6581.7559ms 200 application/json; charset=utf-8 +2017-12-11 17:29:21.395 +05:30 [Debug] Connection id ""0HLA0HPUS0NK9"" completed keep alive response. +2017-12-11 17:29:21.465 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:29:22.092 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:29:22.093 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:29:22.093 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:29:22.094 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:29:22.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7852.7539ms +2017-12-11 17:29:22.097 +05:30 [Information] Request finished in 7857.9334ms 200 application/json; charset=utf-8 +2017-12-11 17:29:22.097 +05:30 [Debug] Connection id ""0HLA0HPUS0NK8"" completed keep alive response. +2017-12-11 17:29:24.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:29:24.079 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:29:24.079 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:29:24.080 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:29:24.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5706.3068ms +2017-12-11 17:29:24.134 +05:30 [Information] Request finished in 5715.4871ms 200 application/json; charset=utf-8 +2017-12-11 17:29:24.135 +05:30 [Debug] Connection id ""0HLA0HPUS0NK5"" completed keep alive response. +2017-12-11 17:29:39.937 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:29:39.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 17:29:39.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 17:29:42.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:30:05.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:30:05.734 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:30:05.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:30:05.735 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:30:05.751 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 25810.0111ms +2017-12-11 17:30:05.753 +05:30 [Information] Request finished in 25815.6817ms 200 application/json; charset=utf-8 +2017-12-11 17:30:05.753 +05:30 [Debug] Connection id ""0HLA0HPUS0NK6"" completed keep alive response. +2017-12-11 17:30:05.783 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 17:30:05.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 17:30:05.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 17:30:05.792 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:30:05.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:30:05.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:30:05.803 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 17:30:05.809 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 17:30:05.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:30:05.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:30:05.813 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 17:30:05.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 17:30:05.816 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 17:30:05.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:30:05.819 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 17:30:07.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 17:30:23.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:30:23.693 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:30:23.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:30:29.980 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:30:47.635 +05:30 [Debug] Hosting starting +2017-12-11 17:30:48.166 +05:30 [Debug] Hosting started +2017-12-11 17:30:48.354 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" started. +2017-12-11 17:30:48.357 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" started. +2017-12-11 17:30:48.609 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-11 17:30:48.617 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-11 17:30:48.731 +05:30 [Information] Request finished in 177.5979ms 200 +2017-12-11 17:30:48.814 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" completed keep alive response. +2017-12-11 17:30:50.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-11 17:30:50.342 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"9f0ee170-8460-4357-ba2e-12a55f2e549f"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-11 17:30:50.452 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-11 17:30:50.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-11 17:30:50.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-11 17:30:50.666 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:30:50.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:30:50.675 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:30:51.095 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 632.043ms +2017-12-11 17:30:51.220 +05:30 [Information] Request finished in 2684.298ms 200 application/json; charset=utf-8 +2017-12-11 17:30:51.227 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" completed keep alive response. +2017-12-11 17:31:14.655 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-11 17:31:14.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-11 17:31:14.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-11 17:31:18.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-11 17:31:27.061 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:31:27.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:31:27.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:31:27.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 12557.2556ms +2017-12-11 17:31:27.219 +05:30 [Information] Request finished in 12564.8174ms 200 application/json; charset=utf-8 +2017-12-11 17:31:27.219 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" completed keep alive response. +2017-12-11 17:31:28.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-11 17:31:28.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 17:31:28.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 17:31:31.466 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-11 17:31:33.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:31:33.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:31:33.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:31:33.823 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5427.2726ms +2017-12-11 17:31:33.827 +05:30 [Information] Request finished in 5433.7913ms 200 application/json; charset=utf-8 +2017-12-11 17:31:33.827 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" completed keep alive response. +2017-12-11 17:31:35.285 +05:30 [Debug] Connection id ""0HLA0HR8KC3RO"" started. +2017-12-11 17:31:35.285 +05:30 [Debug] Connection id ""0HLA0HR8KC3RP"" started. +2017-12-11 17:31:35.290 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 17:31:35.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 17:31:35.294 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 17:31:35.310 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 17:31:35.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 17:31:35.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 17:31:35.339 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 17:31:35.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 17:31:35.384 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 17:31:35.646 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 17:31:35.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 17:31:35.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 17:31:35.658 +05:30 [Debug] Connection id ""0HLA0HR8KC3RR"" started. +2017-12-11 17:31:35.658 +05:30 [Debug] Connection id ""0HLA0HR8KC3RQ"" started. +2017-12-11 17:31:35.704 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 17:31:35.705 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 17:31:35.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 17:31:35.715 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 17:31:35.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 17:31:35.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 17:31:39.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:31:39.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:31:39.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:31:39.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:31:39.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:31:39.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:31:39.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:31:39.973 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:31:39.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:31:39.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:31:39.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4682.1676ms +2017-12-11 17:31:39.979 +05:30 [Information] Request finished in 4698.3403ms 200 application/json; charset=utf-8 +2017-12-11 17:31:39.979 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" completed keep alive response. +2017-12-11 17:31:39.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-11 17:31:39.985 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-11 17:31:39.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-11 17:31:41.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:31:41.374 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:31:41.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:31:41.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:31:41.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5726.2417ms +2017-12-11 17:31:41.387 +05:30 [Information] Request finished in 6100.9077ms 200 application/json; charset=utf-8 +2017-12-11 17:31:41.388 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" completed keep alive response. +2017-12-11 17:31:41.698 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:31:41.698 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:31:41.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:31:41.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:31:41.711 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6325.0804ms +2017-12-11 17:31:41.713 +05:30 [Information] Request finished in 6423.1875ms 200 application/json; charset=utf-8 +2017-12-11 17:31:41.714 +05:30 [Debug] Connection id ""0HLA0HR8KC3RO"" completed keep alive response. +2017-12-11 17:31:41.954 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:31:41.955 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:31:41.955 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:31:41.956 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:31:41.960 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6644.5847ms +2017-12-11 17:31:41.964 +05:30 [Information] Request finished in 6657.7236ms 200 application/json; charset=utf-8 +2017-12-11 17:31:41.965 +05:30 [Debug] Connection id ""0HLA0HR8KC3RP"" completed keep alive response. +2017-12-11 17:31:42.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:31:42.448 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:31:42.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:31:42.449 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:31:42.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6729.2632ms +2017-12-11 17:31:42.453 +05:30 [Information] Request finished in 6764.2528ms 200 application/json; charset=utf-8 +2017-12-11 17:31:42.453 +05:30 [Debug] Connection id ""0HLA0HR8KC3RQ"" completed keep alive response. +2017-12-11 17:31:43.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:31:43.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:31:43.394 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:31:43.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:31:43.396 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:31:43.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7690.5906ms +2017-12-11 17:31:43.402 +05:30 [Information] Request finished in 7741.5754ms 200 application/json; charset=utf-8 +2017-12-11 17:31:43.402 +05:30 [Debug] Connection id ""0HLA0HR8KC3RR"" completed keep alive response. +2017-12-11 17:31:45.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:31:45.734 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:31:45.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:31:45.736 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:31:45.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5811.8056ms +2017-12-11 17:31:45.801 +05:30 [Information] Request finished in 5817.531ms 200 application/json; charset=utf-8 +2017-12-11 17:31:45.801 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" completed keep alive response. +2017-12-11 17:32:18.780 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:32:18.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 17:32:18.781 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 17:32:21.862 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:33:34.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:33:34.580 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:33:34.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:33:34.582 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:33:56.226 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 97444.3342ms +2017-12-11 17:33:56.229 +05:30 [Information] Request finished in 97449.524ms 200 application/json; charset=utf-8 +2017-12-11 17:33:56.230 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" completed keep alive response. +2017-12-11 17:33:56.270 +05:30 [Debug] Connection id ""0HLA0HR8KC3RO"" received FIN. +2017-12-11 17:33:56.270 +05:30 [Debug] Connection id ""0HLA0HR8KC3RQ"" received FIN. +2017-12-11 17:33:56.271 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" received FIN. +2017-12-11 17:33:56.271 +05:30 [Debug] Connection id ""0HLA0HR8KC3RO"" disconnecting. +2017-12-11 17:33:56.271 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" disconnecting. +2017-12-11 17:33:56.272 +05:30 [Debug] Connection id ""0HLA0HR8KC3RO"" sending FIN. +2017-12-11 17:33:56.282 +05:30 [Debug] Connection id ""0HLA0HR8KC3RP"" received FIN. +2017-12-11 17:33:56.282 +05:30 [Debug] Connection id ""0HLA0HR8KC3RR"" received FIN. +2017-12-11 17:33:56.283 +05:30 [Debug] Connection id ""0HLA0HR8KC3RS"" started. +2017-12-11 17:33:56.284 +05:30 [Debug] Connection id ""0HLA0HR8KC3RP"" disconnecting. +2017-12-11 17:33:56.284 +05:30 [Debug] Connection id ""0HLA0HR8KC3RO"" sent FIN with status "0". +2017-12-11 17:33:56.285 +05:30 [Debug] Connection id ""0HLA0HR8KC3RR"" disconnecting. +2017-12-11 17:33:56.271 +05:30 [Debug] Connection id ""0HLA0HR8KC3RQ"" disconnecting. +2017-12-11 17:33:56.289 +05:30 [Debug] Connection id ""0HLA0HR8KC3RP"" sending FIN. +2017-12-11 17:33:56.289 +05:30 [Debug] Connection id ""0HLA0HR8KC3RR"" sending FIN. +2017-12-11 17:33:56.290 +05:30 [Debug] Connection id ""0HLA0HR8KC3RR"" sent FIN with status "0". +2017-12-11 17:33:56.293 +05:30 [Debug] Connection id ""0HLA0HR8KC3RO"" stopped. +2017-12-11 17:33:56.293 +05:30 [Debug] Connection id ""0HLA0HR8KC3RT"" started. +2017-12-11 17:33:56.294 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" sending FIN. +2017-12-11 17:33:56.295 +05:30 [Debug] Connection id ""0HLA0HR8KC3RQ"" sending FIN. +2017-12-11 17:33:56.296 +05:30 [Debug] Connection id ""0HLA0HR8KC3RQ"" sent FIN with status "0". +2017-12-11 17:33:56.296 +05:30 [Debug] Connection id ""0HLA0HR8KC3RQ"" stopped. +2017-12-11 17:33:56.296 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" sent FIN with status "0". +2017-12-11 17:33:56.297 +05:30 [Debug] Connection id ""0HLA0HR8KC3RM"" stopped. +2017-12-11 17:33:56.300 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 17:33:56.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 17:33:56.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 17:33:56.322 +05:30 [Debug] Connection id ""0HLA0HR8KC3RR"" stopped. +2017-12-11 17:33:56.325 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 17:33:56.332 +05:30 [Debug] Connection id ""0HLA0HR8KC3RP"" sent FIN with status "0". +2017-12-11 17:33:56.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 17:33:56.332 +05:30 [Debug] Connection id ""0HLA0HR8KC3RP"" stopped. +2017-12-11 17:33:56.333 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" started. +2017-12-11 17:33:56.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 17:33:56.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 17:33:56.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 17:33:56.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 17:33:56.353 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:33:56.354 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:33:56.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:33:59.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:33:59.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:34:18.303 +05:30 [Debug] Connection id ""0HLA0HR8KC3RV"" started. +2017-12-11 17:34:20.529 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:34:20.529 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:34:23.650 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:34:23.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 17:34:23.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:34:40.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:35:30.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:35:30.300 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:35:30.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:35:30.302 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:35:31.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 95315.8176ms +2017-12-11 17:35:31.705 +05:30 [Information] Request finished in 95361.3728ms 200 application/json; charset=utf-8 +2017-12-11 17:35:31.706 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" completed keep alive response. +2017-12-11 17:35:52.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:35:52.662 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:35:54.435 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:35:55.228 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:35:55.234 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:35:55.235 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:35:55.235 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:35:55.235 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:35:55.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:35:55.236 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:35:56.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:35:56.019 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 119706.3487ms +2017-12-11 17:35:56.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:35:56.553 +05:30 [Debug] Connection id ""0HLA0HR8KC3RS"" received FIN. +2017-12-11 17:35:56.577 +05:30 [Information] Request finished in 120267.2721ms 200 application/json; charset=utf-8 +2017-12-11 17:35:56.577 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" completed keep alive response. +2017-12-11 17:35:56.576 +05:30 [Debug] Connection id ""0HLA0HR8KC3RT"" received FIN. +2017-12-11 17:35:56.600 +05:30 [Debug] Connection id ""0HLA0HR8KC3RS"" disconnecting. +2017-12-11 17:35:56.602 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 92901.7939ms +2017-12-11 17:35:58.123 +05:30 [Information] Connection id ""0HLA0HR8KC3RS"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-11 17:35:58.179 +05:30 [Debug] Connection id ""0HLA0HR8KC3RS"" stopped. +2017-12-11 17:35:58.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:35:58.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:35:58.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:35:58.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 120241.4696ms +2017-12-11 17:35:58.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:35:58.192 +05:30 [Information] Request finished in 121903.5044ms 200 application/json; charset=utf-8 +2017-12-11 17:35:58.194 +05:30 [Information] Request finished in 97681.39ms 200 application/json; charset=utf-8 +2017-12-11 17:35:58.194 +05:30 [Debug] Connection id ""0HLA0HR8KC3RV"" completed keep alive response. +2017-12-11 17:35:58.236 +05:30 [Debug] Connection id ""0HLA0HR8KC3RT"" disconnecting. +2017-12-11 17:35:58.260 +05:30 [Information] Connection id ""0HLA0HR8KC3RT"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-11 17:35:58.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 121853.8495ms +2017-12-11 17:35:58.263 +05:30 [Debug] Connection id ""0HLA0HR8KC3RT"" stopped. +2017-12-11 17:35:58.290 +05:30 [Information] Request finished in 121975.0839ms 200 application/json; charset=utf-8 +2017-12-11 17:36:19.241 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-11 17:36:19.242 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 17:36:19.242 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 17:36:22.286 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-11 17:36:23.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:23.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:23.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:23.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4654.9093ms +2017-12-11 17:36:23.901 +05:30 [Information] Request finished in 4661.0396ms 200 application/json; charset=utf-8 +2017-12-11 17:36:23.901 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" completed keep alive response. +2017-12-11 17:36:24.809 +05:30 [Debug] Connection id ""0HLA0HR8KC3S0"" started. +2017-12-11 17:36:24.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 17:36:24.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 17:36:24.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 17:36:24.812 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 17:36:24.836 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 17:36:24.837 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 17:36:24.848 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 17:36:24.848 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 17:36:24.849 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 17:36:24.861 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 17:36:24.861 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 17:36:24.862 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 17:36:24.916 +05:30 [Debug] Connection id ""0HLA0HR8KC3S1"" started. +2017-12-11 17:36:24.916 +05:30 [Debug] Connection id ""0HLA0HR8KC3S2"" started. +2017-12-11 17:36:24.918 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 17:36:24.919 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 17:36:24.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 17:36:24.920 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 17:36:24.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 17:36:24.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 17:36:27.043 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:36:27.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:36:27.984 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:36:27.989 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:36:28.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:36:28.041 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:36:28.560 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:28.560 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:28.561 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:28.562 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:28.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3750.1048ms +2017-12-11 17:36:28.567 +05:30 [Information] Request finished in 3758.3679ms 200 application/json; charset=utf-8 +2017-12-11 17:36:28.567 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" completed keep alive response. +2017-12-11 17:36:28.587 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:36:28.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 17:36:28.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 17:36:28.647 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:28.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:28.648 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:28.648 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:28.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:28.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:28.649 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:28.649 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:28.650 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3799.9304ms +2017-12-11 17:36:28.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3788.1183ms +2017-12-11 17:36:28.674 +05:30 [Information] Request finished in 3846.023ms 200 application/json; charset=utf-8 +2017-12-11 17:36:28.674 +05:30 [Information] Request finished in 3845.4293ms 200 application/json; charset=utf-8 +2017-12-11 17:36:28.675 +05:30 [Debug] Connection id ""0HLA0HR8KC3RV"" completed keep alive response. +2017-12-11 17:36:28.675 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" completed keep alive response. +2017-12-11 17:36:29.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:29.087 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:29.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:29.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:29.090 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4144.2806ms +2017-12-11 17:36:29.092 +05:30 [Information] Request finished in 4173.9056ms 200 application/json; charset=utf-8 +2017-12-11 17:36:29.092 +05:30 [Debug] Connection id ""0HLA0HR8KC3S2"" completed keep alive response. +2017-12-11 17:36:29.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:29.099 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:29.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:29.107 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:29.107 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:29.108 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:29.108 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:29.111 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4166.5142ms +2017-12-11 17:36:29.115 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:29.117 +05:30 [Information] Request finished in 4199.4602ms 200 application/json; charset=utf-8 +2017-12-11 17:36:29.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4276.5376ms +2017-12-11 17:36:29.119 +05:30 [Debug] Connection id ""0HLA0HR8KC3S1"" completed keep alive response. +2017-12-11 17:36:29.127 +05:30 [Information] Request finished in 4313.4639ms 200 application/json; charset=utf-8 +2017-12-11 17:36:29.128 +05:30 [Debug] Connection id ""0HLA0HR8KC3S0"" completed keep alive response. +2017-12-11 17:36:31.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:36:34.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:34.137 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:34.138 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:34.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:34.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 5556.47ms +2017-12-11 17:36:34.154 +05:30 [Information] Request finished in 5567.1254ms 200 application/json; charset=utf-8 +2017-12-11 17:36:34.155 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" completed keep alive response. +2017-12-11 17:36:34.191 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 17:36:34.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 17:36:34.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 17:36:34.206 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 17:36:34.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 17:36:34.207 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 17:36:34.222 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 17:36:34.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 17:36:34.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 17:36:34.229 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:36:34.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:36:34.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:36:36.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 17:36:37.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:36:37.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:36:38.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:36:40.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:40.418 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:40.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:40.463 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:40.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:40.464 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:40.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:40.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 6257.1727ms +2017-12-11 17:36:40.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:40.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 6279.2238ms +2017-12-11 17:36:40.477 +05:30 [Information] Request finished in 6275.9075ms 200 application/json; charset=utf-8 +2017-12-11 17:36:40.479 +05:30 [Debug] Connection id ""0HLA0HR8KC3S1"" completed keep alive response. +2017-12-11 17:36:40.480 +05:30 [Information] Request finished in 6301.5977ms 200 application/json; charset=utf-8 +2017-12-11 17:36:40.487 +05:30 [Debug] Connection id ""0HLA0HR8KC3RV"" completed keep alive response. +2017-12-11 17:36:40.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:40.620 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:40.620 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:40.622 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:40.640 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6386.0236ms +2017-12-11 17:36:40.646 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:36:40.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:36:40.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:36:40.661 +05:30 [Information] Request finished in 6455.5547ms 200 application/json; charset=utf-8 +2017-12-11 17:36:40.661 +05:30 [Debug] Connection id ""0HLA0HR8KC3S2"" completed keep alive response. +2017-12-11 17:36:43.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:36:45.874 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:45.874 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:45.874 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:45.875 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:45.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5230.7756ms +2017-12-11 17:36:45.883 +05:30 [Information] Request finished in 5251.5727ms 200 application/json; charset=utf-8 +2017-12-11 17:36:45.884 +05:30 [Debug] Connection id ""0HLA0HR8KC3S0"" completed keep alive response. +2017-12-11 17:36:49.301 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:36:49.302 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:36:49.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:36:49.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:36:49.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 15073.9346ms +2017-12-11 17:36:49.312 +05:30 [Information] Request finished in 15122.7088ms 200 application/json; charset=utf-8 +2017-12-11 17:36:49.313 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" completed keep alive response. +2017-12-11 17:38:08.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" received FIN. +2017-12-11 17:38:08.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3S1"" received FIN. +2017-12-11 17:38:08.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" disconnecting. +2017-12-11 17:38:08.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3RV"" received FIN. +2017-12-11 17:38:08.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3S1"" disconnecting. +2017-12-11 17:38:08.397 +05:30 [Debug] Connection id ""0HLA0HR8KC3RV"" disconnecting. +2017-12-11 17:38:08.397 +05:30 [Debug] Connection id ""0HLA0HR8KC3S1"" sending FIN. +2017-12-11 17:38:08.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3S2"" received FIN. +2017-12-11 17:38:08.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3S0"" received FIN. +2017-12-11 17:38:08.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3RV"" sending FIN. +2017-12-11 17:38:08.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" received FIN. +2017-12-11 17:38:08.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3RV"" sent FIN with status "0". +2017-12-11 17:38:08.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3S2"" disconnecting. +2017-12-11 17:38:08.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3RV"" stopped. +2017-12-11 17:38:08.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3S0"" disconnecting. +2017-12-11 17:38:08.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" disconnecting. +2017-12-11 17:38:08.400 +05:30 [Debug] Connection id ""0HLA0HR8KC3S1"" sent FIN with status "0". +2017-12-11 17:38:08.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" sending FIN. +2017-12-11 17:38:08.401 +05:30 [Debug] Connection id ""0HLA0HR8KC3S1"" stopped. +2017-12-11 17:38:08.401 +05:30 [Debug] Connection id ""0HLA0HR8KC3S2"" sending FIN. +2017-12-11 17:38:08.402 +05:30 [Debug] Connection id ""0HLA0HR8KC3S0"" sending FIN. +2017-12-11 17:38:08.402 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" sending FIN. +2017-12-11 17:38:08.402 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" sent FIN with status "0". +2017-12-11 17:38:08.403 +05:30 [Debug] Connection id ""0HLA0HR8KC3RN"" stopped. +2017-12-11 17:38:08.403 +05:30 [Debug] Connection id ""0HLA0HR8KC3S0"" sent FIN with status "0". +2017-12-11 17:38:08.404 +05:30 [Debug] Connection id ""0HLA0HR8KC3S0"" stopped. +2017-12-11 17:38:08.404 +05:30 [Debug] Connection id ""0HLA0HR8KC3S2"" sent FIN with status "0". +2017-12-11 17:38:08.404 +05:30 [Debug] Connection id ""0HLA0HR8KC3S2"" stopped. +2017-12-11 17:38:08.405 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" sent FIN with status "0". +2017-12-11 17:38:08.405 +05:30 [Debug] Connection id ""0HLA0HR8KC3RU"" stopped. +2017-12-11 17:38:50.524 +05:30 [Debug] Connection id ""0HLA0HR8KC3S3"" started. +2017-12-11 17:38:50.526 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-11 17:38:50.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 17:38:50.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 17:38:53.570 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-11 17:38:55.171 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:38:55.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:38:55.173 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:38:55.176 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4646.3174ms +2017-12-11 17:38:55.179 +05:30 [Information] Request finished in 4652.996ms 200 application/json; charset=utf-8 +2017-12-11 17:38:55.180 +05:30 [Debug] Connection id ""0HLA0HR8KC3S3"" completed keep alive response. +2017-12-11 17:38:59.815 +05:30 [Debug] Connection id ""0HLA0HR8KC3S4"" started. +2017-12-11 17:38:59.815 +05:30 [Debug] Connection id ""0HLA0HR8KC3S5"" started. +2017-12-11 17:38:59.815 +05:30 [Debug] Connection id ""0HLA0HR8KC3S6"" started. +2017-12-11 17:38:59.821 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 17:38:59.822 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 17:38:59.823 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 17:38:59.921 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 17:38:59.923 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 17:38:59.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 17:38:59.923 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 17:38:59.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 17:38:59.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 17:38:59.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 17:38:59.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 17:38:59.965 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 17:39:03.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:39:03.112 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:39:03.229 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:39:03.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:39:03.642 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:39:03.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:39:03.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:39:03.645 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3821.1237ms +2017-12-11 17:39:03.647 +05:30 [Information] Request finished in 3849.5306ms 200 application/json; charset=utf-8 +2017-12-11 17:39:03.647 +05:30 [Debug] Connection id ""0HLA0HR8KC3S3"" completed keep alive response. +2017-12-11 17:39:03.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:39:03.699 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:39:03.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:39:03.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:39:03.702 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3777.823ms +2017-12-11 17:39:03.704 +05:30 [Information] Request finished in 3887.8001ms 200 application/json; charset=utf-8 +2017-12-11 17:39:03.704 +05:30 [Debug] Connection id ""0HLA0HR8KC3S5"" completed keep alive response. +2017-12-11 17:39:04.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:39:04.283 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:39:04.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:39:04.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:39:04.289 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4292.6105ms +2017-12-11 17:39:04.293 +05:30 [Information] Request finished in 4476.7257ms 200 application/json; charset=utf-8 +2017-12-11 17:39:04.294 +05:30 [Debug] Connection id ""0HLA0HR8KC3S4"" completed keep alive response. +2017-12-11 17:39:07.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:39:07.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:39:07.822 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:39:07.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:39:07.823 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:39:07.824 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7890.7584ms +2017-12-11 17:39:07.826 +05:30 [Information] Request finished in 8005.3281ms 200 application/json; charset=utf-8 +2017-12-11 17:39:07.826 +05:30 [Debug] Connection id ""0HLA0HR8KC3S6"" completed keep alive response. +2017-12-11 17:39:08.743 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 17:39:08.744 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 17:39:08.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 17:39:08.775 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 17:39:08.775 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 17:39:08.776 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 17:39:11.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:39:11.901 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:39:13.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:39:13.067 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:39:13.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:39:13.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:39:13.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4293.978ms +2017-12-11 17:39:13.073 +05:30 [Information] Request finished in 4335.7775ms 200 application/json; charset=utf-8 +2017-12-11 17:39:13.074 +05:30 [Debug] Connection id ""0HLA0HR8KC3S5"" completed keep alive response. +2017-12-11 17:39:13.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:39:13.354 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:39:13.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:39:13.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:39:13.360 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4611.0229ms +2017-12-11 17:39:13.362 +05:30 [Information] Request finished in 4635.8181ms 200 application/json; charset=utf-8 +2017-12-11 17:39:13.364 +05:30 [Debug] Connection id ""0HLA0HR8KC3S3"" completed keep alive response. +2017-12-11 17:39:33.021 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:39:33.023 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 17:39:33.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 17:39:35.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:39:41.090 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:39:41.090 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:39:41.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:39:41.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:39:41.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 8067.8973ms +2017-12-11 17:39:41.096 +05:30 [Information] Request finished in 8075.7957ms 200 application/json; charset=utf-8 +2017-12-11 17:39:41.097 +05:30 [Debug] Connection id ""0HLA0HR8KC3S4"" completed keep alive response. +2017-12-11 17:40:54.186 +05:30 [Debug] Connection id ""0HLA0HR8KC3S6"" received FIN. +2017-12-11 17:40:54.186 +05:30 [Debug] Connection id ""0HLA0HR8KC3S3"" received FIN. +2017-12-11 17:40:54.186 +05:30 [Debug] Connection id ""0HLA0HR8KC3S4"" received FIN. +2017-12-11 17:40:54.187 +05:30 [Debug] Connection id ""0HLA0HR8KC3S6"" disconnecting. +2017-12-11 17:40:54.187 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" started. +2017-12-11 17:40:54.188 +05:30 [Debug] Connection id ""0HLA0HR8KC3S3"" disconnecting. +2017-12-11 17:40:54.188 +05:30 [Debug] Connection id ""0HLA0HR8KC3S4"" disconnecting. +2017-12-11 17:40:54.188 +05:30 [Debug] Connection id ""0HLA0HR8KC3S3"" sending FIN. +2017-12-11 17:40:54.186 +05:30 [Debug] Connection id ""0HLA0HR8KC3S5"" received FIN. +2017-12-11 17:40:54.195 +05:30 [Debug] Connection id ""0HLA0HR8KC3S4"" sending FIN. +2017-12-11 17:40:54.196 +05:30 [Debug] Connection id ""0HLA0HR8KC3S6"" sending FIN. +2017-12-11 17:40:54.196 +05:30 [Debug] Connection id ""0HLA0HR8KC3S4"" sent FIN with status "0". +2017-12-11 17:40:54.196 +05:30 [Debug] Connection id ""0HLA0HR8KC3S6"" sent FIN with status "0". +2017-12-11 17:40:54.196 +05:30 [Debug] Connection id ""0HLA0HR8KC3S4"" stopped. +2017-12-11 17:40:54.196 +05:30 [Debug] Connection id ""0HLA0HR8KC3S6"" stopped. +2017-12-11 17:40:54.196 +05:30 [Debug] Connection id ""0HLA0HR8KC3S3"" sent FIN with status "0". +2017-12-11 17:40:54.197 +05:30 [Debug] Connection id ""0HLA0HR8KC3S3"" stopped. +2017-12-11 17:40:54.253 +05:30 [Debug] Connection id ""0HLA0HR8KC3S5"" disconnecting. +2017-12-11 17:40:54.253 +05:30 [Debug] Connection id ""0HLA0HR8KC3S5"" sending FIN. +2017-12-11 17:40:54.254 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 17:40:54.254 +05:30 [Debug] Connection id ""0HLA0HR8KC3S5"" sent FIN with status "0". +2017-12-11 17:40:54.255 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 17:40:54.255 +05:30 [Debug] Connection id ""0HLA0HR8KC3S5"" stopped. +2017-12-11 17:40:54.255 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 17:40:56.308 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" started. +2017-12-11 17:40:56.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 17:40:56.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 17:40:56.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 17:40:57.379 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 17:40:59.937 +05:30 [Debug] Connection id ""0HLA0HR8KC3S9"" started. +2017-12-11 17:40:59.939 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:40:59.940 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 17:41:01.073 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 17:41:01.074 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 17:41:01.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:01.847 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:01.847 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:01.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:01.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5536.6718ms +2017-12-11 17:41:01.857 +05:30 [Information] Request finished in 5542.9405ms 200 application/json; charset=utf-8 +2017-12-11 17:41:01.858 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" completed keep alive response. +2017-12-11 17:41:01.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:01.916 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:01.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:01.918 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:01.930 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 7663.2636ms +2017-12-11 17:41:01.933 +05:30 [Information] Request finished in 7678.3083ms 200 application/json; charset=utf-8 +2017-12-11 17:41:01.933 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" completed keep alive response. +2017-12-11 17:41:04.125 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:41:18.827 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:41:18.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:41:18.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:41:18.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:41:18.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:41:18.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:41:18.947 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" started. +2017-12-11 17:41:18.968 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-11 17:41:18.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 17:41:18.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 17:41:21.933 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:41:26.083 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:41:26.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-11 17:41:28.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:28.058 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:28.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:28.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:28.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 9266.7944ms +2017-12-11 17:41:28.123 +05:30 [Information] Request finished in 9314.7689ms 200 application/json; charset=utf-8 +2017-12-11 17:41:28.123 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" completed keep alive response. +2017-12-11 17:41:28.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:28.578 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:28.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:28.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:28.586 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 9744.8534ms +2017-12-11 17:41:28.595 +05:30 [Information] Request finished in 9786.1151ms 200 application/json; charset=utf-8 +2017-12-11 17:41:28.596 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" completed keep alive response. +2017-12-11 17:41:29.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:29.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:29.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:29.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 10546.8216ms +2017-12-11 17:41:29.519 +05:30 [Information] Request finished in 10561.5752ms 200 application/json; charset=utf-8 +2017-12-11 17:41:29.520 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" completed keep alive response. +2017-12-11 17:41:31.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:31.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:31.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:31.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:31.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 30813.1566ms +2017-12-11 17:41:31.918 +05:30 [Information] Request finished in 31975.2845ms 200 application/json; charset=utf-8 +2017-12-11 17:41:31.918 +05:30 [Debug] Connection id ""0HLA0HR8KC3S9"" completed keep alive response. +2017-12-11 17:41:34.148 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 17:41:34.149 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 17:41:34.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 17:41:34.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 17:41:34.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 17:41:34.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 17:41:34.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 17:41:34.199 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 17:41:34.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 17:41:34.223 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 17:41:34.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 17:41:34.236 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 17:41:36.540 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:41:36.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:41:36.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:41:37.376 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:37.377 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:37.377 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:37.378 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:37.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3142.8191ms +2017-12-11 17:41:37.391 +05:30 [Information] Request finished in 3244.1188ms 200 application/json; charset=utf-8 +2017-12-11 17:41:37.392 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" completed keep alive response. +2017-12-11 17:41:37.403 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:37.403 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:37.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:37.404 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:37.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3227.6506ms +2017-12-11 17:41:37.409 +05:30 [Information] Request finished in 3268.1535ms 200 application/json; charset=utf-8 +2017-12-11 17:41:37.409 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" completed keep alive response. +2017-12-11 17:41:37.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:41:37.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:37.817 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:37.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:37.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:37.820 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3670.26ms +2017-12-11 17:41:37.822 +05:30 [Information] Request finished in 3686.1003ms 200 application/json; charset=utf-8 +2017-12-11 17:41:37.823 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" completed keep alive response. +2017-12-11 17:41:38.236 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 17:41:38.236 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 17:41:38.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 17:41:38.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 17:41:38.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 17:41:38.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 17:41:38.362 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:38.363 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:38.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:38.365 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:38.366 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4166.0875ms +2017-12-11 17:41:38.369 +05:30 [Information] Request finished in 4221.0442ms 200 application/json; charset=utf-8 +2017-12-11 17:41:38.370 +05:30 [Debug] Connection id ""0HLA0HR8KC3S9"" completed keep alive response. +2017-12-11 17:41:39.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:41:39.018 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 17:41:39.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 17:41:41.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:41:43.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:41:43.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:41:43.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:43.391 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:43.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:43.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:43.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4373.439ms +2017-12-11 17:41:43.397 +05:30 [Information] Request finished in 4378.2388ms 200 application/json; charset=utf-8 +2017-12-11 17:41:43.397 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" completed keep alive response. +2017-12-11 17:41:43.416 +05:30 [Debug] Connection id ""0HLA0HR8KC3SB"" started. +2017-12-11 17:41:43.417 +05:30 [Debug] Connection id ""0HLA0HR8KC3SC"" started. +2017-12-11 17:41:43.417 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:41:43.418 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:41:43.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:41:43.421 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 17:41:43.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 17:41:43.429 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 17:41:44.333 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 17:41:44.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 17:41:44.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 17:41:44.408 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:44.408 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:44.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:44.410 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:44.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6173.0261ms +2017-12-11 17:41:44.413 +05:30 [Information] Request finished in 6197.1218ms 200 application/json; charset=utf-8 +2017-12-11 17:41:44.414 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" completed keep alive response. +2017-12-11 17:41:44.415 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 17:41:44.418 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 17:41:44.418 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 17:41:44.787 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:44.787 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:44.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:44.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:44.793 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6551.0877ms +2017-12-11 17:41:44.796 +05:30 [Information] Request finished in 6579.5835ms 200 application/json; charset=utf-8 +2017-12-11 17:41:44.796 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" completed keep alive response. +2017-12-11 17:41:44.807 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 17:41:44.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 17:41:44.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 17:41:46.833 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:41:48.251 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:41:48.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 17:41:57.664 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 17:41:58.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:58.355 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:58.356 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:58.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 17:41:58.357 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:59.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 15971.2289ms +2017-12-11 17:41:59.397 +05:30 [Information] Request finished in 15983.2792ms 200 application/json; charset=utf-8 +2017-12-11 17:41:59.397 +05:30 [Debug] Connection id ""0HLA0HR8KC3S9"" completed keep alive response. +2017-12-11 17:41:59.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:59.887 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:59.888 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:59.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:59.892 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:59.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:59.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:59.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:41:59.901 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:41:59.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:41:59.901 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:59.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:41:59.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 16474.3446ms +2017-12-11 17:41:59.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 15478.0708ms +2017-12-11 17:41:59.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 15099.6198ms +2017-12-11 17:41:59.920 +05:30 [Information] Request finished in 15504.1647ms 200 application/json; charset=utf-8 +2017-12-11 17:41:59.922 +05:30 [Debug] Connection id ""0HLA0HR8KC3SC"" completed keep alive response. +2017-12-11 17:41:59.951 +05:30 [Information] Request finished in 16502.4407ms 200 application/json; charset=utf-8 +2017-12-11 17:41:59.965 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" completed keep alive response. +2017-12-11 17:41:59.991 +05:30 [Information] Request finished in 15117.7628ms 200 application/json; charset=utf-8 +2017-12-11 17:41:59.992 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" completed keep alive response. +2017-12-11 17:42:08.815 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 17:42:08.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 17:42:08.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 17:42:08.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 17:42:08.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 24482.7082ms +2017-12-11 17:42:08.823 +05:30 [Information] Request finished in 24489.0842ms 200 application/json; charset=utf-8 +2017-12-11 17:42:08.824 +05:30 [Debug] Connection id ""0HLA0HR8KC3SB"" completed keep alive response. +2017-12-11 17:43:38.394 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" received FIN. +2017-12-11 17:43:38.394 +05:30 [Debug] Connection id ""0HLA0HR8KC3S9"" received FIN. +2017-12-11 17:43:38.394 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" received FIN. +2017-12-11 17:43:38.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3SB"" received FIN. +2017-12-11 17:43:38.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3S9"" disconnecting. +2017-12-11 17:43:38.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" disconnecting. +2017-12-11 17:43:38.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3SB"" disconnecting. +2017-12-11 17:43:38.394 +05:30 [Debug] Connection id ""0HLA0HR8KC3SC"" received FIN. +2017-12-11 17:43:38.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3S9"" sending FIN. +2017-12-11 17:43:38.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3SB"" sending FIN. +2017-12-11 17:43:38.397 +05:30 [Debug] Connection id ""0HLA0HR8KC3SB"" sent FIN with status "0". +2017-12-11 17:43:38.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" disconnecting. +2017-12-11 17:43:38.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3SB"" stopped. +2017-12-11 17:43:38.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3SC"" disconnecting. +2017-12-11 17:43:38.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3S9"" sent FIN with status "0". +2017-12-11 17:43:38.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" received FIN. +2017-12-11 17:43:38.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" sending FIN. +2017-12-11 17:43:38.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3S9"" stopped. +2017-12-11 17:43:38.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" disconnecting. +2017-12-11 17:43:38.400 +05:30 [Debug] Connection id ""0HLA0HR8KC3SC"" sending FIN. +2017-12-11 17:43:38.400 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" sending FIN. +2017-12-11 17:43:38.400 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" sending FIN. +2017-12-11 17:43:38.400 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" sent FIN with status "0". +2017-12-11 17:43:38.401 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" sent FIN with status "0". +2017-12-11 17:43:38.401 +05:30 [Debug] Connection id ""0HLA0HR8KC3S7"" stopped. +2017-12-11 17:43:38.401 +05:30 [Debug] Connection id ""0HLA0HR8KC3SA"" stopped. +2017-12-11 17:43:38.401 +05:30 [Debug] Connection id ""0HLA0HR8KC3SC"" sent FIN with status "0". +2017-12-11 17:43:38.402 +05:30 [Debug] Connection id ""0HLA0HR8KC3SC"" stopped. +2017-12-11 17:43:38.402 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" sent FIN with status "0". +2017-12-11 17:43:38.402 +05:30 [Debug] Connection id ""0HLA0HR8KC3S8"" stopped. +2017-12-11 18:04:16.556 +05:30 [Debug] Connection id ""0HLA0HR8KC3SD"" started. +2017-12-11 18:04:16.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-11 18:04:16.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 18:04:16.559 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 18:04:18.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-11 18:04:21.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:04:21.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:04:21.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:04:21.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5415.8633ms +2017-12-11 18:04:21.980 +05:30 [Information] Request finished in 5422.0601ms 200 application/json; charset=utf-8 +2017-12-11 18:04:21.980 +05:30 [Debug] Connection id ""0HLA0HR8KC3SD"" completed keep alive response. +2017-12-11 18:04:25.496 +05:30 [Debug] Connection id ""0HLA0HR8KC3SF"" started. +2017-12-11 18:04:25.496 +05:30 [Debug] Connection id ""0HLA0HR8KC3SE"" started. +2017-12-11 18:04:25.502 +05:30 [Debug] Connection id ""0HLA0HR8KC3SG"" started. +2017-12-11 18:04:25.505 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 18:04:25.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 18:04:25.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 18:04:25.521 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 18:04:25.525 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 18:04:25.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 18:04:25.528 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 18:04:25.529 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 18:04:25.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 18:04:25.535 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 18:04:25.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 18:04:25.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 18:04:25.877 +05:30 [Debug] Connection id ""0HLA0HR8KC3SH"" started. +2017-12-11 18:04:25.880 +05:30 [Debug] Connection id ""0HLA0HR8KC3SI"" started. +2017-12-11 18:04:25.920 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 18:04:25.922 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 18:04:25.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 18:04:25.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 18:04:25.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 18:04:25.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 18:04:28.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 18:04:28.648 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 18:04:28.674 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 18:04:28.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 18:04:29.041 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 18:04:29.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 18:04:29.233 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:04:29.233 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:04:29.233 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:04:29.234 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:04:29.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3705.3632ms +2017-12-11 18:04:29.238 +05:30 [Information] Request finished in 3720.4421ms 200 application/json; charset=utf-8 +2017-12-11 18:04:29.239 +05:30 [Debug] Connection id ""0HLA0HR8KC3SG"" completed keep alive response. +2017-12-11 18:04:29.264 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 18:04:29.264 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 18:04:29.265 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 18:04:30.771 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:04:30.771 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:04:30.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:04:30.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:04:30.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5235.7182ms +2017-12-11 18:04:30.780 +05:30 [Information] Request finished in 5280.085ms 200 application/json; charset=utf-8 +2017-12-11 18:04:30.780 +05:30 [Debug] Connection id ""0HLA0HR8KC3SF"" completed keep alive response. +2017-12-11 18:04:31.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:04:31.040 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:04:31.040 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:04:31.041 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:04:31.042 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5530.6871ms +2017-12-11 18:04:31.044 +05:30 [Information] Request finished in 5552.3547ms 200 application/json; charset=utf-8 +2017-12-11 18:04:31.044 +05:30 [Debug] Connection id ""0HLA0HR8KC3SD"" completed keep alive response. +2017-12-11 18:04:31.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:04:31.642 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:04:31.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:04:31.643 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:04:31.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5720.2007ms +2017-12-11 18:04:31.650 +05:30 [Information] Request finished in 5767.956ms 200 application/json; charset=utf-8 +2017-12-11 18:04:31.651 +05:30 [Debug] Connection id ""0HLA0HR8KC3SI"" completed keep alive response. +2017-12-11 18:04:31.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:04:31.900 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:04:31.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:04:31.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:04:31.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5979.6793ms +2017-12-11 18:04:31.911 +05:30 [Information] Request finished in 6030.2722ms 200 application/json; charset=utf-8 +2017-12-11 18:04:31.912 +05:30 [Debug] Connection id ""0HLA0HR8KC3SH"" completed keep alive response. +2017-12-11 18:04:32.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:04:32.203 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:04:32.204 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:04:32.206 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:04:32.209 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6679.1996ms +2017-12-11 18:04:32.213 +05:30 [Information] Request finished in 6709.652ms 200 application/json; charset=utf-8 +2017-12-11 18:04:32.213 +05:30 [Debug] Connection id ""0HLA0HR8KC3SE"" completed keep alive response. +2017-12-11 18:04:32.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 18:04:47.222 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:04:47.223 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:04:47.223 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:04:47.227 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:04:47.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 17962.4433ms +2017-12-11 18:04:47.236 +05:30 [Information] Request finished in 17970.9422ms 200 application/json; charset=utf-8 +2017-12-11 18:04:47.237 +05:30 [Debug] Connection id ""0HLA0HR8KC3SG"" completed keep alive response. +2017-12-11 18:04:47.279 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 18:04:47.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 18:04:47.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 18:04:47.284 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 18:04:47.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 18:04:47.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 18:04:47.296 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 18:04:47.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 18:04:47.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 18:04:47.300 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 18:04:47.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 18:04:47.305 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 18:04:47.306 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 18:04:47.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 18:04:47.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 18:04:49.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 18:04:52.022 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 18:04:54.262 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 18:04:56.499 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 18:05:00.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 18:05:02.190 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:05:02.191 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:05:02.191 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:05:02.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:05:02.194 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 14888.5232ms +2017-12-11 18:05:02.197 +05:30 [Information] Request finished in 14915.2823ms 200 application/json; charset=utf-8 +2017-12-11 18:05:02.198 +05:30 [Debug] Connection id ""0HLA0HR8KC3SD"" completed keep alive response. +2017-12-11 18:05:02.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:05:02.605 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:05:02.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:05:02.606 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:05:02.609 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 15295.9679ms +2017-12-11 18:05:02.612 +05:30 [Information] Request finished in 15312.9193ms 200 application/json; charset=utf-8 +2017-12-11 18:05:02.613 +05:30 [Debug] Connection id ""0HLA0HR8KC3SE"" completed keep alive response. +2017-12-11 18:05:02.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:05:02.634 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:05:02.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:05:02.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:05:02.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 15376.8539ms +2017-12-11 18:05:02.709 +05:30 [Information] Request finished in 15441.4375ms 200 application/json; charset=utf-8 +2017-12-11 18:05:02.710 +05:30 [Debug] Connection id ""0HLA0HR8KC3SF"" completed keep alive response. +2017-12-11 18:05:03.145 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:05:03.146 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:05:03.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:05:03.147 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:05:03.149 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 15849.1051ms +2017-12-11 18:05:03.153 +05:30 [Information] Request finished in 15871.0346ms 200 application/json; charset=utf-8 +2017-12-11 18:05:03.153 +05:30 [Debug] Connection id ""0HLA0HR8KC3SH"" completed keep alive response. +2017-12-11 18:05:07.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 18:05:07.241 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:05:07.241 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:05:07.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:05:07.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 19957.6687ms +2017-12-11 18:05:07.249 +05:30 [Information] Request finished in 19969.2039ms 200 application/json; charset=utf-8 +2017-12-11 18:05:07.250 +05:30 [Debug] Connection id ""0HLA0HR8KC3SI"" completed keep alive response. +2017-12-11 18:07:28.394 +05:30 [Debug] Connection id ""0HLA0HR8KC3SG"" received FIN. +2017-12-11 18:07:28.394 +05:30 [Debug] Connection id ""0HLA0HR8KC3SG"" disconnecting. +2017-12-11 18:07:28.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3SG"" sending FIN. +2017-12-11 18:07:28.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3SG"" sent FIN with status "0". +2017-12-11 18:07:28.395 +05:30 [Debug] Connection id ""0HLA0HR8KC3SG"" stopped. +2017-12-11 18:07:28.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3SD"" received FIN. +2017-12-11 18:07:28.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3SE"" received FIN. +2017-12-11 18:07:28.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3SF"" received FIN. +2017-12-11 18:07:28.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3SD"" disconnecting. +2017-12-11 18:07:28.396 +05:30 [Debug] Connection id ""0HLA0HR8KC3SH"" received FIN. +2017-12-11 18:07:28.397 +05:30 [Debug] Connection id ""0HLA0HR8KC3SE"" disconnecting. +2017-12-11 18:07:28.397 +05:30 [Debug] Connection id ""0HLA0HR8KC3SF"" disconnecting. +2017-12-11 18:07:28.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3SH"" disconnecting. +2017-12-11 18:07:28.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3SF"" sending FIN. +2017-12-11 18:07:28.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3SD"" sending FIN. +2017-12-11 18:07:28.398 +05:30 [Debug] Connection id ""0HLA0HR8KC3SF"" sent FIN with status "0". +2017-12-11 18:07:28.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3SE"" sending FIN. +2017-12-11 18:07:28.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3SF"" stopped. +2017-12-11 18:07:28.399 +05:30 [Debug] Connection id ""0HLA0HR8KC3SH"" sending FIN. +2017-12-11 18:07:28.400 +05:30 [Debug] Connection id ""0HLA0HR8KC3SH"" sent FIN with status "0". +2017-12-11 18:07:28.400 +05:30 [Debug] Connection id ""0HLA0HR8KC3SH"" stopped. +2017-12-11 18:07:28.401 +05:30 [Debug] Connection id ""0HLA0HR8KC3SE"" sent FIN with status "0". +2017-12-11 18:07:28.401 +05:30 [Debug] Connection id ""0HLA0HR8KC3SE"" stopped. +2017-12-11 18:07:28.401 +05:30 [Debug] Connection id ""0HLA0HR8KC3SD"" sent FIN with status "0". +2017-12-11 18:07:28.402 +05:30 [Debug] Connection id ""0HLA0HR8KC3SD"" stopped. +2017-12-11 18:07:28.400 +05:30 [Debug] Connection id ""0HLA0HR8KC3SI"" received FIN. +2017-12-11 18:07:28.406 +05:30 [Debug] Connection id ""0HLA0HR8KC3SI"" disconnecting. +2017-12-11 18:07:28.407 +05:30 [Debug] Connection id ""0HLA0HR8KC3SI"" sending FIN. +2017-12-11 18:07:28.408 +05:30 [Debug] Connection id ""0HLA0HR8KC3SI"" sent FIN with status "0". +2017-12-11 18:07:28.408 +05:30 [Debug] Connection id ""0HLA0HR8KC3SI"" stopped. +2017-12-11 18:32:16.381 +05:30 [Debug] Hosting starting +2017-12-11 18:32:16.807 +05:30 [Debug] Hosting started +2017-12-11 18:32:16.926 +05:30 [Debug] Connection id ""0HLA0ITJTB7CT"" started. +2017-12-11 18:32:16.926 +05:30 [Debug] Connection id ""0HLA0ITJTB7CS"" started. +2017-12-11 18:32:17.097 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-11 18:32:17.097 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-11 18:32:17.190 +05:30 [Information] Request finished in 127.3465ms 200 +2017-12-11 18:32:17.262 +05:30 [Debug] Connection id ""0HLA0ITJTB7CT"" completed keep alive response. +2017-12-11 18:32:18.478 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-11 18:32:18.520 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d82b5898-9c1e-4a00-826a-b83077474a7c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-11 18:32:18.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-11 18:32:18.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-11 18:32:18.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-11 18:32:18.753 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 18:32:18.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 18:32:18.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 18:32:19.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 398.9445ms +2017-12-11 18:32:19.062 +05:30 [Information] Request finished in 2030.9284ms 200 application/json; charset=utf-8 +2017-12-11 18:32:19.064 +05:30 [Debug] Connection id ""0HLA0ITJTB7CS"" completed keep alive response. +2017-12-11 18:32:19.099 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-11 18:32:19.103 +05:30 [Debug] Request did not match any routes. +2017-12-11 18:32:19.122 +05:30 [Debug] The request path "" does not match the path filter +2017-12-11 18:32:19.125 +05:30 [Information] Request finished in 26.681ms 404 +2017-12-11 18:32:19.125 +05:30 [Debug] Connection id ""0HLA0ITJTB7CT"" completed keep alive response. +2017-12-11 19:09:06.897 +05:30 [Debug] Hosting starting +2017-12-11 19:09:07.099 +05:30 [Debug] Hosting started +2017-12-11 19:09:07.272 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" started. +2017-12-11 19:09:07.272 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" started. +2017-12-11 19:09:07.461 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-11 19:09:07.461 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-11 19:09:07.537 +05:30 [Information] Request finished in 152.3108ms 200 +2017-12-11 19:09:07.608 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" completed keep alive response. +2017-12-11 19:09:08.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-11 19:09:08.537 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"6af550d2-223c-44c0-9afe-6ac71fdf83b1"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-11 19:09:08.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-11 19:09:08.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-11 19:09:08.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-11 19:09:08.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:09:08.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:08.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:09.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 564.3064ms +2017-12-11 19:09:09.296 +05:30 [Information] Request finished in 1925.5813ms 200 application/json; charset=utf-8 +2017-12-11 19:09:09.299 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" completed keep alive response. +2017-12-11 19:09:24.149 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-11 19:09:24.150 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-11 19:09:24.154 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-11 19:09:27.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-11 19:09:35.564 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:09:35.576 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:35.576 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:35.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 11585.5514ms +2017-12-11 19:09:35.744 +05:30 [Information] Request finished in 11596.6988ms 200 application/json; charset=utf-8 +2017-12-11 19:09:35.744 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" completed keep alive response. +2017-12-11 19:09:36.364 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-11 19:09:36.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 19:09:36.367 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 19:09:39.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-11 19:09:41.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:09:41.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:41.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:41.288 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4919.7882ms +2017-12-11 19:09:41.289 +05:30 [Information] Request finished in 4926.1794ms 200 application/json; charset=utf-8 +2017-12-11 19:09:41.290 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" completed keep alive response. +2017-12-11 19:09:42.865 +05:30 [Debug] Connection id ""0HLA0JI6KR8TE"" started. +2017-12-11 19:09:42.865 +05:30 [Debug] Connection id ""0HLA0JI6KR8TF"" started. +2017-12-11 19:09:42.866 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 19:09:42.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 19:09:42.868 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 19:09:42.889 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 19:09:42.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 19:09:42.890 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 19:09:42.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 19:09:42.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 19:09:42.892 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 19:09:42.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 19:09:42.893 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 19:09:42.896 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 19:09:42.993 +05:30 [Debug] Connection id ""0HLA0JI6KR8TG"" started. +2017-12-11 19:09:42.996 +05:30 [Debug] Connection id ""0HLA0JI6KR8TH"" started. +2017-12-11 19:09:42.998 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 19:09:42.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 19:09:43.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 19:09:43.747 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 19:09:43.748 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 19:09:43.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 19:09:46.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:09:46.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:09:46.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:09:46.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:09:47.009 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:09:47.654 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:09:47.654 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:09:47.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:47.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:47.667 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4774.6716ms +2017-12-11 19:09:47.670 +05:30 [Information] Request finished in 4802.3895ms 200 application/json; charset=utf-8 +2017-12-11 19:09:47.671 +05:30 [Debug] Connection id ""0HLA0JI6KR8TE"" completed keep alive response. +2017-12-11 19:09:47.678 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-11 19:09:47.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-11 19:09:47.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-11 19:09:47.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:09:48.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:09:48.991 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:09:48.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:48.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:49.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5248.0845ms +2017-12-11 19:09:49.008 +05:30 [Information] Request finished in 5260.9431ms 200 application/json; charset=utf-8 +2017-12-11 19:09:49.008 +05:30 [Debug] Connection id ""0HLA0JI6KR8TH"" completed keep alive response. +2017-12-11 19:09:49.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:09:49.168 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:09:49.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:49.169 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:49.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6281.7517ms +2017-12-11 19:09:49.176 +05:30 [Information] Request finished in 6310.886ms 200 application/json; charset=utf-8 +2017-12-11 19:09:49.177 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" completed keep alive response. +2017-12-11 19:09:49.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:09:49.271 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:09:49.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:49.272 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:49.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6381.6353ms +2017-12-11 19:09:49.279 +05:30 [Information] Request finished in 6411.8472ms 200 application/json; charset=utf-8 +2017-12-11 19:09:49.279 +05:30 [Debug] Connection id ""0HLA0JI6KR8TF"" completed keep alive response. +2017-12-11 19:09:49.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:09:49.731 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:09:49.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:49.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:49.735 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6727.8699ms +2017-12-11 19:09:49.738 +05:30 [Information] Request finished in 6741.1468ms 200 application/json; charset=utf-8 +2017-12-11 19:09:49.738 +05:30 [Debug] Connection id ""0HLA0JI6KR8TG"" completed keep alive response. +2017-12-11 19:09:49.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:09:49.809 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:09:49.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:49.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:49.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6915.458ms +2017-12-11 19:09:49.815 +05:30 [Information] Request finished in 6948.2846ms 200 application/json; charset=utf-8 +2017-12-11 19:09:49.816 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" completed keep alive response. +2017-12-11 19:09:50.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:09:53.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:09:53.324 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:09:53.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:09:53.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:09:53.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5687.7915ms +2017-12-11 19:09:53.370 +05:30 [Information] Request finished in 5696.4842ms 200 application/json; charset=utf-8 +2017-12-11 19:09:53.371 +05:30 [Debug] Connection id ""0HLA0JI6KR8TE"" completed keep alive response. +2017-12-11 19:10:02.242 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:10:02.242 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 19:10:02.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 19:10:05.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:10:13.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:10:13.857 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:10:13.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:10:13.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:10:13.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 11659.1213ms +2017-12-11 19:10:13.906 +05:30 [Information] Request finished in 11664.3051ms 200 application/json; charset=utf-8 +2017-12-11 19:10:13.907 +05:30 [Debug] Connection id ""0HLA0JI6KR8TH"" completed keep alive response. +2017-12-11 19:10:13.934 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 19:10:13.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 19:10:13.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 19:10:13.945 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 19:10:13.946 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 19:10:13.947 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 19:10:13.965 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:10:13.965 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 19:10:13.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 19:10:13.981 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 19:10:13.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 19:10:13.983 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 19:10:16.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:10:17.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:10:17.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 19:10:17.068 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:10:19.468 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:10:19.468 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:10:19.468 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:10:19.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:10:19.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5527.8137ms +2017-12-11 19:10:19.478 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:10:19.478 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:10:19.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:10:19.481 +05:30 [Information] Request finished in 5546.4104ms 200 application/json; charset=utf-8 +2017-12-11 19:10:19.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:10:19.486 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" completed keep alive response. +2017-12-11 19:10:19.541 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:10:19.541 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:10:19.542 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:10:19.543 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:10:19.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5605.3607ms +2017-12-11 19:10:19.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5580.9006ms +2017-12-11 19:10:19.555 +05:30 [Information] Request finished in 5624.5813ms 200 application/json; charset=utf-8 +2017-12-11 19:10:19.555 +05:30 [Debug] Connection id ""0HLA0JI6KR8TF"" completed keep alive response. +2017-12-11 19:10:19.557 +05:30 [Information] Request finished in 5626.8999ms 200 application/json; charset=utf-8 +2017-12-11 19:10:19.559 +05:30 [Debug] Connection id ""0HLA0JI6KR8TG"" completed keep alive response. +2017-12-11 19:10:19.618 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:10:19.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 19:10:19.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 19:10:20.363 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:10:20.364 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:10:20.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:10:20.365 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:10:20.374 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 6390.992ms +2017-12-11 19:10:20.377 +05:30 [Information] Request finished in 6447.1634ms 200 application/json; charset=utf-8 +2017-12-11 19:10:20.378 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" completed keep alive response. +2017-12-11 19:10:22.682 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:10:23.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:10:23.157 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:10:23.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:10:23.158 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:10:23.165 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3534.046ms +2017-12-11 19:10:23.169 +05:30 [Information] Request finished in 3551.8658ms 200 application/json; charset=utf-8 +2017-12-11 19:10:23.170 +05:30 [Debug] Connection id ""0HLA0JI6KR8TE"" completed keep alive response. +2017-12-11 19:12:48.042 +05:30 [Debug] Connection id ""0HLA0JI6KR8TF"" received FIN. +2017-12-11 19:12:48.043 +05:30 [Debug] Connection id ""0HLA0JI6KR8TH"" received FIN. +2017-12-11 19:12:48.043 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" received FIN. +2017-12-11 19:12:48.043 +05:30 [Debug] Connection id ""0HLA0JI6KR8TE"" received FIN. +2017-12-11 19:12:48.043 +05:30 [Debug] Connection id ""0HLA0JI6KR8TH"" disconnecting. +2017-12-11 19:12:48.044 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" disconnecting. +2017-12-11 19:12:48.045 +05:30 [Debug] Connection id ""0HLA0JI6KR8TF"" disconnecting. +2017-12-11 19:12:48.046 +05:30 [Debug] Connection id ""0HLA0JI6KR8TG"" received FIN. +2017-12-11 19:12:48.046 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" received FIN. +2017-12-11 19:12:48.046 +05:30 [Debug] Connection id ""0HLA0JI6KR8TG"" disconnecting. +2017-12-11 19:12:48.046 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" disconnecting. +2017-12-11 19:12:48.046 +05:30 [Debug] Connection id ""0HLA0JI6KR8TE"" disconnecting. +2017-12-11 19:12:48.047 +05:30 [Debug] Connection id ""0HLA0JI6KR8TH"" sending FIN. +2017-12-11 19:12:48.047 +05:30 [Debug] Connection id ""0HLA0JI6KR8TF"" sending FIN. +2017-12-11 19:12:48.049 +05:30 [Debug] Connection id ""0HLA0JI6KR8TG"" sending FIN. +2017-12-11 19:12:48.049 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" sending FIN. +2017-12-11 19:12:48.049 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" sending FIN. +2017-12-11 19:12:48.051 +05:30 [Debug] Connection id ""0HLA0JI6KR8TE"" sending FIN. +2017-12-11 19:12:48.055 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" sent FIN with status "0". +2017-12-11 19:12:48.055 +05:30 [Debug] Connection id ""0HLA0JI6KR8TE"" sent FIN with status "0". +2017-12-11 19:12:48.058 +05:30 [Debug] Connection id ""0HLA0JI6KR8TD"" stopped. +2017-12-11 19:12:48.059 +05:30 [Debug] Connection id ""0HLA0JI6KR8TE"" stopped. +2017-12-11 19:12:48.059 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" sent FIN with status "0". +2017-12-11 19:12:48.059 +05:30 [Debug] Connection id ""0HLA0JI6KR8TG"" sent FIN with status "0". +2017-12-11 19:12:48.060 +05:30 [Debug] Connection id ""0HLA0JI6KR8TC"" stopped. +2017-12-11 19:12:48.060 +05:30 [Debug] Connection id ""0HLA0JI6KR8TG"" stopped. +2017-12-11 19:12:48.061 +05:30 [Debug] Connection id ""0HLA0JI6KR8TH"" sent FIN with status "0". +2017-12-11 19:12:48.061 +05:30 [Debug] Connection id ""0HLA0JI6KR8TF"" sent FIN with status "0". +2017-12-11 19:12:48.061 +05:30 [Debug] Connection id ""0HLA0JI6KR8TH"" stopped. +2017-12-11 19:12:48.061 +05:30 [Debug] Connection id ""0HLA0JI6KR8TF"" stopped. +2017-12-11 19:15:43.190 +05:30 [Debug] Connection id ""0HLA0JI6KR8TI"" started. +2017-12-11 19:15:43.191 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-11 19:15:43.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 19:15:43.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 19:15:46.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-11 19:15:49.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:15:49.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:15:49.182 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:15:49.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5992.8337ms +2017-12-11 19:15:49.190 +05:30 [Information] Request finished in 5998.1149ms 200 application/json; charset=utf-8 +2017-12-11 19:15:49.190 +05:30 [Debug] Connection id ""0HLA0JI6KR8TI"" completed keep alive response. +2017-12-11 19:15:53.658 +05:30 [Debug] Connection id ""0HLA0JI6KR8TJ"" started. +2017-12-11 19:15:53.659 +05:30 [Debug] Connection id ""0HLA0JI6KR8TK"" started. +2017-12-11 19:15:53.659 +05:30 [Debug] Connection id ""0HLA0JI6KR8TL"" started. +2017-12-11 19:15:53.689 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 19:15:53.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 19:15:53.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 19:15:53.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 19:15:53.908 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 19:15:53.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 19:15:53.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 19:15:53.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 19:15:53.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 19:15:53.951 +05:30 [Debug] Connection id ""0HLA0JI6KR8TN"" started. +2017-12-11 19:15:53.951 +05:30 [Debug] Connection id ""0HLA0JI6KR8TM"" started. +2017-12-11 19:15:54.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 19:15:54.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 19:15:54.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 19:15:54.042 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 19:15:54.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 19:15:54.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 19:15:54.062 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 19:15:54.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 19:15:54.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 19:15:56.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:15:56.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:15:56.988 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:15:57.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:15:57.324 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:15:57.338 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:15:57.366 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:15:57.366 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:15:57.367 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:15:57.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:15:57.371 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3329.241ms +2017-12-11 19:15:57.374 +05:30 [Information] Request finished in 3695.4377ms 200 application/json; charset=utf-8 +2017-12-11 19:15:57.375 +05:30 [Debug] Connection id ""0HLA0JI6KR8TK"" completed keep alive response. +2017-12-11 19:15:57.387 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:15:57.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 19:15:57.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 19:15:58.931 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:15:58.932 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:15:58.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:15:58.934 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:15:58.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5243.8224ms +2017-12-11 19:15:58.941 +05:30 [Information] Request finished in 5289.437ms 200 application/json; charset=utf-8 +2017-12-11 19:15:58.941 +05:30 [Debug] Connection id ""0HLA0JI6KR8TI"" completed keep alive response. +2017-12-11 19:15:59.339 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:15:59.340 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:15:59.340 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:15:59.341 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:15:59.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5428.5987ms +2017-12-11 19:15:59.343 +05:30 [Information] Request finished in 5445.1301ms 200 application/json; charset=utf-8 +2017-12-11 19:15:59.344 +05:30 [Debug] Connection id ""0HLA0JI6KR8TL"" completed keep alive response. +2017-12-11 19:15:59.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:15:59.352 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:15:59.352 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:15:59.354 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:15:59.360 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5444.6219ms +2017-12-11 19:15:59.364 +05:30 [Information] Request finished in 5702.7476ms 200 application/json; charset=utf-8 +2017-12-11 19:15:59.364 +05:30 [Debug] Connection id ""0HLA0JI6KR8TJ"" completed keep alive response. +2017-12-11 19:16:00.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:16:00.064 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:16:00.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:16:00.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:16:00.067 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6003.5946ms +2017-12-11 19:16:00.069 +05:30 [Information] Request finished in 6076.5636ms 200 application/json; charset=utf-8 +2017-12-11 19:16:00.069 +05:30 [Debug] Connection id ""0HLA0JI6KR8TM"" completed keep alive response. +2017-12-11 19:16:00.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:16:00.104 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:16:00.104 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:16:00.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:16:00.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6062.4814ms +2017-12-11 19:16:00.110 +05:30 [Information] Request finished in 6103.5637ms 200 application/json; charset=utf-8 +2017-12-11 19:16:00.111 +05:30 [Debug] Connection id ""0HLA0JI6KR8TN"" completed keep alive response. +2017-12-11 19:16:00.425 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:16:00.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:16:00.703 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:16:00.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:16:00.704 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:16:00.705 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3310.0145ms +2017-12-11 19:16:00.713 +05:30 [Information] Request finished in 3328.2564ms 200 application/json; charset=utf-8 +2017-12-11 19:16:00.713 +05:30 [Debug] Connection id ""0HLA0JI6KR8TK"" completed keep alive response. +2017-12-11 19:16:00.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 19:16:00.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 19:16:00.801 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:16:00.802 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 19:16:00.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 19:16:00.802 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 19:16:00.807 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:16:00.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 19:16:00.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 19:16:00.817 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 19:16:00.818 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 19:16:00.819 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 19:16:00.819 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 19:16:00.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 19:16:00.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 19:16:03.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:16:03.929 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:16:03.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:16:03.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 19:16:03.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:16:04.380 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:16:04.380 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:16:04.381 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:16:04.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:16:04.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3573.1319ms +2017-12-11 19:16:04.395 +05:30 [Information] Request finished in 3597.7239ms 200 application/json; charset=utf-8 +2017-12-11 19:16:04.396 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:16:04.396 +05:30 [Debug] Connection id ""0HLA0JI6KR8TM"" completed keep alive response. +2017-12-11 19:16:04.396 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:16:04.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:16:04.400 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:16:04.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3599.3045ms +2017-12-11 19:16:04.450 +05:30 [Information] Request finished in 3656.1838ms 200 application/json; charset=utf-8 +2017-12-11 19:16:04.451 +05:30 [Debug] Connection id ""0HLA0JI6KR8TJ"" completed keep alive response. +2017-12-11 19:16:05.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:16:05.053 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:16:05.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:16:05.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:16:05.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:16:05.110 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:16:05.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:16:05.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4308.3065ms +2017-12-11 19:16:05.117 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:16:05.119 +05:30 [Information] Request finished in 4332.7816ms 200 application/json; charset=utf-8 +2017-12-11 19:16:05.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4284.2301ms +2017-12-11 19:16:05.120 +05:30 [Debug] Connection id ""0HLA0JI6KR8TI"" completed keep alive response. +2017-12-11 19:16:05.125 +05:30 [Information] Request finished in 4328.6669ms 200 application/json; charset=utf-8 +2017-12-11 19:16:05.126 +05:30 [Debug] Connection id ""0HLA0JI6KR8TN"" completed keep alive response. +2017-12-11 19:16:08.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:16:08.788 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:16:08.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:16:08.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:16:08.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 7971.3039ms +2017-12-11 19:16:08.794 +05:30 [Information] Request finished in 8003.6689ms 200 application/json; charset=utf-8 +2017-12-11 19:16:08.794 +05:30 [Debug] Connection id ""0HLA0JI6KR8TL"" completed keep alive response. +2017-12-11 19:18:18.041 +05:30 [Debug] Connection id ""0HLA0JI6KR8TK"" received FIN. +2017-12-11 19:18:18.041 +05:30 [Debug] Connection id ""0HLA0JI6KR8TM"" received FIN. +2017-12-11 19:18:18.041 +05:30 [Debug] Connection id ""0HLA0JI6KR8TK"" disconnecting. +2017-12-11 19:18:18.042 +05:30 [Debug] Connection id ""0HLA0JI6KR8TJ"" received FIN. +2017-12-11 19:18:18.042 +05:30 [Debug] Connection id ""0HLA0JI6KR8TI"" received FIN. +2017-12-11 19:18:18.042 +05:30 [Debug] Connection id ""0HLA0JI6KR8TL"" received FIN. +2017-12-11 19:18:18.043 +05:30 [Debug] Connection id ""0HLA0JI6KR8TN"" received FIN. +2017-12-11 19:18:18.043 +05:30 [Debug] Connection id ""0HLA0JI6KR8TK"" sending FIN. +2017-12-11 19:18:18.044 +05:30 [Debug] Connection id ""0HLA0JI6KR8TJ"" disconnecting. +2017-12-11 19:18:18.044 +05:30 [Debug] Connection id ""0HLA0JI6KR8TI"" disconnecting. +2017-12-11 19:18:18.049 +05:30 [Debug] Connection id ""0HLA0JI6KR8TJ"" sending FIN. +2017-12-11 19:18:18.049 +05:30 [Debug] Connection id ""0HLA0JI6KR8TN"" disconnecting. +2017-12-11 19:18:18.050 +05:30 [Debug] Connection id ""0HLA0JI6KR8TJ"" sent FIN with status "0". +2017-12-11 19:18:18.051 +05:30 [Debug] Connection id ""0HLA0JI6KR8TJ"" stopped. +2017-12-11 19:18:18.053 +05:30 [Debug] Connection id ""0HLA0JI6KR8TL"" disconnecting. +2017-12-11 19:18:18.044 +05:30 [Debug] Connection id ""0HLA0JI6KR8TK"" sent FIN with status "0". +2017-12-11 19:18:18.054 +05:30 [Debug] Connection id ""0HLA0JI6KR8TL"" sending FIN. +2017-12-11 19:18:18.055 +05:30 [Debug] Connection id ""0HLA0JI6KR8TK"" stopped. +2017-12-11 19:18:18.055 +05:30 [Debug] Connection id ""0HLA0JI6KR8TL"" sent FIN with status "0". +2017-12-11 19:18:18.056 +05:30 [Debug] Connection id ""0HLA0JI6KR8TI"" sending FIN. +2017-12-11 19:18:18.056 +05:30 [Debug] Connection id ""0HLA0JI6KR8TL"" stopped. +2017-12-11 19:18:18.056 +05:30 [Debug] Connection id ""0HLA0JI6KR8TN"" sending FIN. +2017-12-11 19:18:18.042 +05:30 [Debug] Connection id ""0HLA0JI6KR8TM"" disconnecting. +2017-12-11 19:18:18.057 +05:30 [Debug] Connection id ""0HLA0JI6KR8TN"" sent FIN with status "0". +2017-12-11 19:18:18.057 +05:30 [Debug] Connection id ""0HLA0JI6KR8TM"" sending FIN. +2017-12-11 19:18:18.058 +05:30 [Debug] Connection id ""0HLA0JI6KR8TN"" stopped. +2017-12-11 19:18:18.058 +05:30 [Debug] Connection id ""0HLA0JI6KR8TM"" sent FIN with status "0". +2017-12-11 19:18:18.058 +05:30 [Debug] Connection id ""0HLA0JI6KR8TI"" sent FIN with status "0". +2017-12-11 19:18:18.059 +05:30 [Debug] Connection id ""0HLA0JI6KR8TM"" stopped. +2017-12-11 19:18:18.059 +05:30 [Debug] Connection id ""0HLA0JI6KR8TI"" stopped. +2017-12-11 19:19:46.805 +05:30 [Debug] Connection id ""0HLA0JI6KR8TO"" started. +2017-12-11 19:19:46.806 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-11 19:19:46.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 19:19:46.807 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 19:19:49.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-11 19:19:51.618 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:19:51.619 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:19:51.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:19:51.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4813.1778ms +2017-12-11 19:19:51.627 +05:30 [Information] Request finished in 4818.98ms 200 application/json; charset=utf-8 +2017-12-11 19:19:51.628 +05:30 [Debug] Connection id ""0HLA0JI6KR8TO"" completed keep alive response. +2017-12-11 19:19:56.532 +05:30 [Debug] Connection id ""0HLA0JI6KR8TP"" started. +2017-12-11 19:19:56.568 +05:30 [Debug] Connection id ""0HLA0JI6KR8TQ"" started. +2017-12-11 19:19:56.568 +05:30 [Debug] Connection id ""0HLA0JI6KR8TR"" started. +2017-12-11 19:19:56.532 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 19:19:56.585 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 19:19:56.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 19:19:56.589 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 19:19:56.578 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 19:19:56.635 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 19:19:56.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 19:19:56.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 19:19:56.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 19:19:56.665 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 19:19:56.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 19:19:56.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 19:19:57.559 +05:30 [Debug] Connection id ""0HLA0JI6KR8TS"" started. +2017-12-11 19:19:57.566 +05:30 [Debug] Connection id ""0HLA0JI6KR8TT"" started. +2017-12-11 19:19:58.192 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 19:19:58.193 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 19:19:58.193 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 19:19:59.194 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 19:19:59.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 19:19:59.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 19:20:02.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:20:02.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:20:02.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:20:02.430 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:20:02.432 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:20:02.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:20:02.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:02.942 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:02.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:02.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:02.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6269.0548ms +2017-12-11 19:20:02.946 +05:30 [Information] Request finished in 6365.9303ms 200 application/json; charset=utf-8 +2017-12-11 19:20:02.947 +05:30 [Debug] Connection id ""0HLA0JI6KR8TR"" completed keep alive response. +2017-12-11 19:20:02.951 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:20:02.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 19:20:02.952 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 19:20:02.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:02.975 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:02.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:02.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:02.978 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6391.8099ms +2017-12-11 19:20:02.986 +05:30 [Information] Request finished in 6538.6187ms 200 application/json; charset=utf-8 +2017-12-11 19:20:02.987 +05:30 [Debug] Connection id ""0HLA0JI6KR8TO"" completed keep alive response. +2017-12-11 19:20:03.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:03.145 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:03.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:03.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:03.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6474.3922ms +2017-12-11 19:20:03.149 +05:30 [Information] Request finished in 6580.1165ms 200 application/json; charset=utf-8 +2017-12-11 19:20:03.149 +05:30 [Debug] Connection id ""0HLA0JI6KR8TQ"" completed keep alive response. +2017-12-11 19:20:03.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:03.582 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:03.582 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:03.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:03.584 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6947.9867ms +2017-12-11 19:20:03.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:03.586 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:03.586 +05:30 [Information] Request finished in 7017.5946ms 200 application/json; charset=utf-8 +2017-12-11 19:20:03.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:03.587 +05:30 [Debug] Connection id ""0HLA0JI6KR8TP"" completed keep alive response. +2017-12-11 19:20:03.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:03.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4392.9436ms +2017-12-11 19:20:03.594 +05:30 [Information] Request finished in 4399.8106ms 200 application/json; charset=utf-8 +2017-12-11 19:20:03.595 +05:30 [Debug] Connection id ""0HLA0JI6KR8TT"" completed keep alive response. +2017-12-11 19:20:03.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:03.692 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:03.692 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:03.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:03.696 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5499.7468ms +2017-12-11 19:20:03.698 +05:30 [Information] Request finished in 5505.5402ms 200 application/json; charset=utf-8 +2017-12-11 19:20:03.698 +05:30 [Debug] Connection id ""0HLA0JI6KR8TS"" completed keep alive response. +2017-12-11 19:20:06.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:20:06.365 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:06.366 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:06.366 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:06.366 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:06.369 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3414.6734ms +2017-12-11 19:20:06.371 +05:30 [Information] Request finished in 3419.7549ms 200 application/json; charset=utf-8 +2017-12-11 19:20:06.371 +05:30 [Debug] Connection id ""0HLA0JI6KR8TR"" completed keep alive response. +2017-12-11 19:20:06.395 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 19:20:06.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 19:20:06.398 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:20:06.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 19:20:06.399 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 19:20:06.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 19:20:06.405 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 19:20:06.410 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 19:20:06.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 19:20:06.411 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 19:20:06.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 19:20:06.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 19:20:09.525 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:20:09.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:20:09.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:20:09.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 19:20:09.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:09.981 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:09.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:09.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:09.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3586.8243ms +2017-12-11 19:20:09.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:20:09.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 19:20:09.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 19:20:09.998 +05:30 [Information] Request finished in 3600.0876ms 200 application/json; charset=utf-8 +2017-12-11 19:20:09.999 +05:30 [Debug] Connection id ""0HLA0JI6KR8TQ"" completed keep alive response. +2017-12-11 19:20:13.727 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:13.728 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:13.728 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:13.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:13.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 7346.7576ms +2017-12-11 19:20:13.816 +05:30 [Information] Request finished in 7393.8231ms 200 application/json; charset=utf-8 +2017-12-11 19:20:13.836 +05:30 [Debug] Connection id ""0HLA0JI6KR8TP"" completed keep alive response. +2017-12-11 19:20:18.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:20:19.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:19.648 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:19.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:19.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:19.726 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 13297.3515ms +2017-12-11 19:20:19.810 +05:30 [Information] Request finished in 13371.9841ms 200 application/json; charset=utf-8 +2017-12-11 19:20:19.828 +05:30 [Debug] Connection id ""0HLA0JI6KR8TT"" completed keep alive response. +2017-12-11 19:20:21.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:20:22.008 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:20:51.196 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:20:51.217 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:20:51.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 41736.789ms +2017-12-11 19:20:53.698 +05:30 [Information] Request finished in 43160.3186ms 200 application/json; charset=utf-8 +2017-12-11 19:20:53.699 +05:30 [Debug] Connection id ""0HLA0JI6KR8TS"" completed keep alive response. +2017-12-11 19:23:17.893 +05:30 [Debug] Connection id ""0HLA0JI6KR8TQ"" received FIN. +2017-12-11 19:23:17.894 +05:30 [Debug] Connection id ""0HLA0JI6KR8TS"" received FIN. +2017-12-11 19:23:17.894 +05:30 [Debug] Connection id ""0HLA0JI6KR8TO"" received FIN. +2017-12-11 19:23:17.894 +05:30 [Debug] Connection id ""0HLA0JI6KR8TR"" received FIN. +2017-12-11 19:23:17.894 +05:30 [Debug] Connection id ""0HLA0JI6KR8TP"" received FIN. +2017-12-11 19:23:17.895 +05:30 [Debug] Connection id ""0HLA0JI6KR8TT"" received FIN. +2017-12-11 19:23:18.405 +05:30 [Debug] Connection id ""0HLA0JI6KR8TQ"" disconnecting. +2017-12-11 19:23:19.043 +05:30 [Debug] Connection id ""0HLA0JI6KR8TR"" disconnecting. +2017-12-11 19:23:19.043 +05:30 [Debug] Connection id ""0HLA0JI6KR8TQ"" sending FIN. +2017-12-11 19:23:19.044 +05:30 [Debug] Connection id ""0HLA0JI6KR8TP"" disconnecting. +2017-12-11 19:23:19.044 +05:30 [Debug] Connection id ""0HLA0JI6KR8TR"" sending FIN. +2017-12-11 19:23:19.045 +05:30 [Debug] Connection id ""0HLA0JI6KR8TT"" disconnecting. +2017-12-11 19:23:19.045 +05:30 [Debug] Connection id ""0HLA0JI6KR8TP"" sending FIN. +2017-12-11 19:23:19.046 +05:30 [Debug] Connection id ""0HLA0JI6KR8TT"" sending FIN. +2017-12-11 19:23:19.046 +05:30 [Debug] Connection id ""0HLA0JI6KR8TT"" sent FIN with status "0". +2017-12-11 19:23:19.047 +05:30 [Debug] Connection id ""0HLA0JI6KR8TT"" stopped. +2017-12-11 19:23:19.047 +05:30 [Debug] Connection id ""0HLA0JI6KR8TS"" disconnecting. +2017-12-11 19:23:19.047 +05:30 [Debug] Connection id ""0HLA0JI6KR8TP"" sent FIN with status "0". +2017-12-11 19:23:19.048 +05:30 [Debug] Connection id ""0HLA0JI6KR8TP"" stopped. +2017-12-11 19:23:19.044 +05:30 [Debug] Connection id ""0HLA0JI6KR8TQ"" sent FIN with status "0". +2017-12-11 19:23:19.048 +05:30 [Debug] Connection id ""0HLA0JI6KR8TR"" sent FIN with status "0". +2017-12-11 19:23:19.048 +05:30 [Debug] Connection id ""0HLA0JI6KR8TQ"" stopped. +2017-12-11 19:23:19.048 +05:30 [Debug] Connection id ""0HLA0JI6KR8TR"" stopped. +2017-12-11 19:23:19.049 +05:30 [Debug] Connection id ""0HLA0JI6KR8TS"" sending FIN. +2017-12-11 19:23:19.447 +05:30 [Debug] Connection id ""0HLA0JI6KR8TS"" sent FIN with status "0". +2017-12-11 19:23:19.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:19.515 +05:30 [Debug] Connection id ""0HLA0JI6KR8TS"" stopped. +2017-12-11 19:23:19.515 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:23:19.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:19.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:19.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 193117.8614ms +2017-12-11 19:23:19.519 +05:30 [Information] Connection id ""0HLA0JI6KR8TO"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-11 19:23:19.520 +05:30 [Information] Request finished in 193126.9767ms 200 application/json; charset=utf-8 +2017-12-11 19:23:19.520 +05:30 [Debug] Connection id ""0HLA0JI6KR8TO"" disconnecting. +2017-12-11 19:23:19.523 +05:30 [Debug] Connection id ""0HLA0JI6KR8TO"" stopped. +2017-12-11 19:23:24.713 +05:30 [Debug] Connection id ""0HLA0JI6KR8TU"" started. +2017-12-11 19:23:24.714 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-11 19:23:24.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-11 19:23:24.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-11 19:23:27.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-11 19:23:30.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:30.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:30.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:30.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6100.7364ms +2017-12-11 19:23:30.820 +05:30 [Information] Request finished in 6105.6369ms 200 application/json; charset=utf-8 +2017-12-11 19:23:30.820 +05:30 [Debug] Connection id ""0HLA0JI6KR8TU"" completed keep alive response. +2017-12-11 19:23:31.844 +05:30 [Debug] Connection id ""0HLA0JI6KR8TV"" started. +2017-12-11 19:23:31.844 +05:30 [Debug] Connection id ""0HLA0JI6KR8U1"" started. +2017-12-11 19:23:31.844 +05:30 [Debug] Connection id ""0HLA0JI6KR8U0"" started. +2017-12-11 19:23:31.852 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-11 19:23:31.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-11 19:23:31.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-11 19:23:31.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-11 19:23:31.857 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-11 19:23:31.857 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-11 19:23:31.860 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-11 19:23:31.861 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-11 19:23:31.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-11 19:23:31.878 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-11 19:23:31.879 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-11 19:23:31.880 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-11 19:23:31.951 +05:30 [Debug] Connection id ""0HLA0JI6KR8U2"" started. +2017-12-11 19:23:31.951 +05:30 [Debug] Connection id ""0HLA0JI6KR8U3"" started. +2017-12-11 19:23:31.955 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-11 19:23:31.955 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-11 19:23:31.956 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-11 19:23:31.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-11 19:23:31.956 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-11 19:23:31.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-11 19:23:34.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:23:34.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:23:34.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:34.605 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:23:34.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:34.606 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:34.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 2749.0103ms +2017-12-11 19:23:34.611 +05:30 [Information] Request finished in 2775.4202ms 200 application/json; charset=utf-8 +2017-12-11 19:23:34.612 +05:30 [Debug] Connection id ""0HLA0JI6KR8TU"" completed keep alive response. +2017-12-11 19:23:34.625 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:23:34.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-11 19:23:34.627 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-11 19:23:34.946 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:23:34.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:23:34.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:23:35.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:23:35.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:35.522 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:23:35.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:35.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:35.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3648.4798ms +2017-12-11 19:23:35.532 +05:30 [Information] Request finished in 3659.3946ms 200 application/json; charset=utf-8 +2017-12-11 19:23:35.533 +05:30 [Debug] Connection id ""0HLA0JI6KR8TV"" completed keep alive response. +2017-12-11 19:23:36.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:36.801 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:23:36.801 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:36.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:36.808 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4845.889ms +2017-12-11 19:23:36.811 +05:30 [Information] Request finished in 4857.6124ms 200 application/json; charset=utf-8 +2017-12-11 19:23:36.811 +05:30 [Debug] Connection id ""0HLA0JI6KR8U2"" completed keep alive response. +2017-12-11 19:23:37.284 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:37.284 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:23:37.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:37.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:37.287 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5424.2745ms +2017-12-11 19:23:37.292 +05:30 [Information] Request finished in 5434.5925ms 200 application/json; charset=utf-8 +2017-12-11 19:23:37.292 +05:30 [Debug] Connection id ""0HLA0JI6KR8U0"" completed keep alive response. +2017-12-11 19:23:37.680 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:37.681 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:23:37.681 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:23:37.681 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:37.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:37.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:37.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5737.3724ms +2017-12-11 19:23:37.711 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:23:37.711 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:37.713 +05:30 [Information] Request finished in 5757.8352ms 200 application/json; charset=utf-8 +2017-12-11 19:23:37.713 +05:30 [Debug] Connection id ""0HLA0JI6KR8U3"" completed keep alive response. +2017-12-11 19:23:37.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:37.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5857.2296ms +2017-12-11 19:23:37.719 +05:30 [Information] Request finished in 5870.9923ms 200 application/json; charset=utf-8 +2017-12-11 19:23:37.720 +05:30 [Debug] Connection id ""0HLA0JI6KR8U1"" completed keep alive response. +2017-12-11 19:23:37.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:37.943 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:23:37.943 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:37.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:37.945 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3317.6062ms +2017-12-11 19:23:37.948 +05:30 [Information] Request finished in 3329.3443ms 200 application/json; charset=utf-8 +2017-12-11 19:23:37.948 +05:30 [Debug] Connection id ""0HLA0JI6KR8TU"" completed keep alive response. +2017-12-11 19:23:38.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:23:38.015 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 19:23:38.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 19:23:38.016 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-11 19:23:38.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-11 19:23:38.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-11 19:23:38.023 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-11 19:23:38.023 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-11 19:23:38.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-11 19:23:38.031 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-11 19:23:38.032 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-11 19:23:38.032 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-11 19:23:40.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-11 19:23:42.213 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:23:42.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:23:59.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:23:59.073 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:23:59.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:23:59.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:23:59.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 21617.6586ms +2017-12-11 19:24:02.163 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-11 19:24:05.295 +05:30 [Information] Request finished in 24156.5847ms 200 application/json; charset=utf-8 +2017-12-11 19:24:06.977 +05:30 [Debug] Connection id ""0HLA0JI6KR8TV"" completed keep alive response. +2017-12-11 19:24:07.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:24:07.003 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:24:07.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:24:07.004 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-11 19:24:07.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-11 19:24:07.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-11 19:24:07.028 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:24:07.035 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 28999.7872ms +2017-12-11 19:24:07.038 +05:30 [Information] Request finished in 29025.4615ms 200 application/json; charset=utf-8 +2017-12-11 19:24:07.038 +05:30 [Debug] Connection id ""0HLA0JI6KR8U2"" completed keep alive response. +2017-12-11 19:24:07.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:24:07.218 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:24:07.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:24:07.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:24:07.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 29195.1098ms +2017-12-11 19:24:07.224 +05:30 [Information] Request finished in 29211.0297ms 200 application/json; charset=utf-8 +2017-12-11 19:24:07.224 +05:30 [Debug] Connection id ""0HLA0JI6KR8U0"" completed keep alive response. +2017-12-11 19:24:10.098 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-11 19:24:10.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:24:10.701 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:24:10.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:24:10.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:24:10.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3698.2411ms +2017-12-11 19:24:10.745 +05:30 [Information] Request finished in 3743.5506ms 200 application/json; charset=utf-8 +2017-12-11 19:24:10.746 +05:30 [Debug] Connection id ""0HLA0JI6KR8U1"" completed keep alive response. +2017-12-11 19:24:10.771 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-11 19:24:10.771 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-11 19:24:10.771 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-11 19:24:10.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-11 19:24:10.779 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 32754.7761ms +2017-12-11 19:24:10.787 +05:30 [Information] Request finished in 32771.23ms 200 application/json; charset=utf-8 +2017-12-11 19:24:10.788 +05:30 [Debug] Connection id ""0HLA0JI6KR8U3"" completed keep alive response. +2017-12-11 19:25:37.622 +05:30 [Debug] Connection id ""0HLA0JI6KR8TU"" received FIN. +2017-12-11 19:25:37.622 +05:30 [Debug] Connection id ""0HLA0JI6KR8TV"" received FIN. +2017-12-11 19:25:37.622 +05:30 [Debug] Connection id ""0HLA0JI6KR8U1"" received FIN. +2017-12-11 19:25:37.622 +05:30 [Debug] Connection id ""0HLA0JI6KR8U2"" received FIN. +2017-12-11 19:25:37.622 +05:30 [Debug] Connection id ""0HLA0JI6KR8TU"" disconnecting. +2017-12-11 19:25:37.623 +05:30 [Debug] Connection id ""0HLA0JI6KR8U0"" received FIN. +2017-12-11 19:25:37.623 +05:30 [Debug] Connection id ""0HLA0JI6KR8TV"" disconnecting. +2017-12-11 19:25:37.622 +05:30 [Debug] Connection id ""0HLA0JI6KR8U3"" received FIN. +2017-12-11 19:25:37.623 +05:30 [Debug] Connection id ""0HLA0JI6KR8TU"" sending FIN. +2017-12-11 19:25:37.623 +05:30 [Debug] Connection id ""0HLA0JI6KR8TV"" sending FIN. +2017-12-11 19:25:37.624 +05:30 [Debug] Connection id ""0HLA0JI6KR8TU"" sent FIN with status "0". +2017-12-11 19:25:37.623 +05:30 [Debug] Connection id ""0HLA0JI6KR8U2"" disconnecting. +2017-12-11 19:25:37.624 +05:30 [Debug] Connection id ""0HLA0JI6KR8TV"" sent FIN with status "0". +2017-12-11 19:25:37.624 +05:30 [Debug] Connection id ""0HLA0JI6KR8TU"" stopped. +2017-12-11 19:25:37.625 +05:30 [Debug] Connection id ""0HLA0JI6KR8TV"" stopped. +2017-12-11 19:25:37.624 +05:30 [Debug] Connection id ""0HLA0JI6KR8U0"" disconnecting. +2017-12-11 19:25:37.623 +05:30 [Debug] Connection id ""0HLA0JI6KR8U1"" disconnecting. +2017-12-11 19:25:37.647 +05:30 [Debug] Connection id ""0HLA0JI6KR8U3"" disconnecting. +2017-12-11 19:25:37.625 +05:30 [Debug] Connection id ""0HLA0JI6KR8U2"" sending FIN. +2017-12-11 19:25:37.647 +05:30 [Debug] Connection id ""0HLA0JI6KR8U1"" sending FIN. +2017-12-11 19:25:37.648 +05:30 [Debug] Connection id ""0HLA0JI6KR8U3"" sending FIN. +2017-12-11 19:25:37.647 +05:30 [Debug] Connection id ""0HLA0JI6KR8U0"" sending FIN. +2017-12-11 19:25:37.648 +05:30 [Debug] Connection id ""0HLA0JI6KR8U3"" sent FIN with status "0". +2017-12-11 19:25:37.648 +05:30 [Debug] Connection id ""0HLA0JI6KR8U0"" sent FIN with status "0". +2017-12-11 19:25:37.648 +05:30 [Debug] Connection id ""0HLA0JI6KR8U0"" stopped. +2017-12-11 19:25:37.648 +05:30 [Debug] Connection id ""0HLA0JI6KR8U3"" stopped. +2017-12-11 19:25:37.649 +05:30 [Debug] Connection id ""0HLA0JI6KR8U2"" sent FIN with status "0". +2017-12-11 19:25:37.649 +05:30 [Debug] Connection id ""0HLA0JI6KR8U1"" sent FIN with status "0". +2017-12-11 19:25:37.649 +05:30 [Debug] Connection id ""0HLA0JI6KR8U2"" stopped. +2017-12-11 19:25:37.650 +05:30 [Debug] Connection id ""0HLA0JI6KR8U1"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171212.txt b/src/Api.Socioboard/wwwroot/log/log-20171212.txt new file mode 100644 index 000000000..bac7c467b --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171212.txt @@ -0,0 +1,1715 @@ +2017-12-12 10:48:33.074 +05:30 [Debug] Hosting starting +2017-12-12 10:48:33.801 +05:30 [Debug] Hosting started +2017-12-12 10:48:33.848 +05:30 [Debug] Connection id ""0HLA13V56D3IO"" started. +2017-12-12 10:48:33.852 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" started. +2017-12-12 10:48:34.073 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-12 10:48:34.076 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-12 10:48:34.177 +05:30 [Information] Request finished in 142.0914ms 200 +2017-12-12 10:48:34.323 +05:30 [Debug] Connection id ""0HLA13V56D3IO"" completed keep alive response. +2017-12-12 10:48:36.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-12 10:48:36.591 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"8084a20b-c555-48f9-a76f-d41cf6d2c094"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-12 10:48:37.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-12 10:48:37.199 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-12 10:48:37.202 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-12 10:48:37.254 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:48:37.261 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:48:37.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:48:37.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 557.2037ms +2017-12-12 10:48:37.676 +05:30 [Information] Request finished in 3676.744ms 200 application/json; charset=utf-8 +2017-12-12 10:48:37.678 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" completed keep alive response. +2017-12-12 10:48:37.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-12 10:48:37.974 +05:30 [Debug] Request did not match any routes. +2017-12-12 10:48:37.989 +05:30 [Debug] The request path "" does not match the path filter +2017-12-12 10:48:37.992 +05:30 [Information] Request finished in 21.1292ms 404 +2017-12-12 10:48:37.992 +05:30 [Debug] Connection id ""0HLA13V56D3IO"" completed keep alive response. +2017-12-12 10:48:56.841 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-12 10:48:56.847 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-12 10:48:56.850 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-12 10:49:00.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-12 10:49:12.695 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:12.755 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:12.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:13.020 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 16168.2204ms +2017-12-12 10:49:13.024 +05:30 [Information] Request finished in 16190.3243ms 200 application/json; charset=utf-8 +2017-12-12 10:49:13.024 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" completed keep alive response. +2017-12-12 10:49:14.357 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-12 10:49:14.358 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-12 10:49:14.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-12 10:49:17.451 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-12 10:49:19.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:19.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:19.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:19.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5243.3905ms +2017-12-12 10:49:19.605 +05:30 [Information] Request finished in 5247.8622ms 200 application/json; charset=utf-8 +2017-12-12 10:49:19.605 +05:30 [Debug] Connection id ""0HLA13V56D3IO"" completed keep alive response. +2017-12-12 10:49:21.405 +05:30 [Debug] Connection id ""0HLA13V56D3IQ"" started. +2017-12-12 10:49:21.406 +05:30 [Debug] Connection id ""0HLA13V56D3IR"" started. +2017-12-12 10:49:21.412 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-12 10:49:21.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-12 10:49:21.416 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-12 10:49:21.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-12 10:49:21.416 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-12 10:49:21.417 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-12 10:49:21.424 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-12 10:49:21.425 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-12 10:49:21.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-12 10:49:21.428 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-12 10:49:21.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-12 10:49:21.464 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-12 10:49:21.504 +05:30 [Debug] Connection id ""0HLA13V56D3IS"" started. +2017-12-12 10:49:21.504 +05:30 [Debug] Connection id ""0HLA13V56D3IT"" started. +2017-12-12 10:49:21.508 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-12 10:49:21.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-12 10:49:21.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-12 10:49:22.056 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-12 10:49:22.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-12 10:49:22.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-12 10:49:25.082 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:49:25.650 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:25.650 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:49:25.650 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:25.651 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:25.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4238.7198ms +2017-12-12 10:49:25.660 +05:30 [Information] Request finished in 4257.8477ms 200 application/json; charset=utf-8 +2017-12-12 10:49:25.661 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" completed keep alive response. +2017-12-12 10:49:25.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:49:25.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:49:25.997 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-12 10:49:26.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-12 10:49:26.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:49:26.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:49:26.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:49:26.070 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-12 10:49:26.520 +05:30 [Debug] Connection id ""0HLA13V56D3IU"" started. +2017-12-12 10:49:26.552 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:49:26.553 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:49:26.554 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:49:26.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:26.948 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:49:26.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:26.950 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:26.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4905.6699ms +2017-12-12 10:49:26.972 +05:30 [Information] Request finished in 4916.7334ms 200 application/json; charset=utf-8 +2017-12-12 10:49:26.973 +05:30 [Debug] Connection id ""0HLA13V56D3IT"" completed keep alive response. +2017-12-12 10:49:28.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:28.201 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:49:28.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:28.203 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:28.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6776.0047ms +2017-12-12 10:49:28.206 +05:30 [Information] Request finished in 6797.7787ms 200 application/json; charset=utf-8 +2017-12-12 10:49:28.206 +05:30 [Debug] Connection id ""0HLA13V56D3IQ"" completed keep alive response. +2017-12-12 10:49:28.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:28.305 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:49:28.306 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:28.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:28.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6846.2852ms +2017-12-12 10:49:28.316 +05:30 [Information] Request finished in 6907.163ms 200 application/json; charset=utf-8 +2017-12-12 10:49:28.316 +05:30 [Debug] Connection id ""0HLA13V56D3IO"" completed keep alive response. +2017-12-12 10:49:28.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:28.766 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:49:28.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:28.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:28.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7256.6186ms +2017-12-12 10:49:28.775 +05:30 [Information] Request finished in 7268.1162ms 200 application/json; charset=utf-8 +2017-12-12 10:49:28.775 +05:30 [Debug] Connection id ""0HLA13V56D3IS"" completed keep alive response. +2017-12-12 10:49:28.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:28.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:49:28.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:28.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:28.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7460.9404ms +2017-12-12 10:49:28.884 +05:30 [Information] Request finished in 7471.8798ms 200 application/json; charset=utf-8 +2017-12-12 10:49:28.885 +05:30 [Debug] Connection id ""0HLA13V56D3IR"" completed keep alive response. +2017-12-12 10:49:29.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:49:29.603 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:49:30.177 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:30.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:30.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:30.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3626.2663ms +2017-12-12 10:49:30.183 +05:30 [Information] Request finished in 3629.9035ms 200 application/json; charset=utf-8 +2017-12-12 10:49:30.183 +05:30 [Debug] Connection id ""0HLA13V56D3IU"" completed keep alive response. +2017-12-12 10:49:31.046 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:49:31.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:49:31.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:49:31.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:31.886 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:49:31.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:31.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:31.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5861.9121ms +2017-12-12 10:49:31.977 +05:30 [Information] Request finished in 6043.2654ms 200 application/json; charset=utf-8 +2017-12-12 10:49:31.978 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" completed keep alive response. +2017-12-12 10:49:31.997 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" received FIN. +2017-12-12 10:49:31.998 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" disconnecting. +2017-12-12 10:49:31.999 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" sending FIN. +2017-12-12 10:49:32.006 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" sent FIN with status "0". +2017-12-12 10:49:32.009 +05:30 [Debug] Connection id ""0HLA13V56D3IP"" stopped. +2017-12-12 10:49:34.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:49:34.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:34.678 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:34.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:34.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3630.8415ms +2017-12-12 10:49:34.684 +05:30 [Information] Request finished in 3637.9483ms 200 application/json; charset=utf-8 +2017-12-12 10:49:34.685 +05:30 [Debug] Connection id ""0HLA13V56D3IT"" completed keep alive response. +2017-12-12 10:49:34.709 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:49:34.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:49:34.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:49:37.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:49:38.327 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:38.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:38.328 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:38.330 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3618.5965ms +2017-12-12 10:49:38.332 +05:30 [Information] Request finished in 3623.2787ms 200 application/json; charset=utf-8 +2017-12-12 10:49:38.332 +05:30 [Debug] Connection id ""0HLA13V56D3IQ"" completed keep alive response. +2017-12-12 10:49:38.337 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:49:38.338 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:49:38.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:49:41.378 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:49:41.658 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:49:41.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:49:41.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:49:41.963 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:41.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:41.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:41.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3626.5431ms +2017-12-12 10:49:41.968 +05:30 [Information] Request finished in 3631.2806ms 200 application/json; charset=utf-8 +2017-12-12 10:49:41.969 +05:30 [Debug] Connection id ""0HLA13V56D3IO"" completed keep alive response. +2017-12-12 10:49:44.781 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:49:45.346 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:45.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:45.347 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:45.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3687.8171ms +2017-12-12 10:49:45.350 +05:30 [Information] Request finished in 3691.4524ms 200 application/json; charset=utf-8 +2017-12-12 10:49:45.351 +05:30 [Debug] Connection id ""0HLA13V56D3IS"" completed keep alive response. +2017-12-12 10:49:51.212 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:49:51.213 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:49:51.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:49:54.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:49:54.826 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:49:54.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:49:54.828 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:49:54.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3613.0089ms +2017-12-12 10:49:54.831 +05:30 [Information] Request finished in 3618.7047ms 200 application/json; charset=utf-8 +2017-12-12 10:49:54.832 +05:30 [Debug] Connection id ""0HLA13V56D3IR"" completed keep alive response. +2017-12-12 10:50:35.423 +05:30 [Debug] Connection id ""0HLA13V56D3IR"" received FIN. +2017-12-12 10:50:52.920 +05:30 [Debug] Hosting starting +2017-12-12 10:50:53.190 +05:30 [Debug] Hosting started +2017-12-12 10:50:53.400 +05:30 [Debug] Connection id ""0HLA140EP9B1M"" started. +2017-12-12 10:50:53.400 +05:30 [Debug] Connection id ""0HLA140EP9B1N"" started. +2017-12-12 10:50:53.586 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-12 10:50:53.586 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-12 10:50:53.645 +05:30 [Information] Request finished in 107.0723ms 200 +2017-12-12 10:50:53.715 +05:30 [Debug] Connection id ""0HLA140EP9B1M"" completed keep alive response. +2017-12-12 10:50:54.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-12 10:50:55.015 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"be80a860-5678-4850-85e9-948e02c9b0f8"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-12 10:50:55.220 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-12 10:50:55.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-12 10:50:55.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-12 10:50:55.413 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:50:55.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:50:55.423 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:50:55.526 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:50:55.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:50:55.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:50:55.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 559.0492ms +2017-12-12 10:50:55.889 +05:30 [Information] Request finished in 2361.3829ms 200 application/json; charset=utf-8 +2017-12-12 10:50:55.892 +05:30 [Debug] Connection id ""0HLA140EP9B1N"" completed keep alive response. +2017-12-12 10:50:55.962 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-12 10:50:55.965 +05:30 [Debug] Request did not match any routes. +2017-12-12 10:50:55.982 +05:30 [Debug] The request path "" does not match the path filter +2017-12-12 10:50:55.984 +05:30 [Information] Request finished in 22.5545ms 404 +2017-12-12 10:50:55.985 +05:30 [Debug] Connection id ""0HLA140EP9B1N"" completed keep alive response. +2017-12-12 10:50:59.040 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:51:05.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:51:05.435 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:51:05.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:51:05.443 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9911.5134ms +2017-12-12 10:51:05.446 +05:30 [Information] Request finished in 9919.0759ms 200 application/json; charset=utf-8 +2017-12-12 10:51:05.446 +05:30 [Debug] Connection id ""0HLA140EP9B1M"" completed keep alive response. +2017-12-12 10:51:14.800 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:51:14.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:51:14.802 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:51:17.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:51:18.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:51:18.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:51:18.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:51:18.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3712.3412ms +2017-12-12 10:51:18.520 +05:30 [Information] Request finished in 3719.3131ms 200 application/json; charset=utf-8 +2017-12-12 10:51:18.522 +05:30 [Debug] Connection id ""0HLA140EP9B1N"" completed keep alive response. +2017-12-12 10:51:18.658 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:51:18.658 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:51:18.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:51:21.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:51:22.307 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:51:22.307 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:51:22.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:51:22.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3650.0695ms +2017-12-12 10:51:22.311 +05:30 [Information] Request finished in 3662.5219ms 200 application/json; charset=utf-8 +2017-12-12 10:51:22.311 +05:30 [Debug] Connection id ""0HLA140EP9B1M"" completed keep alive response. +2017-12-12 10:51:22.343 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:51:22.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:51:22.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:51:25.402 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:51:25.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:51:25.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:51:25.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:51:25.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3652.3921ms +2017-12-12 10:51:26.003 +05:30 [Information] Request finished in 3661.6934ms 200 application/json; charset=utf-8 +2017-12-12 10:51:26.004 +05:30 [Debug] Connection id ""0HLA140EP9B1N"" completed keep alive response. +2017-12-12 10:51:26.300 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:51:26.300 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:51:26.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:51:29.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:51:29.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:51:29.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:51:29.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:51:29.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3642.7587ms +2017-12-12 10:51:29.946 +05:30 [Information] Request finished in 3646.4553ms 200 application/json; charset=utf-8 +2017-12-12 10:51:29.946 +05:30 [Debug] Connection id ""0HLA140EP9B1M"" completed keep alive response. +2017-12-12 10:53:22.227 +05:30 [Debug] Hosting starting +2017-12-12 10:53:22.504 +05:30 [Debug] Hosting started +2017-12-12 10:53:22.696 +05:30 [Debug] Connection id ""0HLA141R91PNL"" started. +2017-12-12 10:53:22.706 +05:30 [Debug] Connection id ""0HLA141R91PNM"" started. +2017-12-12 10:53:22.899 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-12 10:53:22.899 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-12 10:53:22.978 +05:30 [Information] Request finished in 113.0374ms 200 +2017-12-12 10:53:23.047 +05:30 [Debug] Connection id ""0HLA141R91PNL"" completed keep alive response. +2017-12-12 10:53:24.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-12 10:53:24.448 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a5fb4ce7-474b-47bf-a49b-19fb82b2fb8c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-12 10:53:25.139 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-12 10:53:25.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-12 10:53:25.357 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-12 10:53:25.426 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:53:25.433 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:53:25.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:53:25.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 781.4135ms +2017-12-12 10:53:26.110 +05:30 [Information] Request finished in 3250.2638ms 200 application/json; charset=utf-8 +2017-12-12 10:53:26.113 +05:30 [Debug] Connection id ""0HLA141R91PNM"" completed keep alive response. +2017-12-12 10:53:26.524 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:53:26.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:53:26.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:53:30.184 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:53:38.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:53:38.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:53:38.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:53:38.043 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11514.6986ms +2017-12-12 10:53:38.047 +05:30 [Information] Request finished in 11530.931ms 200 application/json; charset=utf-8 +2017-12-12 10:53:38.048 +05:30 [Debug] Connection id ""0HLA141R91PNL"" completed keep alive response. +2017-12-12 10:53:50.842 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:53:50.842 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:53:50.844 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:53:53.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:53:53.198 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:53:53.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:53:53.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:53:54.019 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:53:54.020 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:53:54.020 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:53:54.022 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3176.9189ms +2017-12-12 10:53:54.025 +05:30 [Information] Request finished in 3183.3512ms 200 application/json; charset=utf-8 +2017-12-12 10:53:54.025 +05:30 [Debug] Connection id ""0HLA141R91PNM"" completed keep alive response. +2017-12-12 10:53:54.083 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:53:54.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:53:54.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:53:56.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:53:56.819 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:53:56.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:53:56.822 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:53:56.823 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3622.8265ms +2017-12-12 10:53:56.826 +05:30 [Information] Request finished in 3628.2116ms 200 application/json; charset=utf-8 +2017-12-12 10:53:56.827 +05:30 [Debug] Connection id ""0HLA141R91PNL"" completed keep alive response. +2017-12-12 10:53:57.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:53:57.739 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:53:57.740 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:53:57.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:53:57.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3752.0777ms +2017-12-12 10:53:57.951 +05:30 [Information] Request finished in 3810.6948ms 200 application/json; charset=utf-8 +2017-12-12 10:53:57.951 +05:30 [Debug] Connection id ""0HLA141R91PNM"" completed keep alive response. +2017-12-12 10:53:58.017 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:53:58.018 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:53:58.018 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:53:59.742 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:53:59.743 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:53:59.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:54:01.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:54:01.652 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:01.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:01.653 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:01.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3634.9452ms +2017-12-12 10:54:01.658 +05:30 [Information] Request finished in 3644.848ms 200 application/json; charset=utf-8 +2017-12-12 10:54:01.659 +05:30 [Debug] Connection id ""0HLA141R91PNL"" completed keep alive response. +2017-12-12 10:54:02.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:54:03.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:03.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:03.395 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:03.397 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3652.1573ms +2017-12-12 10:54:03.402 +05:30 [Information] Request finished in 3658.8751ms 200 application/json; charset=utf-8 +2017-12-12 10:54:03.403 +05:30 [Debug] Connection id ""0HLA141R91PNM"" completed keep alive response. +2017-12-12 10:54:03.452 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-12 10:54:03.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-12 10:54:03.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-12 10:54:06.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-12 10:54:10.550 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:10.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:10.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:10.684 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 7229.2792ms +2017-12-12 10:54:10.687 +05:30 [Information] Request finished in 7235.5323ms 200 application/json; charset=utf-8 +2017-12-12 10:54:10.688 +05:30 [Debug] Connection id ""0HLA141R91PNL"" completed keep alive response. +2017-12-12 10:54:11.077 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:54:11.078 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:54:11.078 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:54:14.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:54:15.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:15.340 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:15.341 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:15.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4262.4441ms +2017-12-12 10:54:15.344 +05:30 [Information] Request finished in 4266.8566ms 200 application/json; charset=utf-8 +2017-12-12 10:54:15.344 +05:30 [Debug] Connection id ""0HLA141R91PNM"" completed keep alive response. +2017-12-12 10:54:15.405 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-12 10:54:15.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-12 10:54:15.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-12 10:54:18.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-12 10:54:22.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:22.029 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:22.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:22.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6692.2953ms +2017-12-12 10:54:22.103 +05:30 [Information] Request finished in 6698.5503ms 200 application/json; charset=utf-8 +2017-12-12 10:54:22.103 +05:30 [Debug] Connection id ""0HLA141R91PNL"" completed keep alive response. +2017-12-12 10:54:24.072 +05:30 [Debug] Connection id ""0HLA141R91PNN"" started. +2017-12-12 10:54:24.076 +05:30 [Debug] Connection id ""0HLA141R91PNO"" started. +2017-12-12 10:54:24.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-12 10:54:24.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-12 10:54:24.103 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-12 10:54:24.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-12 10:54:24.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-12 10:54:24.135 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-12 10:54:24.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-12 10:54:24.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-12 10:54:24.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-12 10:54:24.149 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-12 10:54:24.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-12 10:54:24.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-12 10:54:24.205 +05:30 [Debug] Connection id ""0HLA141R91PNP"" started. +2017-12-12 10:54:24.205 +05:30 [Debug] Connection id ""0HLA141R91PNQ"" started. +2017-12-12 10:54:25.221 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-12 10:54:25.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-12 10:54:25.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-12 10:54:26.220 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-12 10:54:26.220 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-12 10:54:26.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-12 10:54:29.442 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:54:29.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:54:29.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:54:29.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:54:29.682 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:54:29.682 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:54:31.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:31.791 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:54:31.791 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:31.792 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:31.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5577.2493ms +2017-12-12 10:54:31.805 +05:30 [Information] Request finished in 5584.7561ms 200 application/json; charset=utf-8 +2017-12-12 10:54:31.806 +05:30 [Debug] Connection id ""0HLA141R91PNQ"" completed keep alive response. +2017-12-12 10:54:31.813 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-12 10:54:31.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-12 10:54:31.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-12 10:54:32.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:32.686 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:54:32.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:32.687 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:32.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8554.2416ms +2017-12-12 10:54:32.696 +05:30 [Information] Request finished in 8614.8007ms 200 application/json; charset=utf-8 +2017-12-12 10:54:32.696 +05:30 [Debug] Connection id ""0HLA141R91PNM"" completed keep alive response. +2017-12-12 10:54:33.222 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:33.222 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:54:33.222 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:33.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:33.246 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 9114.1427ms +2017-12-12 10:54:33.257 +05:30 [Information] Request finished in 9186.3561ms 200 application/json; charset=utf-8 +2017-12-12 10:54:33.258 +05:30 [Debug] Connection id ""0HLA141R91PNL"" completed keep alive response. +2017-12-12 10:54:33.325 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:33.325 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:54:33.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:33.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:33.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 9191.3123ms +2017-12-12 10:54:33.333 +05:30 [Information] Request finished in 9233.1975ms 200 application/json; charset=utf-8 +2017-12-12 10:54:33.333 +05:30 [Debug] Connection id ""0HLA141R91PNN"" completed keep alive response. +2017-12-12 10:54:33.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:33.426 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:54:33.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:33.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:33.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 9277.0163ms +2017-12-12 10:54:33.435 +05:30 [Information] Request finished in 9343.0033ms 200 application/json; charset=utf-8 +2017-12-12 10:54:33.436 +05:30 [Debug] Connection id ""0HLA141R91PNO"" completed keep alive response. +2017-12-12 10:54:33.558 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:54:33.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:54:33.559 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:54:33.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:33.854 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:54:33.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:33.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:33.858 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 8631.9188ms +2017-12-12 10:54:33.860 +05:30 [Information] Request finished in 8638.9921ms 200 application/json; charset=utf-8 +2017-12-12 10:54:33.861 +05:30 [Debug] Connection id ""0HLA141R91PNP"" completed keep alive response. +2017-12-12 10:54:34.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 10:54:36.601 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:54:37.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:37.283 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:37.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:37.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3725.1243ms +2017-12-12 10:54:37.291 +05:30 [Information] Request finished in 3734.3046ms 200 application/json; charset=utf-8 +2017-12-12 10:54:37.292 +05:30 [Debug] Connection id ""0HLA141R91PNM"" completed keep alive response. +2017-12-12 10:54:37.766 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:54:37.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:54:37.768 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:54:38.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:38.289 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 10:54:38.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:38.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:38.378 +05:30 [Debug] Connection id ""0HLA141R91PNQ"" received FIN. +2017-12-12 10:54:38.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6562.9595ms +2017-12-12 10:54:38.385 +05:30 [Debug] Connection id ""0HLA141R91PNQ"" disconnecting. +2017-12-12 10:54:38.428 +05:30 [Information] Connection id ""0HLA141R91PNQ"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-12 10:54:38.428 +05:30 [Information] Request finished in 6576.1605ms 200 application/json; charset=utf-8 +2017-12-12 10:54:38.434 +05:30 [Debug] Connection id ""0HLA141R91PNQ"" stopped. +2017-12-12 10:54:40.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:54:41.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:41.407 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:41.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:41.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3641.9945ms +2017-12-12 10:54:41.414 +05:30 [Information] Request finished in 3648.7651ms 200 application/json; charset=utf-8 +2017-12-12 10:54:41.415 +05:30 [Debug] Connection id ""0HLA141R91PNL"" completed keep alive response. +2017-12-12 10:54:41.440 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:54:41.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:54:41.441 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:54:43.423 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:54:43.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:54:43.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:54:44.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:54:45.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:45.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:45.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:45.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3616.4107ms +2017-12-12 10:54:45.060 +05:30 [Information] Request finished in 3619.8104ms 200 application/json; charset=utf-8 +2017-12-12 10:54:45.061 +05:30 [Debug] Connection id ""0HLA141R91PNN"" completed keep alive response. +2017-12-12 10:54:45.065 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 10:54:45.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 10:54:45.066 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 10:54:46.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:54:47.009 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:47.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:47.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:47.014 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3586.9515ms +2017-12-12 10:54:47.016 +05:30 [Information] Request finished in 3593.4139ms 200 application/json; charset=utf-8 +2017-12-12 10:54:47.017 +05:30 [Debug] Connection id ""0HLA141R91PNO"" completed keep alive response. +2017-12-12 10:54:48.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 10:54:48.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 10:54:48.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 10:54:48.647 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 10:54:48.648 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3580.4309ms +2017-12-12 10:54:48.654 +05:30 [Information] Request finished in 3586.1821ms 200 application/json; charset=utf-8 +2017-12-12 10:54:48.655 +05:30 [Debug] Connection id ""0HLA141R91PNP"" completed keep alive response. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNM"" received FIN. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNL"" received FIN. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNM"" disconnecting. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNO"" received FIN. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNL"" disconnecting. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNN"" received FIN. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNO"" disconnecting. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNP"" received FIN. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNL"" sending FIN. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNM"" sending FIN. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNN"" disconnecting. +2017-12-12 10:57:03.477 +05:30 [Debug] Connection id ""0HLA141R91PNP"" disconnecting. +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNO"" sending FIN. +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNN"" sending FIN. +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNP"" sending FIN. +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNO"" sent FIN with status "0". +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNO"" stopped. +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNP"" sent FIN with status "0". +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNL"" sent FIN with status "0". +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNP"" stopped. +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNL"" stopped. +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNN"" sent FIN with status "0". +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNN"" stopped. +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNM"" sent FIN with status "0". +2017-12-12 10:57:03.493 +05:30 [Debug] Connection id ""0HLA141R91PNM"" stopped. +2017-12-12 11:03:45.089 +05:30 [Debug] Connection id ""0HLA141R91PNR"" started. +2017-12-12 11:03:45.090 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 11:03:45.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 11:03:45.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 11:03:48.119 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 11:03:50.191 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 11:03:50.191 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 11:03:50.192 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 11:03:50.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5101.1756ms +2017-12-12 11:03:50.195 +05:30 [Information] Request finished in 5104.5992ms 200 application/json; charset=utf-8 +2017-12-12 11:03:50.196 +05:30 [Debug] Connection id ""0HLA141R91PNR"" completed keep alive response. +2017-12-12 11:06:13.473 +05:30 [Debug] Connection id ""0HLA141R91PNR"" received FIN. +2017-12-12 11:06:13.474 +05:30 [Debug] Connection id ""0HLA141R91PNR"" disconnecting. +2017-12-12 11:06:13.477 +05:30 [Debug] Connection id ""0HLA141R91PNR"" sending FIN. +2017-12-12 11:06:13.477 +05:30 [Debug] Connection id ""0HLA141R91PNR"" sent FIN with status "0". +2017-12-12 11:06:13.478 +05:30 [Debug] Connection id ""0HLA141R91PNR"" stopped. +2017-12-12 12:34:17.059 +05:30 [Debug] Connection id ""0HLA141R91PNS"" started. +2017-12-12 12:34:17.061 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 12:34:17.061 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 12:34:17.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 12:34:20.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 12:34:22.197 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:34:22.198 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:34:22.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:34:22.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5139.864ms +2017-12-12 12:34:22.211 +05:30 [Information] Request finished in 5150.9119ms 200 application/json; charset=utf-8 +2017-12-12 12:34:22.212 +05:30 [Debug] Connection id ""0HLA141R91PNS"" completed keep alive response. +2017-12-12 12:35:33.297 +05:30 [Debug] Connection id ""0HLA141R91PNS"" received FIN. +2017-12-12 12:35:33.297 +05:30 [Debug] Connection id ""0HLA141R91PNS"" disconnecting. +2017-12-12 12:35:33.298 +05:30 [Debug] Connection id ""0HLA141R91PNS"" sending FIN. +2017-12-12 12:35:33.297 +05:30 [Debug] Connection id ""0HLA141R91PNT"" started. +2017-12-12 12:35:33.298 +05:30 [Debug] Connection id ""0HLA141R91PNS"" sent FIN with status "0". +2017-12-12 12:35:33.298 +05:30 [Debug] Connection id ""0HLA141R91PNS"" stopped. +2017-12-12 12:35:33.324 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 12:35:33.326 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 12:35:33.326 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 12:35:36.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 12:35:36.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:35:36.884 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:35:36.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:35:36.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3558.383ms +2017-12-12 12:35:36.887 +05:30 [Information] Request finished in 3588.3137ms 200 application/json; charset=utf-8 +2017-12-12 12:35:36.888 +05:30 [Debug] Connection id ""0HLA141R91PNT"" completed keep alive response. +2017-12-12 12:35:38.575 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 12:35:38.575 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 12:35:38.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 12:35:41.614 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 12:35:42.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:35:42.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:35:42.157 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:35:42.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3582.4145ms +2017-12-12 12:35:42.161 +05:30 [Information] Request finished in 3586.2281ms 200 application/json; charset=utf-8 +2017-12-12 12:35:42.161 +05:30 [Debug] Connection id ""0HLA141R91PNT"" completed keep alive response. +2017-12-12 12:35:42.167 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-12 12:35:42.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-12 12:35:42.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-12 12:35:45.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-12 12:35:46.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:35:46.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:35:46.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:35:46.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4728.8815ms +2017-12-12 12:35:46.902 +05:30 [Information] Request finished in 4733.0864ms 200 application/json; charset=utf-8 +2017-12-12 12:35:46.903 +05:30 [Debug] Connection id ""0HLA141R91PNT"" completed keep alive response. +2017-12-12 12:35:46.942 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 12:35:46.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 12:35:46.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 12:35:50.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 12:35:50.533 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:35:50.534 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:35:50.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:35:50.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3591.7252ms +2017-12-12 12:35:50.537 +05:30 [Information] Request finished in 3597.1096ms 200 application/json; charset=utf-8 +2017-12-12 12:35:50.537 +05:30 [Debug] Connection id ""0HLA141R91PNT"" completed keep alive response. +2017-12-12 12:35:50.542 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-12 12:35:50.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-12 12:35:50.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-12 12:35:53.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-12 12:35:55.194 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:35:55.194 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:35:55.195 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:35:55.197 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4653.3575ms +2017-12-12 12:35:55.201 +05:30 [Information] Request finished in 4657.4995ms 200 application/json; charset=utf-8 +2017-12-12 12:35:55.201 +05:30 [Debug] Connection id ""0HLA141R91PNT"" completed keep alive response. +2017-12-12 12:35:56.499 +05:30 [Debug] Connection id ""0HLA141R91PNU"" started. +2017-12-12 12:35:56.500 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-12 12:35:56.500 +05:30 [Debug] Connection id ""0HLA141R91PNV"" started. +2017-12-12 12:35:56.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-12 12:35:56.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-12 12:35:56.500 +05:30 [Debug] Connection id ""0HLA141R91PO0"" started. +2017-12-12 12:35:56.506 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-12 12:35:56.504 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-12 12:35:56.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-12 12:35:56.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-12 12:35:56.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-12 12:35:56.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-12 12:35:56.517 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-12 12:35:56.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-12 12:35:56.517 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-12 12:35:56.592 +05:30 [Debug] Connection id ""0HLA141R91PO2"" started. +2017-12-12 12:35:56.592 +05:30 [Debug] Connection id ""0HLA141R91PO1"" started. +2017-12-12 12:35:57.461 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-12 12:35:57.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-12 12:35:57.462 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-12 12:35:58.459 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-12 12:35:58.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-12 12:35:58.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-12 12:36:01.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 12:36:01.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 12:36:01.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 12:36:01.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 12:36:01.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 12:36:01.659 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 12:36:02.785 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:36:02.786 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 12:36:02.786 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:36:02.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:36:02.789 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5325.4361ms +2017-12-12 12:36:02.794 +05:30 [Information] Request finished in 5332.4885ms 200 application/json; charset=utf-8 +2017-12-12 12:36:02.795 +05:30 [Debug] Connection id ""0HLA141R91PO2"" completed keep alive response. +2017-12-12 12:36:02.803 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-12 12:36:02.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-12 12:36:02.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-12 12:36:03.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:36:03.698 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 12:36:03.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:36:03.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:36:03.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7197.9265ms +2017-12-12 12:36:03.702 +05:30 [Information] Request finished in 7204.8639ms 200 application/json; charset=utf-8 +2017-12-12 12:36:03.703 +05:30 [Debug] Connection id ""0HLA141R91PNT"" completed keep alive response. +2017-12-12 12:36:03.820 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:36:03.820 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 12:36:03.821 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:36:03.821 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:36:03.822 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7314.2743ms +2017-12-12 12:36:03.824 +05:30 [Information] Request finished in 7322.1742ms 200 application/json; charset=utf-8 +2017-12-12 12:36:03.824 +05:30 [Debug] Connection id ""0HLA141R91PNV"" completed keep alive response. +2017-12-12 12:36:03.957 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:36:03.957 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 12:36:03.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:36:03.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:36:03.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7450.8877ms +2017-12-12 12:36:03.961 +05:30 [Information] Request finished in 7460.1228ms 200 application/json; charset=utf-8 +2017-12-12 12:36:03.962 +05:30 [Debug] Connection id ""0HLA141R91PNU"" completed keep alive response. +2017-12-12 12:36:04.197 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:36:04.197 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 12:36:04.197 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:36:04.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:36:04.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7681.5204ms +2017-12-12 12:36:04.203 +05:30 [Information] Request finished in 7686.5867ms 200 application/json; charset=utf-8 +2017-12-12 12:36:04.204 +05:30 [Debug] Connection id ""0HLA141R91PO0"" completed keep alive response. +2017-12-12 12:36:04.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:36:04.247 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 12:36:04.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:36:04.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:36:04.249 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5788.7433ms +2017-12-12 12:36:04.251 +05:30 [Information] Request finished in 5792.7096ms 200 application/json; charset=utf-8 +2017-12-12 12:36:04.252 +05:30 [Debug] Connection id ""0HLA141R91PO1"" completed keep alive response. +2017-12-12 12:36:05.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 12:36:08.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:36:08.328 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 12:36:08.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 12:36:08.329 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:36:08.332 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5526.4724ms +2017-12-12 12:36:08.335 +05:30 [Information] Request finished in 5533.0586ms 200 application/json; charset=utf-8 +2017-12-12 12:36:08.336 +05:30 [Debug] Connection id ""0HLA141R91PO2"" completed keep alive response. +2017-12-12 12:36:41.879 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=fb_1155481037833115,fb_1452799044811364&userId=48&message=none&scheduledatetime=Tue,%2012%20Dec%202017%2007:10:00%20GMT&localscheduletime=12/12/2017%2012:40&imagePath= multipart/form-data; boundary=----WebKitFormBoundaryxCoefkDFPr8cIt55 153 +2017-12-12 12:36:41.880 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-12 12:36:41.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-12 12:36:44.999 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "fb_1155481037833115,fb_1452799044811364", "48", "", "", "Tue, 12 Dec 2017 07:10:00 GMT", "12/12/2017 12:40", "", "
testing", "NoMedia"]) - ModelState is Valid +2017-12-12 12:36:45.784 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 07:10:00 GMT +2017-12-12 12:36:48.095 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 07:10:00 GMT +2017-12-12 12:36:49.825 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 12:36:49.826 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 12:36:49.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-12 12:36:49.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 12:36:49.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" in 7944.9097ms +2017-12-12 12:36:49.845 +05:30 [Information] Request finished in 7969.1197ms 200 text/plain; charset=utf-8 +2017-12-12 12:36:49.845 +05:30 [Debug] Connection id ""0HLA141R91PNT"" completed keep alive response. +2017-12-12 12:37:53.056 +05:30 [Debug] Connection id ""0HLA141R91PNV"" received FIN. +2017-12-12 12:37:53.056 +05:30 [Debug] Connection id ""0HLA141R91PO0"" received FIN. +2017-12-12 12:37:53.056 +05:30 [Debug] Connection id ""0HLA141R91PNV"" disconnecting. +2017-12-12 12:37:53.056 +05:30 [Debug] Connection id ""0HLA141R91PNU"" received FIN. +2017-12-12 12:37:53.057 +05:30 [Debug] Connection id ""0HLA141R91PO2"" received FIN. +2017-12-12 12:37:53.057 +05:30 [Debug] Connection id ""0HLA141R91PO0"" disconnecting. +2017-12-12 12:37:53.057 +05:30 [Debug] Connection id ""0HLA141R91PO1"" received FIN. +2017-12-12 12:37:53.057 +05:30 [Debug] Connection id ""0HLA141R91PNT"" received FIN. +2017-12-12 12:37:53.058 +05:30 [Debug] Connection id ""0HLA141R91PNV"" sending FIN. +2017-12-12 12:37:53.058 +05:30 [Debug] Connection id ""0HLA141R91PO0"" sending FIN. +2017-12-12 12:37:53.058 +05:30 [Debug] Connection id ""0HLA141R91PNU"" disconnecting. +2017-12-12 12:37:53.058 +05:30 [Debug] Connection id ""0HLA141R91PNV"" sent FIN with status "0". +2017-12-12 12:37:53.060 +05:30 [Debug] Connection id ""0HLA141R91PO2"" disconnecting. +2017-12-12 12:37:53.060 +05:30 [Debug] Connection id ""0HLA141R91PO1"" disconnecting. +2017-12-12 12:37:53.060 +05:30 [Debug] Connection id ""0HLA141R91PNT"" disconnecting. +2017-12-12 12:37:53.059 +05:30 [Debug] Connection id ""0HLA141R91PO0"" sent FIN with status "0". +2017-12-12 12:37:53.060 +05:30 [Debug] Connection id ""0HLA141R91PNV"" stopped. +2017-12-12 12:37:53.064 +05:30 [Debug] Connection id ""0HLA141R91PO0"" stopped. +2017-12-12 12:37:53.064 +05:30 [Debug] Connection id ""0HLA141R91PNU"" sending FIN. +2017-12-12 12:37:53.065 +05:30 [Debug] Connection id ""0HLA141R91PO1"" sending FIN. +2017-12-12 12:37:53.064 +05:30 [Debug] Connection id ""0HLA141R91PO2"" sending FIN. +2017-12-12 12:37:53.065 +05:30 [Debug] Connection id ""0HLA141R91PNT"" sending FIN. +2017-12-12 12:37:53.065 +05:30 [Debug] Connection id ""0HLA141R91PO1"" sent FIN with status "0". +2017-12-12 12:37:53.066 +05:30 [Debug] Connection id ""0HLA141R91PO1"" stopped. +2017-12-12 12:37:53.066 +05:30 [Debug] Connection id ""0HLA141R91PNT"" sent FIN with status "0". +2017-12-12 12:37:53.066 +05:30 [Debug] Connection id ""0HLA141R91PNU"" sent FIN with status "0". +2017-12-12 12:37:53.066 +05:30 [Debug] Connection id ""0HLA141R91PNT"" stopped. +2017-12-12 12:37:53.067 +05:30 [Debug] Connection id ""0HLA141R91PNU"" stopped. +2017-12-12 12:37:53.067 +05:30 [Debug] Connection id ""0HLA141R91PO2"" sent FIN with status "0". +2017-12-12 12:37:53.067 +05:30 [Debug] Connection id ""0HLA141R91PO2"" stopped. +2017-12-12 13:39:44.418 +05:30 [Debug] Hosting starting +2017-12-12 13:39:44.739 +05:30 [Debug] Hosting started +2017-12-12 13:39:44.830 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" started. +2017-12-12 13:39:44.857 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" started. +2017-12-12 13:39:45.067 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-12 13:39:45.083 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-12 13:39:45.153 +05:30 [Information] Request finished in 122.2665ms 200 +2017-12-12 13:39:45.232 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" completed keep alive response. +2017-12-12 13:39:46.404 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-12 13:39:46.475 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"da57093a-0523-485a-95fe-88fb305042db"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-12 13:39:46.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-12 13:39:46.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-12 13:39:46.852 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-12 13:39:46.898 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:39:46.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:39:46.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:39:47.046 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:39:47.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:39:47.051 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:39:47.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 593.0168ms +2017-12-12 13:39:47.446 +05:30 [Information] Request finished in 2437.399ms 200 application/json; charset=utf-8 +2017-12-12 13:39:47.450 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" completed keep alive response. +2017-12-12 13:39:47.584 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-12 13:39:47.594 +05:30 [Debug] Request did not match any routes. +2017-12-12 13:39:47.629 +05:30 [Debug] The request path "" does not match the path filter +2017-12-12 13:39:47.632 +05:30 [Information] Request finished in 47.9865ms 404 +2017-12-12 13:39:47.633 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" completed keep alive response. +2017-12-12 13:39:51.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:39:59.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:39:59.138 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:39:59.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:39:59.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12089.4929ms +2017-12-12 13:39:59.144 +05:30 [Information] Request finished in 12106.7827ms 200 application/json; charset=utf-8 +2017-12-12 13:39:59.146 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" completed keep alive response. +2017-12-12 13:40:09.501 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:40:09.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:40:09.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:40:12.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:40:13.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:13.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:13.134 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:13.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3630.6141ms +2017-12-12 13:40:13.136 +05:30 [Information] Request finished in 3634.9073ms 200 application/json; charset=utf-8 +2017-12-12 13:40:13.137 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" completed keep alive response. +2017-12-12 13:40:13.184 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:40:13.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:40:13.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:40:16.241 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:40:16.836 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:16.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:16.837 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:16.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3651.8475ms +2017-12-12 13:40:16.840 +05:30 [Information] Request finished in 3655.9656ms 200 application/json; charset=utf-8 +2017-12-12 13:40:16.840 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" completed keep alive response. +2017-12-12 13:40:16.867 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:40:16.868 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:40:16.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:40:19.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:40:20.500 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:20.500 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:20.501 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:20.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3633.1414ms +2017-12-12 13:40:20.509 +05:30 [Information] Request finished in 3641.4944ms 200 application/json; charset=utf-8 +2017-12-12 13:40:20.510 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" completed keep alive response. +2017-12-12 13:40:23.250 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:40:23.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:40:23.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:40:26.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:40:26.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:26.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:26.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:26.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3648.4716ms +2017-12-12 13:40:26.902 +05:30 [Information] Request finished in 3652.1175ms 200 application/json; charset=utf-8 +2017-12-12 13:40:26.903 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" completed keep alive response. +2017-12-12 13:40:29.338 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:40:29.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:40:29.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:40:32.385 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:40:32.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:32.968 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:32.969 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:32.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3630.0671ms +2017-12-12 13:40:32.972 +05:30 [Information] Request finished in 3635.0749ms 200 application/json; charset=utf-8 +2017-12-12 13:40:32.972 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" completed keep alive response. +2017-12-12 13:40:32.998 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-12 13:40:32.999 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-12 13:40:33.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-12 13:40:36.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-12 13:40:38.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:38.343 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:38.343 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:38.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5477.0129ms +2017-12-12 13:40:38.482 +05:30 [Information] Request finished in 5486.1118ms 200 application/json; charset=utf-8 +2017-12-12 13:40:38.485 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" completed keep alive response. +2017-12-12 13:40:38.953 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:40:38.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:40:38.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:40:41.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:40:42.568 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:42.569 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:42.570 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:42.571 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3615.8789ms +2017-12-12 13:40:42.574 +05:30 [Information] Request finished in 3620.2044ms 200 application/json; charset=utf-8 +2017-12-12 13:40:42.575 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" completed keep alive response. +2017-12-12 13:40:42.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-12 13:40:42.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-12 13:40:42.638 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-12 13:40:45.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-12 13:40:47.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:47.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:47.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:47.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5105.6124ms +2017-12-12 13:40:47.746 +05:30 [Information] Request finished in 5110.3674ms 200 application/json; charset=utf-8 +2017-12-12 13:40:47.746 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" completed keep alive response. +2017-12-12 13:40:49.121 +05:30 [Debug] Connection id ""0HLA16UQ63RKU"" started. +2017-12-12 13:40:49.121 +05:30 [Debug] Connection id ""0HLA16UQ63RKV"" started. +2017-12-12 13:40:49.122 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-12 13:40:49.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-12 13:40:49.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-12 13:40:49.127 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-12 13:40:49.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-12 13:40:49.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-12 13:40:49.129 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-12 13:40:49.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-12 13:40:49.139 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-12 13:40:49.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-12 13:40:49.141 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-12 13:40:49.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-12 13:40:49.245 +05:30 [Debug] Connection id ""0HLA16UQ63RL0"" started. +2017-12-12 13:40:49.245 +05:30 [Debug] Connection id ""0HLA16UQ63RL1"" started. +2017-12-12 13:40:49.768 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-12 13:40:49.768 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-12 13:40:49.770 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-12 13:40:50.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-12 13:40:50.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-12 13:40:50.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-12 13:40:53.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:40:53.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:40:53.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:40:53.966 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:40:53.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:40:54.009 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:40:55.621 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:55.622 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:40:55.622 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:55.623 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:55.625 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5853.5112ms +2017-12-12 13:40:55.629 +05:30 [Information] Request finished in 5860.7872ms 200 application/json; charset=utf-8 +2017-12-12 13:40:55.630 +05:30 [Debug] Connection id ""0HLA16UQ63RL0"" completed keep alive response. +2017-12-12 13:40:55.638 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-12 13:40:55.639 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-12 13:40:55.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-12 13:40:57.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:57.383 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:40:57.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:57.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:57.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8254.333ms +2017-12-12 13:40:57.405 +05:30 [Information] Request finished in 8281.868ms 200 application/json; charset=utf-8 +2017-12-12 13:40:57.405 +05:30 [Debug] Connection id ""0HLA16UQ63RKU"" completed keep alive response. +2017-12-12 13:40:57.430 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:57.431 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:40:57.431 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:57.435 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:57.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8298.441ms +2017-12-12 13:40:57.443 +05:30 [Information] Request finished in 8321.0235ms 200 application/json; charset=utf-8 +2017-12-12 13:40:57.444 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" completed keep alive response. +2017-12-12 13:40:57.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:57.669 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:40:57.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:57.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:57.672 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8541.6023ms +2017-12-12 13:40:57.674 +05:30 [Information] Request finished in 8550.773ms 200 application/json; charset=utf-8 +2017-12-12 13:40:57.674 +05:30 [Debug] Connection id ""0HLA16UQ63RKV"" completed keep alive response. +2017-12-12 13:40:58.701 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:40:59.819 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:40:59.819 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:40:59.819 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:40:59.822 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:40:59.824 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 9026.7715ms +2017-12-12 13:40:59.827 +05:30 [Information] Request finished in 9055.6021ms 200 application/json; charset=utf-8 +2017-12-12 13:40:59.828 +05:30 [Debug] Connection id ""0HLA16UQ63RL1"" completed keep alive response. +2017-12-12 13:41:01.622 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:41:01.623 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:41:01.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:41:01.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:41:01.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6050.4033ms +2017-12-12 13:41:01.696 +05:30 [Information] Request finished in 6061.3819ms 200 application/json; charset=utf-8 +2017-12-12 13:41:01.696 +05:30 [Debug] Connection id ""0HLA16UQ63RL0"" completed keep alive response. +2017-12-12 13:41:06.149 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:41:06.149 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:41:06.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:41:06.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:41:06.179 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 17038.8152ms +2017-12-12 13:41:06.189 +05:30 [Information] Request finished in 17084.2699ms 200 application/json; charset=utf-8 +2017-12-12 13:41:06.190 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" completed keep alive response. +2017-12-12 13:41:54.561 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=fb_1155481037833115,fb_1452799044811364,fb_133524017182208&userId=48&message=none&scheduledatetime=Tue,%2012%20Dec%202017%2008:15:00%20GMT&localscheduletime=12/12/2017%2013:45&mediaType=1&imagePath= multipart/form-data; boundary=----WebKitFormBoundaryUjww8SNYnncbKJFL 54226 +2017-12-12 13:41:54.562 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-12 13:41:54.563 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-12 13:41:57.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "fb_1155481037833115,fb_1452799044811364,fb_133524017182208", "48", "", "", "Tue, 12 Dec 2017 08:15:00 GMT", "12/12/2017 13:45", "Microsoft.AspNetCore.Http.Internal.FormFile", "
angry birds....", "Image"]) - ModelState is Valid +2017-12-12 13:42:29.612 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" received FIN. +2017-12-12 13:42:29.612 +05:30 [Debug] Connection id ""0HLA16UQ63RL0"" received FIN. +2017-12-12 13:42:29.616 +05:30 [Debug] Connection id ""0HLA16UQ63RKV"" received FIN. +2017-12-12 13:42:29.616 +05:30 [Debug] Connection id ""0HLA16UQ63RL1"" received FIN. +2017-12-12 13:42:29.616 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" received FIN. +2017-12-12 13:42:29.616 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" disconnecting. +2017-12-12 13:42:29.617 +05:30 [Debug] Connection id ""0HLA16UQ63RL2"" started. +2017-12-12 13:42:29.620 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" sending FIN. +2017-12-12 13:42:29.622 +05:30 [Debug] Connection id ""0HLA16UQ63RKV"" disconnecting. +2017-12-12 13:42:29.634 +05:30 [Debug] Connection id ""0HLA16UQ63RKV"" sending FIN. +2017-12-12 13:42:29.634 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" disconnecting. +2017-12-12 13:42:29.622 +05:30 [Debug] Connection id ""0HLA16UQ63RL1"" disconnecting. +2017-12-12 13:42:29.622 +05:30 [Debug] Connection id ""0HLA16UQ63RL0"" disconnecting. +2017-12-12 13:42:30.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=9RE7CIJ559.jpg +2017-12-12 13:42:30.235 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" sending FIN. +2017-12-12 13:42:30.236 +05:30 [Debug] Connection id ""0HLA16UQ63RL1"" sending FIN. +2017-12-12 13:42:30.236 +05:30 [Debug] Connection id ""0HLA16UQ63RL0"" sending FIN. +2017-12-12 13:42:30.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-12 13:42:30.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-12 13:42:30.258 +05:30 [Debug] Connection id ""0HLA16UQ63RL0"" sent FIN with status "0". +2017-12-12 13:42:30.261 +05:30 [Debug] Connection id ""0HLA16UQ63RL1"" sent FIN with status "0". +2017-12-12 13:42:31.208 +05:30 [Debug] Connection id ""0HLA16UQ63RL1"" stopped. +2017-12-12 13:42:31.208 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" sent FIN with status "0". +2017-12-12 13:42:31.209 +05:30 [Debug] Connection id ""0HLA16UQ63RKT"" stopped. +2017-12-12 13:42:31.210 +05:30 [Debug] Connection id ""0HLA16UQ63RKV"" sent FIN with status "0". +2017-12-12 13:42:31.211 +05:30 [Debug] Connection id ""0HLA16UQ63RKV"" stopped. +2017-12-12 13:42:35.614 +05:30 [Debug] Connection id ""0HLA16UQ63RL0"" stopped. +2017-12-12 13:42:35.615 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" sent FIN with status "0". +2017-12-12 13:42:35.615 +05:30 [Debug] Connection id ""0HLA16UQ63RKS"" stopped. +2017-12-12 13:42:47.826 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["9RE7CIJ559.jpg"]) - ModelState is Valid +2017-12-12 13:42:54.055 +05:30 [Error] An unhandled exception has occurred while executing the request +System.IO.IOException: The process cannot access the file 'D:\SBPROJECT\Developer\src\Api.Socioboard\wwwroot\upload\9RE7CIJ559.jpg' because it is being used by another process. + at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) + at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) + at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy) + at System.IO.FileStream..ctor(String path, FileMode mode) + at Api.Socioboard.Controllers.MediaController.Get(String id) in D:\SBPROJECT\Developer\src\Api.Socioboard\Controllers\MediaController.cs:line 75 + at lambda_method(Closure , Object , Object[] ) + at Microsoft.AspNetCore.Mvc.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__28.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__18.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Builder.RouterMiddleware.d__4.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.d__6.MoveNext() +2017-12-12 13:42:54.343 +05:30 [Debug] Connection id ""0HLA16UQ63RL2"" disconnecting. +2017-12-12 13:42:54.343 +05:30 [Information] Connection id ""0HLA16UQ63RL2"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-12 13:42:54.344 +05:30 [Debug] Connection id ""0HLA16UQ63RL2"" received FIN. +2017-12-12 13:42:54.345 +05:30 [Debug] Connection id ""0HLA16UQ63RL2"" stopped. +2017-12-12 13:42:54.395 +05:30 [Debug] Connection id ""0HLA16UQ63RL2"" write of "4096" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-12 13:42:54.430 +05:30 [Debug] Connection id ""0HLA16UQ63RL2"" write of "4096" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-12 13:42:54.430 +05:30 [Debug] Connection id ""0HLA16UQ63RL2"" write of "4096" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-12 13:42:54.430 +05:30 [Debug] Connection id ""0HLA16UQ63RL2"" write of "1648" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-12 13:42:54.431 +05:30 [Debug] Connection id ""0HLA16UQ63RL2"" write of "0" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-12 13:42:54.433 +05:30 [Information] Request finished in 24797.3635ms 500 text/html; charset=utf-8 +2017-12-12 13:43:55.103 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:15:00 GMT +2017-12-12 13:43:57.442 +05:30 [Debug] Connection id ""0HLA16UQ63RKU"" received FIN. +2017-12-12 13:44:36.476 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:15:00 GMT +2017-12-12 13:44:38.715 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:15:00 GMT +2017-12-12 13:44:40.424 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:44:40.425 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:44:40.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-12 13:44:40.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:44:40.427 +05:30 [Debug] Connection id ""0HLA16UQ63RKU"" disconnecting. +2017-12-12 13:44:40.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" in 165863.1375ms +2017-12-12 13:44:40.469 +05:30 [Information] Connection id ""0HLA16UQ63RKU"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-12 13:44:40.470 +05:30 [Debug] Connection id ""0HLA16UQ63RKU"" stopped. +2017-12-12 13:44:40.479 +05:30 [Information] Request finished in 165919.1231ms 200 text/plain; charset=utf-8 +2017-12-12 13:46:36.442 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" started. +2017-12-12 13:46:36.446 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:46:36.447 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:46:36.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:46:39.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:46:40.096 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:46:40.097 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:46:40.098 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:46:40.099 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3644.7684ms +2017-12-12 13:46:40.100 +05:30 [Information] Request finished in 3654.7735ms 200 application/json; charset=utf-8 +2017-12-12 13:46:40.101 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" completed keep alive response. +2017-12-12 13:46:40.344 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:46:40.345 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:46:40.345 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:46:43.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:46:43.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:46:43.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:46:43.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:46:43.961 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3614.9583ms +2017-12-12 13:46:43.963 +05:30 [Information] Request finished in 3618.8344ms 200 application/json; charset=utf-8 +2017-12-12 13:46:43.963 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" completed keep alive response. +2017-12-12 13:46:45.255 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:46:45.258 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:46:45.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:46:48.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:46:48.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:46:48.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:46:48.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:46:48.858 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3596.4727ms +2017-12-12 13:46:48.863 +05:30 [Information] Request finished in 3608.7562ms 200 application/json; charset=utf-8 +2017-12-12 13:46:48.864 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" completed keep alive response. +2017-12-12 13:46:48.904 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 13:46:48.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 13:46:48.905 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 13:46:51.943 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 13:46:52.479 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:46:52.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:46:52.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:46:52.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3575.7665ms +2017-12-12 13:46:52.486 +05:30 [Information] Request finished in 3580.119ms 200 application/json; charset=utf-8 +2017-12-12 13:46:52.486 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" completed keep alive response. +2017-12-12 13:46:52.501 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-12 13:46:52.502 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-12 13:46:52.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-12 13:46:55.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-12 13:46:57.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:46:57.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:46:57.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:46:57.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4875.4369ms +2017-12-12 13:46:57.386 +05:30 [Information] Request finished in 4884.1706ms 200 application/json; charset=utf-8 +2017-12-12 13:46:57.386 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" completed keep alive response. +2017-12-12 13:46:58.304 +05:30 [Debug] Connection id ""0HLA16UQ63RL4"" started. +2017-12-12 13:46:58.304 +05:30 [Debug] Connection id ""0HLA16UQ63RL5"" started. +2017-12-12 13:46:58.305 +05:30 [Debug] Connection id ""0HLA16UQ63RL6"" started. +2017-12-12 13:46:58.305 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-12 13:46:58.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-12 13:46:58.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-12 13:46:58.307 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-12 13:46:58.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-12 13:46:58.309 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-12 13:46:58.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-12 13:46:58.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-12 13:46:58.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-12 13:46:58.336 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-12 13:46:58.336 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-12 13:46:58.336 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-12 13:46:58.441 +05:30 [Debug] Connection id ""0HLA16UQ63RL7"" started. +2017-12-12 13:46:58.442 +05:30 [Debug] Connection id ""0HLA16UQ63RL8"" started. +2017-12-12 13:46:58.444 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-12 13:46:58.449 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-12 13:46:58.449 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-12 13:46:58.449 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-12 13:46:58.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-12 13:46:58.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-12 13:47:01.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:47:01.413 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:47:01.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:47:01.430 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:47:01.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:47:01.521 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:47:01.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:47:01.989 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:47:01.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:47:01.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:47:01.999 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3681.0667ms +2017-12-12 13:47:02.002 +05:30 [Information] Request finished in 3695.9362ms 200 application/json; charset=utf-8 +2017-12-12 13:47:02.002 +05:30 [Debug] Connection id ""0HLA16UQ63RL5"" completed keep alive response. +2017-12-12 13:47:02.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-12 13:47:02.015 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-12 13:47:02.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-12 13:47:02.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:47:02.098 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:47:02.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:47:02.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:47:02.100 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3759.8706ms +2017-12-12 13:47:02.102 +05:30 [Information] Request finished in 3795.1018ms 200 application/json; charset=utf-8 +2017-12-12 13:47:02.103 +05:30 [Debug] Connection id ""0HLA16UQ63RL6"" completed keep alive response. +2017-12-12 13:47:02.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:47:02.515 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:47:02.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:47:02.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:47:02.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4209.031ms +2017-12-12 13:47:02.520 +05:30 [Information] Request finished in 4215.0098ms 200 application/json; charset=utf-8 +2017-12-12 13:47:02.520 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" completed keep alive response. +2017-12-12 13:47:02.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:47:02.648 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:47:02.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:47:02.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:47:02.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4205.2775ms +2017-12-12 13:47:02.717 +05:30 [Information] Request finished in 4259.3284ms 200 application/json; charset=utf-8 +2017-12-12 13:47:02.719 +05:30 [Debug] Connection id ""0HLA16UQ63RL7"" completed keep alive response. +2017-12-12 13:47:02.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:47:02.723 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:47:02.724 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:47:02.740 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:47:02.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4291.0605ms +2017-12-12 13:47:02.757 +05:30 [Information] Request finished in 4311.9203ms 200 application/json; charset=utf-8 +2017-12-12 13:47:02.758 +05:30 [Debug] Connection id ""0HLA16UQ63RL8"" completed keep alive response. +2017-12-12 13:47:05.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-12 13:47:07.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:47:07.548 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:47:07.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:47:07.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:47:07.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5533.4502ms +2017-12-12 13:47:07.555 +05:30 [Information] Request finished in 5547.7407ms 200 application/json; charset=utf-8 +2017-12-12 13:47:07.555 +05:30 [Debug] Connection id ""0HLA16UQ63RL5"" completed keep alive response. +2017-12-12 13:47:10.150 +05:30 [Fatal] Sequence contains no elements +2017-12-12 13:47:10.153 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-12 13:47:10.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:47:10.153 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:47:10.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 13:47:10.155 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:47:10.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 11844.4565ms +2017-12-12 13:47:10.162 +05:30 [Information] Request finished in 11854.6457ms 200 application/json; charset=utf-8 +2017-12-12 13:47:10.163 +05:30 [Debug] Connection id ""0HLA16UQ63RL4"" completed keep alive response. +2017-12-12 13:48:53.064 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" received FIN. +2017-12-12 13:48:53.064 +05:30 [Debug] Connection id ""0HLA16UQ63RL6"" received FIN. +2017-12-12 13:48:53.064 +05:30 [Debug] Connection id ""0HLA16UQ63RL7"" received FIN. +2017-12-12 13:48:53.064 +05:30 [Debug] Connection id ""0HLA16UQ63RL8"" received FIN. +2017-12-12 13:48:53.064 +05:30 [Debug] Connection id ""0HLA16UQ63RL4"" received FIN. +2017-12-12 13:48:53.065 +05:30 [Debug] Connection id ""0HLA16UQ63RL5"" received FIN. +2017-12-12 13:48:53.065 +05:30 [Debug] Connection id ""0HLA16UQ63RL9"" started. +2017-12-12 13:48:53.066 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" disconnecting. +2017-12-12 13:48:53.066 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" sending FIN. +2017-12-12 13:48:53.066 +05:30 [Debug] Connection id ""0HLA16UQ63RL6"" disconnecting. +2017-12-12 13:48:53.067 +05:30 [Debug] Connection id ""0HLA16UQ63RL6"" sending FIN. +2017-12-12 13:48:53.066 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" sent FIN with status "0". +2017-12-12 13:48:53.067 +05:30 [Debug] Connection id ""0HLA16UQ63RL6"" sent FIN with status "0". +2017-12-12 13:48:53.067 +05:30 [Debug] Connection id ""0HLA16UQ63RL3"" stopped. +2017-12-12 13:48:53.068 +05:30 [Debug] Connection id ""0HLA16UQ63RL6"" stopped. +2017-12-12 13:48:53.068 +05:30 [Debug] Connection id ""0HLA16UQ63RL7"" disconnecting. +2017-12-12 13:48:53.068 +05:30 [Debug] Connection id ""0HLA16UQ63RL7"" sending FIN. +2017-12-12 13:48:53.068 +05:30 [Debug] Connection id ""0HLA16UQ63RL8"" disconnecting. +2017-12-12 13:48:53.068 +05:30 [Debug] Connection id ""0HLA16UQ63RL7"" sent FIN with status "0". +2017-12-12 13:48:53.069 +05:30 [Debug] Connection id ""0HLA16UQ63RL8"" sending FIN. +2017-12-12 13:48:53.069 +05:30 [Debug] Connection id ""0HLA16UQ63RL7"" stopped. +2017-12-12 13:48:53.069 +05:30 [Debug] Connection id ""0HLA16UQ63RL8"" sent FIN with status "0". +2017-12-12 13:48:53.069 +05:30 [Debug] Connection id ""0HLA16UQ63RL4"" disconnecting. +2017-12-12 13:48:53.070 +05:30 [Debug] Connection id ""0HLA16UQ63RL4"" sending FIN. +2017-12-12 13:48:53.069 +05:30 [Debug] Connection id ""0HLA16UQ63RL8"" stopped. +2017-12-12 13:48:53.070 +05:30 [Debug] Connection id ""0HLA16UQ63RL4"" sent FIN with status "0". +2017-12-12 13:48:53.070 +05:30 [Debug] Connection id ""0HLA16UQ63RL4"" stopped. +2017-12-12 13:48:53.070 +05:30 [Debug] Connection id ""0HLA16UQ63RL5"" disconnecting. +2017-12-12 13:48:53.071 +05:30 [Debug] Connection id ""0HLA16UQ63RL5"" sending FIN. +2017-12-12 13:48:53.072 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=fb_127471161024815,fb_1155481037833115,fb_1452799044811364,fb_655134954689101,fb_133524017182208,fb_790900144392091,fb_1465270360163721,fb_969487569817705,tw_758233674978426880,lin_Z8o3CUSCq2&userId=48&message=none&scheduledatetime=Tue,%2012%20Dec%202017%2008:24:00%20GMT&localscheduletime=12/12/2017%2013:54&imagePath= multipart/form-data; boundary=----WebKitFormBoundaryFAe89VsQ8YMhvBOF 198 +2017-12-12 13:48:53.072 +05:30 [Debug] Connection id ""0HLA16UQ63RL5"" sent FIN with status "0". +2017-12-12 13:48:53.072 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-12 13:48:53.072 +05:30 [Debug] Connection id ""0HLA16UQ63RL5"" stopped. +2017-12-12 13:48:53.073 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-12 13:48:56.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "fb_127471161024815,fb_1155481037833115,fb_1452799044811364,fb_655134954689101,fb_133524017182208,fb_790900144392091,fb_1465270360163721,fb_969487569817705,tw_758233674978426880,lin_Z8o3CUSCq2", "48", "", "", "Tue, 12 Dec 2017 08:24:00 GMT", "12/12/2017 13:54", "", "
Happy Married Life to Virat Kohli and Anushka Sharma", "NoMedia"]) - ModelState is Valid +2017-12-12 13:49:06.171 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:08.592 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:11.350 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:13.788 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:16.015 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:18.465 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:20.664 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:23.095 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:25.313 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:27.743 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Tue, 12 Dec 2017 08:24:00 GMT +2017-12-12 13:49:29.338 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 13:49:29.338 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 13:49:29.339 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-12 13:49:29.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 13:49:29.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" in 36262.4786ms +2017-12-12 13:49:29.344 +05:30 [Information] Request finished in 36271.9826ms 200 text/plain; charset=utf-8 +2017-12-12 13:49:29.345 +05:30 [Debug] Connection id ""0HLA16UQ63RL9"" completed keep alive response. +2017-12-12 13:49:55.466 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=fb_1155481037833115&userId=48&message=none&scheduledatetime=Tue,%2012%20Dec%202017%2008:24:00%20GMT&localscheduletime=12/12/2017%2013:54&imagePath= multipart/form-data; boundary=----WebKitFormBoundaryGfoiojLuMbdQaWZ3 148 +2017-12-12 13:49:55.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-12 13:49:55.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-12 13:49:57.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "fb_1155481037833115", "48", "", "", "Tue, 12 Dec 2017 08:24:00 GMT", "12/12/2017 13:54", "", "
hi", "NoMedia"]) - ModelState is Valid +2017-12-12 16:35:44.484 +05:30 [Debug] Hosting starting +2017-12-12 16:35:44.773 +05:30 [Debug] Hosting started +2017-12-12 16:35:44.944 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" started. +2017-12-12 16:35:44.944 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" started. +2017-12-12 16:35:45.193 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-12 16:35:45.207 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-12 16:35:45.279 +05:30 [Information] Request finished in 173.1632ms 200 +2017-12-12 16:35:45.365 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" completed keep alive response. +2017-12-12 16:35:46.770 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-12 16:35:46.862 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a4ef3c66-e88c-42b9-af77-a0d0b4bee5c7"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-12 16:35:47.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-12 16:35:47.091 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 16:35:47.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 16:35:47.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 16:35:47.200 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-12 16:35:47.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-12 16:35:47.250 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:35:47.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:35:47.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:35:47.502 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 452.5961ms +2017-12-12 16:35:47.590 +05:30 [Information] Request finished in 2496.6459ms 200 application/json; charset=utf-8 +2017-12-12 16:35:47.594 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:35:47.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-12 16:35:47.608 +05:30 [Debug] Request did not match any routes. +2017-12-12 16:35:47.639 +05:30 [Debug] The request path "" does not match the path filter +2017-12-12 16:35:47.641 +05:30 [Information] Request finished in 37.9624ms 404 +2017-12-12 16:35:47.642 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:35:50.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 16:35:57.371 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:35:57.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:35:57.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:35:57.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10301.4848ms +2017-12-12 16:35:57.404 +05:30 [Information] Request finished in 10315.0394ms 200 application/json; charset=utf-8 +2017-12-12 16:35:57.405 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" completed keep alive response. +2017-12-12 16:36:10.366 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 16:36:10.367 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 16:36:10.369 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 16:36:12.508 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 16:36:12.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 16:36:12.509 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 16:36:13.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 16:36:13.997 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:36:13.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:36:13.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:36:14.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3629.7735ms +2017-12-12 16:36:14.003 +05:30 [Information] Request finished in 3637.6575ms 200 application/json; charset=utf-8 +2017-12-12 16:36:14.004 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:36:14.057 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 16:36:14.057 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 16:36:14.058 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 16:36:15.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 16:36:16.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:36:16.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:36:16.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:36:16.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3577.3218ms +2017-12-12 16:36:16.090 +05:30 [Information] Request finished in 3601.8659ms 200 application/json; charset=utf-8 +2017-12-12 16:36:16.091 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" completed keep alive response. +2017-12-12 16:36:17.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 16:36:17.767 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:36:17.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:36:17.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:36:17.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3710.1303ms +2017-12-12 16:36:17.772 +05:30 [Information] Request finished in 3718.6348ms 200 application/json; charset=utf-8 +2017-12-12 16:36:17.773 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:36:17.858 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 16:36:17.860 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 16:36:17.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 16:36:20.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 16:36:21.458 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:36:21.458 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:36:21.460 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:36:21.461 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3599.6263ms +2017-12-12 16:36:21.464 +05:30 [Information] Request finished in 3607.0115ms 200 application/json; charset=utf-8 +2017-12-12 16:36:21.464 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" completed keep alive response. +2017-12-12 16:36:38.424 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 16:36:38.425 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 16:36:38.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 16:36:41.464 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 16:36:42.010 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:36:42.010 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:36:42.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:36:42.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3585.8272ms +2017-12-12 16:36:42.013 +05:30 [Information] Request finished in 3589.768ms 200 application/json; charset=utf-8 +2017-12-12 16:36:42.014 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:36:42.031 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-12 16:36:42.032 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-12 16:36:42.033 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-12 16:36:45.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-12 16:36:47.309 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:36:47.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:36:47.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:36:47.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5421.4366ms +2017-12-12 16:36:47.484 +05:30 [Information] Request finished in 5430.5712ms 200 application/json; charset=utf-8 +2017-12-12 16:36:47.484 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" completed keep alive response. +2017-12-12 16:36:47.863 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 16:36:47.863 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 16:36:47.864 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 16:36:50.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 16:36:51.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:36:51.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:36:51.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:36:51.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3609.6414ms +2017-12-12 16:36:51.478 +05:30 [Information] Request finished in 3614.0794ms 200 application/json; charset=utf-8 +2017-12-12 16:36:51.479 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:36:51.516 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500208&groupId= +2017-12-12 16:36:51.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-12 16:36:51.526 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-12 16:36:54.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500208", ""]) - ModelState is Valid +2017-12-12 16:36:56.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:36:56.375 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:36:56.376 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:36:56.457 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4929.7173ms +2017-12-12 16:36:56.458 +05:30 [Information] Request finished in 4942.2795ms 200 application/json; charset=utf-8 +2017-12-12 16:36:56.459 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" completed keep alive response. +2017-12-12 16:36:58.280 +05:30 [Debug] Connection id ""0HLA1A15B75FL"" started. +2017-12-12 16:36:58.280 +05:30 [Debug] Connection id ""0HLA1A15B75FM"" started. +2017-12-12 16:36:58.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500208 +2017-12-12 16:36:58.282 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500208 +2017-12-12 16:36:58.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-12 16:36:58.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152399 +2017-12-12 16:36:58.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-12 16:36:58.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-12 16:36:58.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-12 16:36:58.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-12 16:36:58.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-12 16:36:58.308 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500208 +2017-12-12 16:36:58.309 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-12 16:36:58.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-12 16:36:58.415 +05:30 [Debug] Connection id ""0HLA1A15B75FN"" started. +2017-12-12 16:36:58.415 +05:30 [Debug] Connection id ""0HLA1A15B75FO"" started. +2017-12-12 16:36:59.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500208 +2017-12-12 16:36:59.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-12 16:36:59.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-12 16:37:00.603 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152399&userId=500208 +2017-12-12 16:37:00.604 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-12 16:37:00.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-12 16:37:03.762 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-12 16:37:03.788 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-12 16:37:03.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-12 16:37:03.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-12 16:37:03.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-12 16:37:03.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-12 16:37:04.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:04.379 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:04.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:04.380 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:04.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6073.0282ms +2017-12-12 16:37:04.388 +05:30 [Information] Request finished in 6128.1181ms 200 application/json; charset=utf-8 +2017-12-12 16:37:04.388 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" completed keep alive response. +2017-12-12 16:37:04.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152399 +2017-12-12 16:37:04.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-12 16:37:04.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-12 16:37:05.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:05.833 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:05.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:05.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:05.858 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7571.8123ms +2017-12-12 16:37:05.864 +05:30 [Information] Request finished in 7602.245ms 200 application/json; charset=utf-8 +2017-12-12 16:37:05.865 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:37:06.441 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:06.441 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:06.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:06.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:06.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6835.4569ms +2017-12-12 16:37:06.446 +05:30 [Information] Request finished in 6844.2397ms 200 application/json; charset=utf-8 +2017-12-12 16:37:06.446 +05:30 [Debug] Connection id ""0HLA1A15B75FN"" completed keep alive response. +2017-12-12 16:37:06.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:06.679 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:06.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:06.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:06.684 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8398.9657ms +2017-12-12 16:37:06.688 +05:30 [Information] Request finished in 8405.638ms 200 application/json; charset=utf-8 +2017-12-12 16:37:06.688 +05:30 [Debug] Connection id ""0HLA1A15B75FM"" completed keep alive response. +2017-12-12 16:37:06.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:06.907 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:06.907 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:06.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:06.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8633.2667ms +2017-12-12 16:37:06.922 +05:30 [Information] Request finished in 8640.1988ms 200 application/json; charset=utf-8 +2017-12-12 16:37:06.922 +05:30 [Debug] Connection id ""0HLA1A15B75FL"" completed keep alive response. +2017-12-12 16:37:07.452 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:07.453 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:07.453 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:07.474 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-12 16:37:07.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:07.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6869.3909ms +2017-12-12 16:37:07.479 +05:30 [Information] Request finished in 6876.4834ms 200 application/json; charset=utf-8 +2017-12-12 16:37:07.480 +05:30 [Debug] Connection id ""0HLA1A15B75FO"" completed keep alive response. +2017-12-12 16:37:10.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:10.144 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:10.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:10.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:10.230 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5824.8696ms +2017-12-12 16:37:10.232 +05:30 [Information] Request finished in 5840.0726ms 200 application/json; charset=utf-8 +2017-12-12 16:37:10.232 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" completed keep alive response. +2017-12-12 16:37:16.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramFeeds?instagramId=5320505936&userId=500208&skip=0&count=12 +2017-12-12 16:37:16.570 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramFeeds"'. +2017-12-12 16:37:16.571 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)" +2017-12-12 16:37:19.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)" with arguments (["500208", "5320505936", "0", "12"]) - ModelState is Valid +2017-12-12 16:37:24.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:24.545 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:24.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:24.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:24.586 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)" in 8013.8973ms +2017-12-12 16:37:24.589 +05:30 [Information] Request finished in 8020.597ms 200 application/json; charset=utf-8 +2017-12-12 16:37:24.589 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:37:33.140 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Instagram/AddInstagramComment?FeedId=1662908212356539270_5320505936&InstagramId=5320505936&Text=%3Cbr%3Eheee 0 +2017-12-12 16:37:33.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/AddInstagramComment"'. +2017-12-12 16:37:33.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.AddInstagramComment (Api.Socioboard)" +2017-12-12 16:37:36.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.AddInstagramComment (Api.Socioboard)" with arguments (["1662908212356539270_5320505936", "
heee", "5320505936", "0"]) - ModelState is Valid +2017-12-12 16:37:40.357 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.AddInstagramComment (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:40.357 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:40.357 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-12 16:37:40.359 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:40.360 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.AddInstagramComment (Api.Socioboard)" in 7215.8657ms +2017-12-12 16:37:40.364 +05:30 [Information] Request finished in 7222.6594ms 200 text/plain; charset=utf-8 +2017-12-12 16:37:40.364 +05:30 [Debug] Connection id ""0HLA1A15B75FN"" completed keep alive response. +2017-12-12 16:37:40.385 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramFeeds?instagramId=5320505936&userId=500208&skip=0&count=12 +2017-12-12 16:37:40.386 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramFeeds"'. +2017-12-12 16:37:40.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)" +2017-12-12 16:37:40.428 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 16:37:40.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 16:37:40.433 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 16:37:43.408 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)" with arguments (["500208", "5320505936", "0", "12"]) - ModelState is Valid +2017-12-12 16:37:43.465 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 16:37:43.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:43.824 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:43.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:43.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:43.828 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)" in 3440.18ms +2017-12-12 16:37:43.832 +05:30 [Information] Request finished in 3447.6442ms 200 application/json; charset=utf-8 +2017-12-12 16:37:43.833 +05:30 [Debug] Connection id ""0HLA1A15B75FM"" completed keep alive response. +2017-12-12 16:37:43.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:43.985 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:43.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:43.999 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3561.9061ms +2017-12-12 16:37:44.006 +05:30 [Information] Request finished in 3578.3662ms 200 application/json; charset=utf-8 +2017-12-12 16:37:44.006 +05:30 [Debug] Connection id ""0HLA1A15B75FL"" completed keep alive response. +2017-12-12 16:37:44.030 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500208&groupId=1152399 +2017-12-12 16:37:44.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-12 16:37:44.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-12 16:37:47.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500208", "1152399"]) - ModelState is Valid +2017-12-12 16:37:48.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:48.757 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:48.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:48.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4728.8523ms +2017-12-12 16:37:48.775 +05:30 [Information] Request finished in 4743.8674ms 200 application/json; charset=utf-8 +2017-12-12 16:37:48.776 +05:30 [Debug] Connection id ""0HLA1A15B75FO"" completed keep alive response. +2017-12-12 16:37:49.542 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500208 +2017-12-12 16:37:49.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-12 16:37:49.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-12 16:37:49.546 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152399 +2017-12-12 16:37:49.547 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-12 16:37:49.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-12 16:37:49.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500208 +2017-12-12 16:37:49.555 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-12 16:37:49.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-12 16:37:49.577 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500208 +2017-12-12 16:37:49.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-12 16:37:49.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-12 16:37:49.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152399&userId=500208 +2017-12-12 16:37:49.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500208 +2017-12-12 16:37:49.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-12 16:37:49.669 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-12 16:37:49.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-12 16:37:49.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-12 16:37:52.622 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-12 16:37:52.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-12 16:37:52.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-12 16:37:52.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-12 16:37:52.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-12 16:37:52.797 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-12 16:37:53.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:53.313 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:53.313 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:53.314 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:53.317 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3759.6116ms +2017-12-12 16:37:53.322 +05:30 [Information] Request finished in 3782.9203ms 200 application/json; charset=utf-8 +2017-12-12 16:37:53.322 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:37:53.329 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramFeeds?instagramId=5320505936&userId=500208&skip=0&count=12 +2017-12-12 16:37:53.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramFeeds"'. +2017-12-12 16:37:53.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)" +2017-12-12 16:37:53.381 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:53.383 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:53.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:53.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:53.385 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:53.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:53.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:53.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:53.397 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3844.9635ms +2017-12-12 16:37:53.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3853.3221ms +2017-12-12 16:37:53.409 +05:30 [Information] Request finished in 3870.8735ms 200 application/json; charset=utf-8 +2017-12-12 16:37:53.411 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" completed keep alive response. +2017-12-12 16:37:53.412 +05:30 [Information] Request finished in 3869.9964ms 200 application/json; charset=utf-8 +2017-12-12 16:37:53.412 +05:30 [Debug] Connection id ""0HLA1A15B75FM"" completed keep alive response. +2017-12-12 16:37:53.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:53.858 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:53.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:53.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:53.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4281.659ms +2017-12-12 16:37:53.863 +05:30 [Information] Request finished in 4322.7617ms 200 application/json; charset=utf-8 +2017-12-12 16:37:53.863 +05:30 [Debug] Connection id ""0HLA1A15B75FN"" completed keep alive response. +2017-12-12 16:37:53.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:53.901 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:53.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:53.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:53.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4233.4448ms +2017-12-12 16:37:53.906 +05:30 [Information] Request finished in 4258.7897ms 200 application/json; charset=utf-8 +2017-12-12 16:37:53.907 +05:30 [Debug] Connection id ""0HLA1A15B75FL"" completed keep alive response. +2017-12-12 16:37:53.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:53.945 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:53.945 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:53.946 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:53.947 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4277.0228ms +2017-12-12 16:37:53.949 +05:30 [Information] Request finished in 4301.4587ms 200 application/json; charset=utf-8 +2017-12-12 16:37:53.949 +05:30 [Debug] Connection id ""0HLA1A15B75FO"" completed keep alive response. +2017-12-12 16:37:56.392 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)" with arguments (["500208", "5320505936", "0", "12"]) - ModelState is Valid +2017-12-12 16:37:56.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 16:37:56.614 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 16:37:56.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 16:37:56.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 16:37:56.621 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramFeeds (Api.Socioboard)" in 3286.6196ms +2017-12-12 16:37:56.625 +05:30 [Information] Request finished in 3295.0874ms 200 application/json; charset=utf-8 +2017-12-12 16:37:56.625 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" completed keep alive response. +2017-12-12 16:39:25.065 +05:30 [Debug] Connection id ""0HLA1A15B75FL"" received FIN. +2017-12-12 16:39:25.065 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" received FIN. +2017-12-12 16:39:25.066 +05:30 [Debug] Connection id ""0HLA1A15B75FM"" received FIN. +2017-12-12 16:39:25.066 +05:30 [Debug] Connection id ""0HLA1A15B75FN"" received FIN. +2017-12-12 16:39:25.066 +05:30 [Debug] Connection id ""0HLA1A15B75FO"" received FIN. +2017-12-12 16:39:25.067 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" received FIN. +2017-12-12 16:39:25.068 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" disconnecting. +2017-12-12 16:39:25.090 +05:30 [Debug] Connection id ""0HLA1A15B75FL"" disconnecting. +2017-12-12 16:39:25.091 +05:30 [Debug] Connection id ""0HLA1A15B75FM"" disconnecting. +2017-12-12 16:39:25.091 +05:30 [Debug] Connection id ""0HLA1A15B75FN"" disconnecting. +2017-12-12 16:39:25.092 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" sending FIN. +2017-12-12 16:39:25.091 +05:30 [Debug] Connection id ""0HLA1A15B75FO"" disconnecting. +2017-12-12 16:39:25.092 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" disconnecting. +2017-12-12 16:39:25.093 +05:30 [Debug] Connection id ""0HLA1A15B75FO"" sending FIN. +2017-12-12 16:39:25.095 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" sending FIN. +2017-12-12 16:39:25.096 +05:30 [Debug] Connection id ""0HLA1A15B75FN"" sending FIN. +2017-12-12 16:39:25.096 +05:30 [Debug] Connection id ""0HLA1A15B75FL"" sending FIN. +2017-12-12 16:39:25.096 +05:30 [Debug] Connection id ""0HLA1A15B75FM"" sending FIN. +2017-12-12 16:39:25.106 +05:30 [Debug] Connection id ""0HLA1A15B75FL"" sent FIN with status "0". +2017-12-12 16:39:25.106 +05:30 [Debug] Connection id ""0HLA1A15B75FM"" sent FIN with status "0". +2017-12-12 16:39:25.110 +05:30 [Debug] Connection id ""0HLA1A15B75FM"" stopped. +2017-12-12 16:39:25.110 +05:30 [Debug] Connection id ""0HLA1A15B75FL"" stopped. +2017-12-12 16:39:25.110 +05:30 [Debug] Connection id ""0HLA1A15B75FN"" sent FIN with status "0". +2017-12-12 16:39:25.111 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" sent FIN with status "0". +2017-12-12 16:39:25.111 +05:30 [Debug] Connection id ""0HLA1A15B75FN"" stopped. +2017-12-12 16:39:25.111 +05:30 [Debug] Connection id ""0HLA1A15B75FJ"" stopped. +2017-12-12 16:39:25.111 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" sent FIN with status "0". +2017-12-12 16:39:25.111 +05:30 [Debug] Connection id ""0HLA1A15B75FO"" sent FIN with status "0". +2017-12-12 16:39:25.111 +05:30 [Debug] Connection id ""0HLA1A15B75FK"" stopped. +2017-12-12 16:39:25.112 +05:30 [Debug] Connection id ""0HLA1A15B75FO"" stopped. +2017-12-12 19:29:34.813 +05:30 [Debug] Hosting starting +2017-12-12 19:29:35.218 +05:30 [Debug] Hosting started +2017-12-12 19:29:35.369 +05:30 [Debug] Connection id ""0HLA1D29RGE9Q"" started. +2017-12-12 19:29:35.369 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" started. +2017-12-12 19:29:35.555 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-12 19:29:35.555 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-12 19:29:35.623 +05:30 [Information] Request finished in 107.3411ms 200 +2017-12-12 19:29:35.679 +05:30 [Debug] Connection id ""0HLA1D29RGE9Q"" completed keep alive response. +2017-12-12 19:29:39.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-12 19:29:39.841 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"9204ccd5-e629-4b99-add0-8420030fadf0"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-12 19:29:39.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-12 19:29:40.026 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 19:29:40.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 19:29:40.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 19:29:40.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-12 19:29:40.065 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-12 19:29:40.118 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-12 19:29:40.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:29:40.126 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:29:40.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 490.872ms +2017-12-12 19:29:40.481 +05:30 [Information] Request finished in 4981.579ms 200 application/json; charset=utf-8 +2017-12-12 19:29:40.482 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" completed keep alive response. +2017-12-12 19:29:40.522 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-12 19:29:40.524 +05:30 [Debug] Request did not match any routes. +2017-12-12 19:29:40.542 +05:30 [Debug] The request path "" does not match the path filter +2017-12-12 19:29:40.544 +05:30 [Information] Request finished in 22.571ms 404 +2017-12-12 19:29:40.545 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" completed keep alive response. +2017-12-12 19:29:43.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 19:29:50.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:29:50.616 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:29:50.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:29:50.631 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10591.3399ms +2017-12-12 19:29:50.634 +05:30 [Information] Request finished in 10608.505ms 200 application/json; charset=utf-8 +2017-12-12 19:29:50.635 +05:30 [Debug] Connection id ""0HLA1D29RGE9Q"" completed keep alive response. +2017-12-12 19:30:07.260 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 19:30:07.261 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 19:30:07.262 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 19:30:09.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 19:30:09.932 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:30:09.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:30:09.933 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:30:09.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2670.8182ms +2017-12-12 19:30:09.937 +05:30 [Information] Request finished in 2676.4521ms 200 application/json; charset=utf-8 +2017-12-12 19:30:09.938 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" completed keep alive response. +2017-12-12 19:30:09.987 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 19:30:09.988 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 19:30:09.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 19:30:13.024 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 19:30:13.557 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:30:13.557 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:30:13.573 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:30:13.573 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3585.5415ms +2017-12-12 19:30:13.573 +05:30 [Information] Request finished in 3591.055ms 200 application/json; charset=utf-8 +2017-12-12 19:30:13.573 +05:30 [Debug] Connection id ""0HLA1D29RGE9Q"" completed keep alive response. +2017-12-12 19:30:13.635 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 19:30:13.635 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 19:30:13.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 19:30:16.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 19:30:17.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:30:17.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:30:17.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:30:17.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3639.3ms +2017-12-12 19:30:17.296 +05:30 [Information] Request finished in 3656.3069ms 200 application/json; charset=utf-8 +2017-12-12 19:30:17.296 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" completed keep alive response. +2017-12-12 19:31:25.530 +05:30 [Debug] Connection id ""0HLA1D29RGE9Q"" received FIN. +2017-12-12 19:31:25.530 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" received FIN. +2017-12-12 19:31:25.534 +05:30 [Debug] Connection id ""0HLA1D29RGE9Q"" disconnecting. +2017-12-12 19:31:25.534 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" disconnecting. +2017-12-12 19:31:25.536 +05:30 [Debug] Connection id ""0HLA1D29RGE9Q"" sending FIN. +2017-12-12 19:31:25.536 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" sending FIN. +2017-12-12 19:31:25.551 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" sent FIN with status "0". +2017-12-12 19:31:25.551 +05:30 [Debug] Connection id ""0HLA1D29RGE9Q"" sent FIN with status "0". +2017-12-12 19:31:25.568 +05:30 [Debug] Connection id ""0HLA1D29RGE9P"" stopped. +2017-12-12 19:31:25.569 +05:30 [Debug] Connection id ""0HLA1D29RGE9Q"" stopped. +2017-12-12 19:37:07.514 +05:30 [Debug] Connection id ""0HLA1D29RGE9R"" started. +2017-12-12 19:37:07.518 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 19:37:07.518 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 19:37:07.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 19:37:10.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 19:37:12.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:37:12.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:37:12.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:37:12.779 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5259.1849ms +2017-12-12 19:37:12.781 +05:30 [Information] Request finished in 5265.6476ms 200 application/json; charset=utf-8 +2017-12-12 19:37:12.782 +05:30 [Debug] Connection id ""0HLA1D29RGE9R"" completed keep alive response. +2017-12-12 19:38:45.533 +05:30 [Debug] Connection id ""0HLA1D29RGE9R"" received FIN. +2017-12-12 19:38:45.533 +05:30 [Debug] Connection id ""0HLA1D29RGE9R"" disconnecting. +2017-12-12 19:38:45.533 +05:30 [Debug] Connection id ""0HLA1D29RGE9R"" sending FIN. +2017-12-12 19:38:45.533 +05:30 [Debug] Connection id ""0HLA1D29RGE9R"" sent FIN with status "0". +2017-12-12 19:38:45.533 +05:30 [Debug] Connection id ""0HLA1D29RGE9R"" stopped. +2017-12-12 19:41:29.498 +05:30 [Debug] Connection id ""0HLA1D29RGE9S"" started. +2017-12-12 19:41:29.523 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 19:41:29.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 19:41:29.524 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 19:41:31.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 19:41:32.231 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:41:32.232 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:41:32.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:41:32.235 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2708.5172ms +2017-12-12 19:41:32.239 +05:30 [Information] Request finished in 2715.2991ms 200 application/json; charset=utf-8 +2017-12-12 19:41:32.240 +05:30 [Debug] Connection id ""0HLA1D29RGE9S"" completed keep alive response. +2017-12-12 19:41:40.085 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 19:41:40.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 19:41:40.085 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 19:41:43.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 19:41:43.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:41:43.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:41:43.704 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:41:43.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3619.5828ms +2017-12-12 19:41:43.714 +05:30 [Information] Request finished in 3628.477ms 200 application/json; charset=utf-8 +2017-12-12 19:41:43.715 +05:30 [Debug] Connection id ""0HLA1D29RGE9S"" completed keep alive response. +2017-12-12 19:41:43.748 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-12 19:41:43.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-12 19:41:43.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-12 19:41:46.919 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-12 19:41:49.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:41:49.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:41:49.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:41:49.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5504.8288ms +2017-12-12 19:41:49.260 +05:30 [Information] Request finished in 5514.1525ms 200 application/json; charset=utf-8 +2017-12-12 19:41:49.261 +05:30 [Debug] Connection id ""0HLA1D29RGE9S"" completed keep alive response. +2017-12-12 19:41:49.522 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-12 19:41:49.523 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-12 19:41:49.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-12 19:41:52.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-12 19:41:53.148 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:41:53.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:41:53.149 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:41:53.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3626.5021ms +2017-12-12 19:41:53.153 +05:30 [Information] Request finished in 3630.6522ms 200 application/json; charset=utf-8 +2017-12-12 19:41:53.153 +05:30 [Debug] Connection id ""0HLA1D29RGE9S"" completed keep alive response. +2017-12-12 19:41:53.215 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-12 19:41:53.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-12 19:41:53.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-12 19:41:56.283 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-12 19:41:58.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-12 19:41:58.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-12 19:41:58.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-12 19:41:58.224 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5005.4886ms +2017-12-12 19:41:58.227 +05:30 [Information] Request finished in 5015.8088ms 200 application/json; charset=utf-8 +2017-12-12 19:41:58.227 +05:30 [Debug] Connection id ""0HLA1D29RGE9S"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171213.txt b/src/Api.Socioboard/wwwroot/log/log-20171213.txt new file mode 100644 index 000000000..91b2c3ec9 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171213.txt @@ -0,0 +1,2253 @@ +2017-12-13 10:32:23.650 +05:30 [Debug] Hosting starting +2017-12-13 10:32:24.180 +05:30 [Debug] Hosting started +2017-12-13 10:32:24.313 +05:30 [Debug] Connection id ""0HLA1SQPEPTRL"" started. +2017-12-13 10:32:24.322 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" started. +2017-12-13 10:32:24.537 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-13 10:32:24.539 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-13 10:32:24.622 +05:30 [Information] Request finished in 135.0571ms 200 +2017-12-13 10:32:24.676 +05:30 [Debug] Connection id ""0HLA1SQPEPTRL"" completed keep alive response. +2017-12-13 10:32:26.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-13 10:32:26.699 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"6b031337-59c9-4128-8504-cd4b5b8ab6a0"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-13 10:32:26.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-13 10:32:26.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-13 10:32:26.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-13 10:32:27.015 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:32:27.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:32:27.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:32:27.124 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:32:27.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:32:27.140 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:32:27.380 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 545.0002ms +2017-12-13 10:32:27.437 +05:30 [Information] Request finished in 2966.2529ms 200 application/json; charset=utf-8 +2017-12-13 10:32:27.440 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" completed keep alive response. +2017-12-13 10:32:27.552 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-13 10:32:27.555 +05:30 [Debug] Request did not match any routes. +2017-12-13 10:32:27.585 +05:30 [Debug] The request path "" does not match the path filter +2017-12-13 10:32:27.588 +05:30 [Information] Request finished in 35.9054ms 404 +2017-12-13 10:32:27.588 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" completed keep alive response. +2017-12-13 10:32:30.835 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:32:39.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:32:39.044 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:32:39.045 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:32:39.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11905.2712ms +2017-12-13 10:32:39.062 +05:30 [Information] Request finished in 11932.7502ms 200 application/json; charset=utf-8 +2017-12-13 10:32:39.062 +05:30 [Debug] Connection id ""0HLA1SQPEPTRL"" completed keep alive response. +2017-12-13 10:32:51.448 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:32:51.448 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:32:51.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:32:54.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:32:55.039 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:32:55.040 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:32:55.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:32:55.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3589.7542ms +2017-12-13 10:32:55.043 +05:30 [Information] Request finished in 3594.9141ms 200 application/json; charset=utf-8 +2017-12-13 10:32:55.043 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" completed keep alive response. +2017-12-13 10:32:55.081 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:32:55.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:32:55.082 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:32:58.157 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:32:58.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:32:58.706 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:32:58.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:32:58.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.0744ms +2017-12-13 10:32:58.713 +05:30 [Information] Request finished in 3631.5219ms 200 application/json; charset=utf-8 +2017-12-13 10:32:58.714 +05:30 [Debug] Connection id ""0HLA1SQPEPTRL"" completed keep alive response. +2017-12-13 10:32:58.754 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:32:58.755 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:32:58.755 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:33:01.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:33:02.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:33:02.352 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:33:02.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:33:02.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3598.1455ms +2017-12-13 10:33:02.355 +05:30 [Information] Request finished in 3602.1233ms 200 application/json; charset=utf-8 +2017-12-13 10:33:02.355 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" completed keep alive response. +2017-12-13 10:34:14.674 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" received FIN. +2017-12-13 10:34:14.674 +05:30 [Debug] Connection id ""0HLA1SQPEPTRL"" received FIN. +2017-12-13 10:34:14.678 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" disconnecting. +2017-12-13 10:34:14.678 +05:30 [Debug] Connection id ""0HLA1SQPEPTRL"" disconnecting. +2017-12-13 10:34:14.680 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" sending FIN. +2017-12-13 10:34:14.680 +05:30 [Debug] Connection id ""0HLA1SQPEPTRL"" sending FIN. +2017-12-13 10:34:14.699 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" sent FIN with status "0". +2017-12-13 10:34:14.699 +05:30 [Debug] Connection id ""0HLA1SQPEPTRL"" sent FIN with status "0". +2017-12-13 10:34:14.704 +05:30 [Debug] Connection id ""0HLA1SQPEPTRL"" stopped. +2017-12-13 10:34:14.704 +05:30 [Debug] Connection id ""0HLA1SQPEPTRM"" stopped. +2017-12-13 10:39:51.189 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" started. +2017-12-13 10:39:51.218 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:39:51.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:39:51.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:39:54.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:39:56.486 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:39:56.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:39:56.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:39:56.489 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5267.7851ms +2017-12-13 10:39:56.491 +05:30 [Information] Request finished in 5298.7437ms 200 application/json; charset=utf-8 +2017-12-13 10:39:56.491 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" completed keep alive response. +2017-12-13 10:40:25.901 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:40:25.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:40:25.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:40:28.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:40:29.556 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:29.557 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:29.558 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:29.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3657.2988ms +2017-12-13 10:40:29.563 +05:30 [Information] Request finished in 3663.9011ms 200 application/json; charset=utf-8 +2017-12-13 10:40:29.563 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" completed keep alive response. +2017-12-13 10:40:29.588 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-13 10:40:29.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-13 10:40:29.590 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-13 10:40:32.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-13 10:40:35.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:35.039 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:35.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:35.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5556.2441ms +2017-12-13 10:40:35.149 +05:30 [Information] Request finished in 5561.0264ms 200 application/json; charset=utf-8 +2017-12-13 10:40:35.149 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" completed keep alive response. +2017-12-13 10:40:35.415 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:40:35.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:40:35.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:40:38.476 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:40:39.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:39.070 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:39.071 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:39.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3655.6439ms +2017-12-13 10:40:39.074 +05:30 [Information] Request finished in 3659.0071ms 200 application/json; charset=utf-8 +2017-12-13 10:40:39.074 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" completed keep alive response. +2017-12-13 10:40:39.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-13 10:40:39.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-13 10:40:39.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-13 10:40:42.166 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-13 10:40:44.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:44.138 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:44.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:44.215 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5103.5564ms +2017-12-13 10:40:44.217 +05:30 [Information] Request finished in 5108.5036ms 200 application/json; charset=utf-8 +2017-12-13 10:40:44.217 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" completed keep alive response. +2017-12-13 10:40:48.597 +05:30 [Debug] Connection id ""0HLA1SQPEPTRO"" started. +2017-12-13 10:40:48.599 +05:30 [Debug] Connection id ""0HLA1SQPEPTRP"" started. +2017-12-13 10:40:48.599 +05:30 [Debug] Connection id ""0HLA1SQPEPTRQ"" started. +2017-12-13 10:40:48.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-13 10:40:48.622 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-13 10:40:48.623 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-13 10:40:48.623 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-13 10:40:48.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-13 10:40:48.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-13 10:40:48.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-13 10:40:48.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-13 10:40:48.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-13 10:40:48.635 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-13 10:40:48.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-13 10:40:48.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-13 10:40:48.857 +05:30 [Debug] Connection id ""0HLA1SQPEPTRR"" started. +2017-12-13 10:40:48.858 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-13 10:40:48.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-13 10:40:48.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-13 10:40:48.865 +05:30 [Debug] Connection id ""0HLA1SQPEPTRS"" started. +2017-12-13 10:40:48.866 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-13 10:40:48.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-13 10:40:48.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-13 10:40:51.751 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:40:51.767 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:40:51.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:40:51.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:40:51.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:40:51.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:40:53.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:53.857 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:40:53.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:53.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:53.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5241.8968ms +2017-12-13 10:40:53.871 +05:30 [Information] Request finished in 5271.3576ms 200 application/json; charset=utf-8 +2017-12-13 10:40:53.871 +05:30 [Debug] Connection id ""0HLA1SQPEPTRP"" completed keep alive response. +2017-12-13 10:40:53.876 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-13 10:40:53.876 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-13 10:40:53.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-13 10:40:53.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:53.973 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:40:53.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:53.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:53.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5336.4583ms +2017-12-13 10:40:53.983 +05:30 [Information] Request finished in 5381.9891ms 200 application/json; charset=utf-8 +2017-12-13 10:40:53.983 +05:30 [Debug] Connection id ""0HLA1SQPEPTRQ"" completed keep alive response. +2017-12-13 10:40:54.576 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:54.576 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:40:54.576 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:54.577 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:54.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5709.1194ms +2017-12-13 10:40:54.580 +05:30 [Information] Request finished in 5715.0531ms 200 application/json; charset=utf-8 +2017-12-13 10:40:54.581 +05:30 [Debug] Connection id ""0HLA1SQPEPTRS"" completed keep alive response. +2017-12-13 10:40:54.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:54.669 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:40:54.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:54.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:54.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6048.1666ms +2017-12-13 10:40:54.673 +05:30 [Information] Request finished in 6076.1887ms 200 application/json; charset=utf-8 +2017-12-13 10:40:54.674 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" completed keep alive response. +2017-12-13 10:40:54.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:54.711 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:40:54.711 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:54.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:54.713 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5852.9694ms +2017-12-13 10:40:54.718 +05:30 [Information] Request finished in 5860.6898ms 200 application/json; charset=utf-8 +2017-12-13 10:40:54.719 +05:30 [Debug] Connection id ""0HLA1SQPEPTRR"" completed keep alive response. +2017-12-13 10:40:56.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:40:59.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:40:59.624 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:40:59.624 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:40:59.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:40:59.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5906.9092ms +2017-12-13 10:40:59.792 +05:30 [Information] Request finished in 5917.2064ms 200 application/json; charset=utf-8 +2017-12-13 10:40:59.793 +05:30 [Debug] Connection id ""0HLA1SQPEPTRP"" completed keep alive response. +2017-12-13 10:41:00.948 +05:30 [Fatal] Sequence contains no elements +2017-12-13 10:41:01.181 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 10:41:01.743 +05:30 [Fatal] Sequence contains no elements +2017-12-13 10:41:01.744 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 10:41:09.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:41:09.120 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:41:09.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:41:09.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:41:09.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 20515.9674ms +2017-12-13 10:41:09.144 +05:30 [Information] Request finished in 20545.0926ms 200 application/json; charset=utf-8 +2017-12-13 10:41:09.145 +05:30 [Debug] Connection id ""0HLA1SQPEPTRO"" completed keep alive response. +2017-12-13 10:42:02.511 +05:30 [Debug] Connection id ""0HLA1SQPEPTRQ"" received FIN. +2017-12-13 10:42:02.511 +05:30 [Debug] Connection id ""0HLA1SQPEPTRS"" received FIN. +2017-12-13 10:42:02.512 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" received FIN. +2017-12-13 10:42:02.512 +05:30 [Debug] Connection id ""0HLA1SQPEPTRP"" received FIN. +2017-12-13 10:42:02.512 +05:30 [Debug] Connection id ""0HLA1SQPEPTRR"" received FIN. +2017-12-13 10:42:02.512 +05:30 [Debug] Connection id ""0HLA1SQPEPTRQ"" disconnecting. +2017-12-13 10:42:02.513 +05:30 [Debug] Connection id ""0HLA1SQPEPTRS"" disconnecting. +2017-12-13 10:42:02.513 +05:30 [Debug] Connection id ""0HLA1SQPEPTRQ"" sending FIN. +2017-12-13 10:42:02.513 +05:30 [Debug] Connection id ""0HLA1SQPEPTRS"" sending FIN. +2017-12-13 10:42:02.513 +05:30 [Debug] Connection id ""0HLA1SQPEPTRQ"" sent FIN with status "0". +2017-12-13 10:42:02.513 +05:30 [Debug] Connection id ""0HLA1SQPEPTRS"" sent FIN with status "0". +2017-12-13 10:42:02.513 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" disconnecting. +2017-12-13 10:42:02.514 +05:30 [Debug] Connection id ""0HLA1SQPEPTRS"" stopped. +2017-12-13 10:42:02.513 +05:30 [Debug] Connection id ""0HLA1SQPEPTRQ"" stopped. +2017-12-13 10:42:02.514 +05:30 [Debug] Connection id ""0HLA1SQPEPTRP"" disconnecting. +2017-12-13 10:42:02.514 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" sending FIN. +2017-12-13 10:42:02.514 +05:30 [Debug] Connection id ""0HLA1SQPEPTRP"" sending FIN. +2017-12-13 10:42:02.515 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" sent FIN with status "0". +2017-12-13 10:42:02.515 +05:30 [Debug] Connection id ""0HLA1SQPEPTRP"" sent FIN with status "0". +2017-12-13 10:42:02.515 +05:30 [Debug] Connection id ""0HLA1SQPEPTRP"" stopped. +2017-12-13 10:42:02.515 +05:30 [Debug] Connection id ""0HLA1SQPEPTRN"" stopped. +2017-12-13 10:42:02.556 +05:30 [Debug] Connection id ""0HLA1SQPEPTRR"" disconnecting. +2017-12-13 10:42:02.556 +05:30 [Debug] Connection id ""0HLA1SQPEPTRR"" sending FIN. +2017-12-13 10:42:02.556 +05:30 [Debug] Connection id ""0HLA1SQPEPTRR"" sent FIN with status "0". +2017-12-13 10:42:02.556 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=tw_758233674978426880&userId=48&message=got%20it&shortnerstatus=0&mediaType=1 multipart/form-data; boundary=----WebKitFormBoundaryxA4WfBsOAQK0xWat 32357 +2017-12-13 10:42:02.557 +05:30 [Debug] Connection id ""0HLA1SQPEPTRR"" stopped. +2017-12-13 10:42:02.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-13 10:42:02.563 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-13 10:42:05.695 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["got it", "tw_758233674978426880", "48", "", "", "defaultUri", "Image", "Microsoft.AspNetCore.Http.Internal.FormFile"]) - ModelState is Valid +2017-12-13 10:42:05.718 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:42:05.719 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:42:05.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-13 10:42:05.719 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:42:05.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 3156.427ms +2017-12-13 10:42:05.734 +05:30 [Information] Request finished in 3218.0062ms 200 text/plain; charset=utf-8 +2017-12-13 10:42:05.734 +05:30 [Debug] Connection id ""0HLA1SQPEPTRO"" completed keep alive response. +2017-12-13 10:42:06.539 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=CKAPEX1UW1.jpg +2017-12-13 10:42:06.540 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-13 10:42:06.541 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-13 10:42:09.586 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["CKAPEX1UW1.jpg"]) - ModelState is Valid +2017-12-13 10:42:09.610 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:42:09.610 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:42:09.611 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-12-13 10:42:09.612 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:42:09.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3129.3989ms +2017-12-13 10:42:09.734 +05:30 [Information] Request finished in 3183.5198ms 200 +2017-12-13 10:42:09.734 +05:30 [Debug] Connection id ""0HLA1SQPEPTRO"" completed keep alive response. +2017-12-13 10:43:24.670 +05:30 [Debug] Connection id ""0HLA1SQPEPTRO"" received FIN. +2017-12-13 10:43:24.671 +05:30 [Debug] Connection id ""0HLA1SQPEPTRO"" disconnecting. +2017-12-13 10:43:24.671 +05:30 [Debug] Connection id ""0HLA1SQPEPTRO"" sending FIN. +2017-12-13 10:43:24.674 +05:30 [Debug] Connection id ""0HLA1SQPEPTRO"" sent FIN with status "0". +2017-12-13 10:43:24.675 +05:30 [Debug] Connection id ""0HLA1SQPEPTRO"" stopped. +2017-12-13 10:46:11.577 +05:30 [Debug] Connection id ""0HLA1SQPEPTRT"" started. +2017-12-13 10:46:11.581 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=tw_758233674978426880&userId=48&message=hello&shortnerstatus=0&mediaType=1 multipart/form-data; boundary=----WebKitFormBoundaryeRbBhY4ROaTzzIAa 54109 +2017-12-13 10:46:11.582 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-13 10:46:11.582 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-13 10:46:12.741 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["hello", "tw_758233674978426880", "48", "", "", "defaultUri", "Image", "Microsoft.AspNetCore.Http.Internal.FormFile"]) - ModelState is Valid +2017-12-13 10:46:30.635 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:46:30.636 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:46:30.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-13 10:46:30.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:46:30.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 19054.9494ms +2017-12-13 10:46:30.640 +05:30 [Information] Request finished in 19062.9618ms 200 text/plain; charset=utf-8 +2017-12-13 10:46:30.641 +05:30 [Debug] Connection id ""0HLA1SQPEPTRT"" completed keep alive response. +2017-12-13 10:46:30.901 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=FGHX4WNZMI.jpg +2017-12-13 10:46:30.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-13 10:46:30.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-13 10:46:35.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["FGHX4WNZMI.jpg"]) - ModelState is Valid +2017-12-13 10:46:35.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:46:35.705 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:46:35.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-12-13 10:46:35.706 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:46:35.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 4802.8368ms +2017-12-13 10:46:35.711 +05:30 [Information] Request finished in 4809.7925ms 200 +2017-12-13 10:46:35.712 +05:30 [Debug] Connection id ""0HLA1SQPEPTRT"" completed keep alive response. +2017-12-13 10:47:16.818 +05:30 [Debug] Hosting starting +2017-12-13 10:47:17.050 +05:30 [Debug] Hosting started +2017-12-13 10:47:17.081 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" started. +2017-12-13 10:47:17.081 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" started. +2017-12-13 10:47:17.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-13 10:47:17.287 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-13 10:47:17.364 +05:30 [Information] Request finished in 134.1312ms 200 +2017-12-13 10:47:17.445 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" completed keep alive response. +2017-12-13 10:47:18.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-13 10:47:18.983 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"faeba8ef-9e54-4b78-accc-2989a3a57450"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-13 10:47:19.156 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:47:19.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:47:19.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-13 10:47:19.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:47:19.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-13 10:47:19.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-13 10:47:19.379 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:47:19.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:47:19.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:47:19.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 519.1266ms +2017-12-13 10:47:19.761 +05:30 [Information] Request finished in 2547.7977ms 200 application/json; charset=utf-8 +2017-12-13 10:47:19.765 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" completed keep alive response. +2017-12-13 10:47:22.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:47:28.986 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:47:28.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:47:28.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:47:28.995 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9815.7763ms +2017-12-13 10:47:29.000 +05:30 [Information] Request finished in 9846.626ms 200 application/json; charset=utf-8 +2017-12-13 10:47:29.000 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" completed keep alive response. +2017-12-13 10:47:38.259 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:47:38.261 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:47:38.264 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:47:41.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:47:41.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:47:41.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:47:41.844 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:47:41.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3579.7702ms +2017-12-13 10:47:41.848 +05:30 [Information] Request finished in 3587.9037ms 200 application/json; charset=utf-8 +2017-12-13 10:47:41.848 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" completed keep alive response. +2017-12-13 10:47:41.887 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:47:41.888 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:47:41.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:47:44.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:47:45.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:47:45.433 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:47:45.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:47:45.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3545.8272ms +2017-12-13 10:47:45.437 +05:30 [Information] Request finished in 3551.114ms 200 application/json; charset=utf-8 +2017-12-13 10:47:45.437 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" completed keep alive response. +2017-12-13 10:47:45.459 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:47:45.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:47:45.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:47:48.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:47:49.026 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:47:49.027 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:47:49.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:47:49.029 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3567.5439ms +2017-12-13 10:47:49.031 +05:30 [Information] Request finished in 3572.6643ms 200 application/json; charset=utf-8 +2017-12-13 10:47:49.032 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" completed keep alive response. +2017-12-13 10:47:52.421 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:47:52.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:47:52.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:47:55.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:47:55.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:47:55.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:47:55.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:47:55.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3545.8483ms +2017-12-13 10:47:55.971 +05:30 [Information] Request finished in 3549.1985ms 200 application/json; charset=utf-8 +2017-12-13 10:47:55.971 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" completed keep alive response. +2017-12-13 10:47:59.390 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:47:59.391 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:47:59.392 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:48:01.533 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:48:02.048 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:02.048 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:02.049 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:02.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2657.1849ms +2017-12-13 10:48:02.055 +05:30 [Information] Request finished in 2664.4096ms 200 application/json; charset=utf-8 +2017-12-13 10:48:02.056 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" completed keep alive response. +2017-12-13 10:48:02.088 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-13 10:48:02.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-13 10:48:02.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-13 10:48:05.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-13 10:48:07.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:07.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:07.135 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:07.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5205.9269ms +2017-12-13 10:48:07.303 +05:30 [Information] Request finished in 5217.5126ms 200 application/json; charset=utf-8 +2017-12-13 10:48:07.304 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" completed keep alive response. +2017-12-13 10:48:07.700 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 10:48:07.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 10:48:07.701 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 10:48:10.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 10:48:11.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:11.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:11.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:11.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3552.9648ms +2017-12-13 10:48:11.260 +05:30 [Information] Request finished in 3561.6951ms 200 application/json; charset=utf-8 +2017-12-13 10:48:11.261 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" completed keep alive response. +2017-12-13 10:48:11.325 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-13 10:48:11.325 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-13 10:48:11.326 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-13 10:48:14.386 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-13 10:48:16.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:16.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:16.050 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:16.083 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4755.0901ms +2017-12-13 10:48:16.084 +05:30 [Information] Request finished in 4759.2607ms 200 application/json; charset=utf-8 +2017-12-13 10:48:16.085 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" completed keep alive response. +2017-12-13 10:48:17.976 +05:30 [Debug] Connection id ""0HLA1T33GTKCP"" started. +2017-12-13 10:48:17.976 +05:30 [Debug] Connection id ""0HLA1T33GTKCO"" started. +2017-12-13 10:48:18.003 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-13 10:48:18.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-13 10:48:18.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-13 10:48:18.008 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-13 10:48:18.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-13 10:48:18.022 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-13 10:48:18.023 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-13 10:48:18.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-13 10:48:18.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-13 10:48:18.101 +05:30 [Debug] Connection id ""0HLA1T33GTKCQ"" started. +2017-12-13 10:48:18.105 +05:30 [Debug] Connection id ""0HLA1T33GTKCR"" started. +2017-12-13 10:48:18.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-13 10:48:18.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-13 10:48:18.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-13 10:48:19.265 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-13 10:48:19.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-13 10:48:19.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-13 10:48:19.284 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-13 10:48:19.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-13 10:48:19.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-13 10:48:22.110 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:48:22.166 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:48:22.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:48:22.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:48:22.328 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:48:22.378 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:48:23.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:23.250 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:48:23.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:23.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:23.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5202.4536ms +2017-12-13 10:48:23.256 +05:30 [Information] Request finished in 5258.6293ms 200 application/json; charset=utf-8 +2017-12-13 10:48:23.256 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" completed keep alive response. +2017-12-13 10:48:23.263 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-13 10:48:23.264 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-13 10:48:23.265 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-13 10:48:24.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:24.321 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:48:24.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:24.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:24.333 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5821.0787ms +2017-12-13 10:48:24.334 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:24.335 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:48:24.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:24.357 +05:30 [Information] Request finished in 5826.3857ms 200 application/json; charset=utf-8 +2017-12-13 10:48:24.358 +05:30 [Debug] Connection id ""0HLA1T33GTKCO"" completed keep alive response. +2017-12-13 10:48:24.358 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:24.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6332.9022ms +2017-12-13 10:48:24.368 +05:30 [Information] Request finished in 6363.6372ms 200 application/json; charset=utf-8 +2017-12-13 10:48:24.368 +05:30 [Debug] Connection id ""0HLA1T33GTKCP"" completed keep alive response. +2017-12-13 10:48:24.831 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:24.831 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:48:24.832 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:24.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:24.833 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5566.3185ms +2017-12-13 10:48:24.835 +05:30 [Information] Request finished in 5587.6714ms 200 application/json; charset=utf-8 +2017-12-13 10:48:24.836 +05:30 [Debug] Connection id ""0HLA1T33GTKCQ"" completed keep alive response. +2017-12-13 10:48:25.196 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:25.196 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:48:25.196 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:25.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:25.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5911.3482ms +2017-12-13 10:48:25.202 +05:30 [Information] Request finished in 5920.248ms 200 application/json; charset=utf-8 +2017-12-13 10:48:25.203 +05:30 [Debug] Connection id ""0HLA1T33GTKCR"" completed keep alive response. +2017-12-13 10:48:26.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 10:48:28.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:28.747 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:48:28.747 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:28.748 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:28.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5545.3383ms +2017-12-13 10:48:28.819 +05:30 [Information] Request finished in 5556.8011ms 200 application/json; charset=utf-8 +2017-12-13 10:48:28.820 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" completed keep alive response. +2017-12-13 10:48:32.386 +05:30 [Fatal] Sequence contains no elements +2017-12-13 10:48:32.442 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 10:48:33.018 +05:30 [Fatal] Sequence contains no elements +2017-12-13 10:48:33.019 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 10:48:40.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 10:48:40.094 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 10:48:40.094 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 10:48:40.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 10:48:40.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 22109.8241ms +2017-12-13 10:48:40.123 +05:30 [Information] Request finished in 22146.1013ms 200 application/json; charset=utf-8 +2017-12-13 10:48:40.124 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" completed keep alive response. +2017-12-13 10:50:57.238 +05:30 [Debug] Connection id ""0HLA1T33GTKCO"" received FIN. +2017-12-13 10:50:57.238 +05:30 [Debug] Connection id ""0HLA1T33GTKCP"" received FIN. +2017-12-13 10:50:57.239 +05:30 [Debug] Connection id ""0HLA1T33GTKCR"" received FIN. +2017-12-13 10:50:57.239 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" received FIN. +2017-12-13 10:50:57.239 +05:30 [Debug] Connection id ""0HLA1T33GTKCQ"" received FIN. +2017-12-13 10:50:57.240 +05:30 [Debug] Connection id ""0HLA1T33GTKCO"" disconnecting. +2017-12-13 10:50:57.240 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" received FIN. +2017-12-13 10:50:57.241 +05:30 [Debug] Connection id ""0HLA1T33GTKCP"" disconnecting. +2017-12-13 10:50:57.242 +05:30 [Debug] Connection id ""0HLA1T33GTKCR"" disconnecting. +2017-12-13 10:50:57.243 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" disconnecting. +2017-12-13 10:50:57.243 +05:30 [Debug] Connection id ""0HLA1T33GTKCQ"" disconnecting. +2017-12-13 10:50:57.243 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" disconnecting. +2017-12-13 10:50:57.267 +05:30 [Debug] Connection id ""0HLA1T33GTKCP"" sending FIN. +2017-12-13 10:50:57.267 +05:30 [Debug] Connection id ""0HLA1T33GTKCO"" sending FIN. +2017-12-13 10:50:57.292 +05:30 [Debug] Connection id ""0HLA1T33GTKCR"" sending FIN. +2017-12-13 10:50:57.293 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" sending FIN. +2017-12-13 10:50:57.292 +05:30 [Debug] Connection id ""0HLA1T33GTKCQ"" sending FIN. +2017-12-13 10:50:57.294 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" sending FIN. +2017-12-13 10:50:57.300 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" sent FIN with status "0". +2017-12-13 10:50:57.300 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" sent FIN with status "0". +2017-12-13 10:50:57.302 +05:30 [Debug] Connection id ""0HLA1T33GTKCM"" stopped. +2017-12-13 10:50:57.302 +05:30 [Debug] Connection id ""0HLA1T33GTKCN"" stopped. +2017-12-13 10:50:57.302 +05:30 [Debug] Connection id ""0HLA1T33GTKCR"" sent FIN with status "0". +2017-12-13 10:50:57.302 +05:30 [Debug] Connection id ""0HLA1T33GTKCR"" stopped. +2017-12-13 10:50:57.302 +05:30 [Debug] Connection id ""0HLA1T33GTKCQ"" sent FIN with status "0". +2017-12-13 10:50:57.303 +05:30 [Debug] Connection id ""0HLA1T33GTKCO"" sent FIN with status "0". +2017-12-13 10:50:57.303 +05:30 [Debug] Connection id ""0HLA1T33GTKCO"" stopped. +2017-12-13 10:50:57.303 +05:30 [Debug] Connection id ""0HLA1T33GTKCQ"" stopped. +2017-12-13 10:50:57.304 +05:30 [Debug] Connection id ""0HLA1T33GTKCP"" sent FIN with status "0". +2017-12-13 10:50:57.304 +05:30 [Debug] Connection id ""0HLA1T33GTKCP"" stopped. +2017-12-13 11:06:16.002 +05:30 [Debug] Connection id ""0HLA1T33GTKCS"" started. +2017-12-13 11:06:16.002 +05:30 [Debug] Connection id ""0HLA1T33GTKCT"" started. +2017-12-13 11:06:16.006 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetFeeds?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-13 11:06:16.007 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-13 11:06:16.008 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-13 11:06:16.008 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetFeeds"'. +2017-12-13 11:06:16.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" +2017-12-13 11:06:16.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-13 11:06:19.118 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-13 11:06:19.118 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-13 11:06:24.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:06:24.924 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:06:24.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:06:24.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:06:25.060 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:06:25.061 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:06:25.061 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:06:25.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:06:25.165 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" in 9125.3854ms +2017-12-13 11:06:25.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 9125.0778ms +2017-12-13 11:06:25.302 +05:30 [Information] Request finished in 9275.434ms 200 application/json; charset=utf-8 +2017-12-13 11:06:25.302 +05:30 [Debug] Connection id ""0HLA1T33GTKCT"" completed keep alive response. +2017-12-13 11:06:25.420 +05:30 [Information] Request finished in 9233.861ms 200 application/json; charset=utf-8 +2017-12-13 11:06:25.420 +05:30 [Debug] Connection id ""0HLA1T33GTKCS"" completed keep alive response. +2017-12-13 11:07:27.236 +05:30 [Debug] Connection id ""0HLA1T33GTKCT"" received FIN. +2017-12-13 11:07:27.236 +05:30 [Debug] Connection id ""0HLA1T33GTKCT"" disconnecting. +2017-12-13 11:07:27.237 +05:30 [Debug] Connection id ""0HLA1T33GTKCT"" sending FIN. +2017-12-13 11:07:27.236 +05:30 [Debug] Connection id ""0HLA1T33GTKCS"" received FIN. +2017-12-13 11:07:27.237 +05:30 [Debug] Connection id ""0HLA1T33GTKCT"" sent FIN with status "0". +2017-12-13 11:07:27.238 +05:30 [Debug] Connection id ""0HLA1T33GTKCT"" stopped. +2017-12-13 11:07:27.240 +05:30 [Debug] Connection id ""0HLA1T33GTKCS"" disconnecting. +2017-12-13 11:07:27.240 +05:30 [Debug] Connection id ""0HLA1T33GTKCS"" sending FIN. +2017-12-13 11:07:27.241 +05:30 [Debug] Connection id ""0HLA1T33GTKCS"" sent FIN with status "0". +2017-12-13 11:07:27.241 +05:30 [Debug] Connection id ""0HLA1T33GTKCS"" stopped. +2017-12-13 11:24:00.399 +05:30 [Debug] Connection id ""0HLA1T33GTKCU"" started. +2017-12-13 11:24:00.400 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 11:24:00.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 11:24:00.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 11:24:03.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 11:24:05.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:05.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:05.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:05.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5185.1006ms +2017-12-13 11:24:05.589 +05:30 [Information] Request finished in 5188.6088ms 200 application/json; charset=utf-8 +2017-12-13 11:24:05.589 +05:30 [Debug] Connection id ""0HLA1T33GTKCU"" completed keep alive response. +2017-12-13 11:24:05.614 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-13 11:24:05.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-13 11:24:05.616 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-13 11:24:08.648 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-13 11:24:10.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:10.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:10.380 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:10.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4764.9462ms +2017-12-13 11:24:10.387 +05:30 [Information] Request finished in 4772.8349ms 200 application/json; charset=utf-8 +2017-12-13 11:24:10.388 +05:30 [Debug] Connection id ""0HLA1T33GTKCU"" completed keep alive response. +2017-12-13 11:24:12.614 +05:30 [Debug] Connection id ""0HLA1T33GTKCV"" started. +2017-12-13 11:24:12.615 +05:30 [Debug] Connection id ""0HLA1T33GTKD0"" started. +2017-12-13 11:24:12.615 +05:30 [Debug] Connection id ""0HLA1T33GTKD1"" started. +2017-12-13 11:24:12.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-13 11:24:12.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-13 11:24:12.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-13 11:24:12.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-13 11:24:12.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-13 11:24:12.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-13 11:24:12.643 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-13 11:24:12.652 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-13 11:24:12.652 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-13 11:24:12.655 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-13 11:24:12.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-13 11:24:12.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-13 11:24:12.729 +05:30 [Debug] Connection id ""0HLA1T33GTKD2"" started. +2017-12-13 11:24:12.729 +05:30 [Debug] Connection id ""0HLA1T33GTKD3"" started. +2017-12-13 11:24:13.131 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-13 11:24:13.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-13 11:24:13.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-13 11:24:14.134 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-13 11:24:14.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-13 11:24:14.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-13 11:24:16.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:24:17.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:24:17.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:24:17.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:24:17.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:17.385 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:24:17.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:17.386 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:24:17.388 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:17.388 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:24:17.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3267.1733ms +2017-12-13 11:24:17.443 +05:30 [Information] Request finished in 3309.8858ms 200 application/json; charset=utf-8 +2017-12-13 11:24:17.444 +05:30 [Debug] Connection id ""0HLA1T33GTKD3"" completed keep alive response. +2017-12-13 11:24:17.451 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetFeeds?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-13 11:24:17.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetFeeds"'. +2017-12-13 11:24:17.452 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" +2017-12-13 11:24:18.624 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:18.625 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:24:18.625 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:18.626 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:18.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5493.638ms +2017-12-13 11:24:18.632 +05:30 [Information] Request finished in 5500.4416ms 200 application/json; charset=utf-8 +2017-12-13 11:24:18.633 +05:30 [Debug] Connection id ""0HLA1T33GTKD2"" completed keep alive response. +2017-12-13 11:24:18.642 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-13 11:24:18.643 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-13 11:24:18.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-13 11:24:19.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:19.291 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:24:19.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:19.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:19.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6657.0528ms +2017-12-13 11:24:19.302 +05:30 [Information] Request finished in 6688.0107ms 200 application/json; charset=utf-8 +2017-12-13 11:24:19.302 +05:30 [Debug] Connection id ""0HLA1T33GTKCU"" completed keep alive response. +2017-12-13 11:24:19.752 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:19.752 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:24:19.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:19.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:19.756 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7093.0907ms +2017-12-13 11:24:19.759 +05:30 [Information] Request finished in 7142.9022ms 200 application/json; charset=utf-8 +2017-12-13 11:24:19.759 +05:30 [Debug] Connection id ""0HLA1T33GTKD1"" completed keep alive response. +2017-12-13 11:24:19.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:19.943 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:24:19.943 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:19.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:19.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7291.6092ms +2017-12-13 11:24:19.948 +05:30 [Information] Request finished in 7332.7669ms 200 application/json; charset=utf-8 +2017-12-13 11:24:19.948 +05:30 [Debug] Connection id ""0HLA1T33GTKCV"" completed keep alive response. +2017-12-13 11:24:20.487 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-13 11:24:21.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-13 11:24:22.787 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:22.787 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:24:22.787 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:22.789 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:22.790 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" in 5336.7771ms +2017-12-13 11:24:22.794 +05:30 [Information] Request finished in 5342.8081ms 200 application/json; charset=utf-8 +2017-12-13 11:24:22.794 +05:30 [Debug] Connection id ""0HLA1T33GTKD3"" completed keep alive response. +2017-12-13 11:24:23.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:23.931 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:24:23.931 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:23.933 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:23.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 5283.9808ms +2017-12-13 11:24:23.937 +05:30 [Information] Request finished in 5294.532ms 200 application/json; charset=utf-8 +2017-12-13 11:24:23.938 +05:30 [Debug] Connection id ""0HLA1T33GTKD2"" completed keep alive response. +2017-12-13 11:24:27.387 +05:30 [Fatal] Sequence contains no elements +2017-12-13 11:24:27.388 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 11:24:28.020 +05:30 [Fatal] Sequence contains no elements +2017-12-13 11:24:28.021 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 11:24:35.495 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:24:35.496 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:24:35.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:24:35.498 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:24:35.501 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 22849.9958ms +2017-12-13 11:24:35.505 +05:30 [Information] Request finished in 22888.965ms 200 application/json; charset=utf-8 +2017-12-13 11:24:35.506 +05:30 [Debug] Connection id ""0HLA1T33GTKD0"" completed keep alive response. +2017-12-13 11:25:38.629 +05:30 [Debug] Connection id ""0HLA1T33GTKCU"" received FIN. +2017-12-13 11:25:38.629 +05:30 [Debug] Connection id ""0HLA1T33GTKD1"" received FIN. +2017-12-13 11:25:38.630 +05:30 [Debug] Connection id ""0HLA1T33GTKCV"" received FIN. +2017-12-13 11:25:38.630 +05:30 [Debug] Connection id ""0HLA1T33GTKCU"" disconnecting. +2017-12-13 11:25:38.630 +05:30 [Debug] Connection id ""0HLA1T33GTKD1"" disconnecting. +2017-12-13 11:25:38.630 +05:30 [Debug] Connection id ""0HLA1T33GTKD2"" received FIN. +2017-12-13 11:25:38.630 +05:30 [Debug] Connection id ""0HLA1T33GTKD3"" received FIN. +2017-12-13 11:25:38.631 +05:30 [Debug] Connection id ""0HLA1T33GTKD1"" sending FIN. +2017-12-13 11:25:38.631 +05:30 [Debug] Connection id ""0HLA1T33GTKD0"" received FIN. +2017-12-13 11:25:38.653 +05:30 [Debug] Connection id ""0HLA1T33GTKD1"" sent FIN with status "0". +2017-12-13 11:25:38.654 +05:30 [Debug] Connection id ""0HLA1T33GTKD1"" stopped. +2017-12-13 11:25:38.653 +05:30 [Debug] Connection id ""0HLA1T33GTKCU"" sending FIN. +2017-12-13 11:25:38.654 +05:30 [Debug] Connection id ""0HLA1T33GTKD3"" disconnecting. +2017-12-13 11:25:38.654 +05:30 [Debug] Connection id ""0HLA1T33GTKD4"" started. +2017-12-13 11:25:38.654 +05:30 [Debug] Connection id ""0HLA1T33GTKD0"" disconnecting. +2017-12-13 11:25:38.655 +05:30 [Debug] Connection id ""0HLA1T33GTKCU"" sent FIN with status "0". +2017-12-13 11:25:38.630 +05:30 [Debug] Connection id ""0HLA1T33GTKCV"" disconnecting. +2017-12-13 11:25:38.632 +05:30 [Debug] Connection id ""0HLA1T33GTKD2"" disconnecting. +2017-12-13 11:25:38.656 +05:30 [Debug] Connection id ""0HLA1T33GTKCV"" sending FIN. +2017-12-13 11:25:38.656 +05:30 [Debug] Connection id ""0HLA1T33GTKD2"" sending FIN. +2017-12-13 11:25:38.655 +05:30 [Debug] Connection id ""0HLA1T33GTKCU"" stopped. +2017-12-13 11:25:38.656 +05:30 [Debug] Connection id ""0HLA1T33GTKD2"" sent FIN with status "0". +2017-12-13 11:25:38.657 +05:30 [Debug] Connection id ""0HLA1T33GTKD3"" sending FIN. +2017-12-13 11:25:38.657 +05:30 [Debug] Connection id ""0HLA1T33GTKD2"" stopped. +2017-12-13 11:25:38.657 +05:30 [Debug] Connection id ""0HLA1T33GTKD0"" sending FIN. +2017-12-13 11:25:38.657 +05:30 [Debug] Connection id ""0HLA1T33GTKCV"" sent FIN with status "0". +2017-12-13 11:25:38.658 +05:30 [Debug] Connection id ""0HLA1T33GTKCV"" stopped. +2017-12-13 11:25:38.659 +05:30 [Debug] Connection id ""0HLA1T33GTKD0"" sent FIN with status "0". +2017-12-13 11:25:38.660 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-13 11:25:38.660 +05:30 [Debug] Connection id ""0HLA1T33GTKD0"" stopped. +2017-12-13 11:25:38.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-13 11:25:38.660 +05:30 [Debug] Connection id ""0HLA1T33GTKD3"" sent FIN with status "0". +2017-12-13 11:25:38.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-13 11:25:38.661 +05:30 [Debug] Connection id ""0HLA1T33GTKD3"" stopped. +2017-12-13 11:25:41.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:25:44.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:25:44.188 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:25:44.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:25:44.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:25:44.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5528.5339ms +2017-12-13 11:25:44.202 +05:30 [Information] Request finished in 5537.8607ms 200 application/json; charset=utf-8 +2017-12-13 11:25:44.202 +05:30 [Debug] Connection id ""0HLA1T33GTKD4"" completed keep alive response. +2017-12-13 11:25:57.836 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=tw_758233674978426880&userId=48&message=HI&shortnerstatus=0&mediaType=1 multipart/form-data; boundary=----WebKitFormBoundaryLVmoDAgFGDp5Aqfw 47262 +2017-12-13 11:25:57.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-13 11:25:57.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-13 11:26:00.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["HI", "tw_758233674978426880", "48", "", "", "defaultUri", "Image", "Microsoft.AspNetCore.Http.Internal.FormFile"]) - ModelState is Valid +2017-12-13 11:27:07.058 +05:30 [Debug] Hosting starting +2017-12-13 11:27:07.357 +05:30 [Debug] Hosting started +2017-12-13 11:27:07.498 +05:30 [Debug] Connection id ""0HLA1TPBTNA3S"" started. +2017-12-13 11:27:07.499 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" started. +2017-12-13 11:27:07.734 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-13 11:27:07.734 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-13 11:27:07.962 +05:30 [Information] Request finished in 194.9723ms 200 +2017-12-13 11:27:08.163 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" completed keep alive response. +2017-12-13 11:27:08.982 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 11:27:09.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-13 11:27:09.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 11:27:09.908 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"518473e7-fde4-45f7-9240-92ae47cab815"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-13 11:27:10.071 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-13 11:27:10.071 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 11:27:10.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-13 11:27:10.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-13 11:27:10.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:27:10.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:27:10.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:27:10.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 628.711ms +2017-12-13 11:27:10.811 +05:30 [Information] Request finished in 3186.7882ms 200 application/json; charset=utf-8 +2017-12-13 11:27:10.818 +05:30 [Debug] Connection id ""0HLA1TPBTNA3S"" completed keep alive response. +2017-12-13 11:27:14.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 11:27:20.784 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:27:20.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:27:20.796 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:27:20.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10725.3568ms +2017-12-13 11:27:20.803 +05:30 [Information] Request finished in 11834.8289ms 200 application/json; charset=utf-8 +2017-12-13 11:27:20.803 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" completed keep alive response. +2017-12-13 11:27:31.058 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 11:27:31.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 11:27:31.059 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 11:27:34.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 11:27:34.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:27:34.656 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:27:34.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:27:34.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3598.6555ms +2017-12-13 11:27:34.662 +05:30 [Information] Request finished in 3605.1382ms 200 application/json; charset=utf-8 +2017-12-13 11:27:34.662 +05:30 [Debug] Connection id ""0HLA1TPBTNA3S"" completed keep alive response. +2017-12-13 11:27:34.712 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 11:27:34.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 11:27:34.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 11:27:37.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 11:27:38.301 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:27:38.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:27:38.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:27:38.305 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3587.4459ms +2017-12-13 11:27:38.307 +05:30 [Information] Request finished in 3594.3387ms 200 application/json; charset=utf-8 +2017-12-13 11:27:38.308 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" completed keep alive response. +2017-12-13 11:27:38.356 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 11:27:38.356 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 11:27:38.357 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 11:27:41.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 11:27:41.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:27:41.956 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:27:41.957 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:27:41.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3600.836ms +2017-12-13 11:27:41.969 +05:30 [Information] Request finished in 3615.0923ms 200 application/json; charset=utf-8 +2017-12-13 11:27:41.969 +05:30 [Debug] Connection id ""0HLA1TPBTNA3S"" completed keep alive response. +2017-12-13 11:28:27.389 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 11:28:27.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 11:28:27.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 11:28:30.469 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 11:28:31.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:28:31.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:28:31.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:28:31.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.9386ms +2017-12-13 11:28:31.018 +05:30 [Information] Request finished in 3629.6042ms 200 application/json; charset=utf-8 +2017-12-13 11:28:31.019 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" completed keep alive response. +2017-12-13 11:28:58.188 +05:30 [Debug] Connection id ""0HLA1TPBTNA3S"" received FIN. +2017-12-13 11:28:58.189 +05:30 [Debug] Connection id ""0HLA1TPBTNA3S"" disconnecting. +2017-12-13 11:28:58.190 +05:30 [Debug] Connection id ""0HLA1TPBTNA3S"" sending FIN. +2017-12-13 11:28:58.196 +05:30 [Debug] Connection id ""0HLA1TPBTNA3S"" sent FIN with status "0". +2017-12-13 11:28:58.199 +05:30 [Debug] Connection id ""0HLA1TPBTNA3S"" stopped. +2017-12-13 11:29:48.971 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" received FIN. +2017-12-13 11:29:48.972 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" started. +2017-12-13 11:29:48.972 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" disconnecting. +2017-12-13 11:29:48.972 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" sending FIN. +2017-12-13 11:29:48.973 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" sent FIN with status "0". +2017-12-13 11:29:48.973 +05:30 [Debug] Connection id ""0HLA1TPBTNA3R"" stopped. +2017-12-13 11:29:48.977 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 11:29:48.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 11:29:48.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 11:29:52.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 11:29:52.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:29:52.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:29:52.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:29:52.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3612.4534ms +2017-12-13 11:29:52.593 +05:30 [Information] Request finished in 3616.6806ms 200 application/json; charset=utf-8 +2017-12-13 11:29:52.593 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" completed keep alive response. +2017-12-13 11:29:52.611 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-13 11:29:52.611 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-13 11:29:52.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-13 11:29:55.790 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-13 11:29:57.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:29:57.825 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:29:57.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:29:57.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5337.7745ms +2017-12-13 11:29:57.954 +05:30 [Information] Request finished in 5344.719ms 200 application/json; charset=utf-8 +2017-12-13 11:29:57.954 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" completed keep alive response. +2017-12-13 11:29:58.246 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 11:29:58.246 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 11:29:58.246 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 11:30:01.301 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 11:30:01.851 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:30:01.852 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:30:01.853 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:30:01.856 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3606.547ms +2017-12-13 11:30:01.868 +05:30 [Information] Request finished in 3619.6184ms 200 application/json; charset=utf-8 +2017-12-13 11:30:01.868 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" completed keep alive response. +2017-12-13 11:30:01.989 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-13 11:30:01.990 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-13 11:30:02.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-13 11:30:05.102 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-13 11:30:06.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:30:06.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:30:06.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:30:06.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4964.2537ms +2017-12-13 11:30:07.008 +05:30 [Information] Request finished in 5017.1262ms 200 application/json; charset=utf-8 +2017-12-13 11:30:07.008 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" completed keep alive response. +2017-12-13 11:30:08.748 +05:30 [Debug] Connection id ""0HLA1TPBTNA3U"" started. +2017-12-13 11:30:08.748 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-13 11:30:08.749 +05:30 [Debug] Connection id ""0HLA1TPBTNA3V"" started. +2017-12-13 11:30:08.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-13 11:30:08.749 +05:30 [Debug] Connection id ""0HLA1TPBTNA40"" started. +2017-12-13 11:30:08.771 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-13 11:30:08.792 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-13 11:30:08.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-13 11:30:08.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-13 11:30:08.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-13 11:30:08.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-13 11:30:08.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-13 11:30:08.798 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-13 11:30:08.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-13 11:30:08.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-13 11:30:08.858 +05:30 [Debug] Connection id ""0HLA1TPBTNA41"" started. +2017-12-13 11:30:08.858 +05:30 [Debug] Connection id ""0HLA1TPBTNA42"" started. +2017-12-13 11:30:08.861 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-13 11:30:08.861 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-13 11:30:08.883 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-13 11:30:08.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-13 11:30:08.884 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-13 11:30:08.886 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-13 11:30:11.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:30:11.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:30:12.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:30:12.068 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:30:12.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:30:12.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:30:13.148 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:30:13.149 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:30:13.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:30:13.150 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:30:13.153 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4354.6034ms +2017-12-13 11:30:13.155 +05:30 [Information] Request finished in 4405.0332ms 200 application/json; charset=utf-8 +2017-12-13 11:30:13.155 +05:30 [Debug] Connection id ""0HLA1TPBTNA3U"" completed keep alive response. +2017-12-13 11:30:13.159 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-13 11:30:13.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-13 11:30:13.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-13 11:30:14.128 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:30:14.128 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:30:14.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:30:14.130 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:30:14.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5346.6033ms +2017-12-13 11:30:14.149 +05:30 [Information] Request finished in 5398.9372ms 200 application/json; charset=utf-8 +2017-12-13 11:30:14.150 +05:30 [Debug] Connection id ""0HLA1TPBTNA3V"" completed keep alive response. +2017-12-13 11:30:14.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:30:14.229 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:30:14.229 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:30:14.230 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:30:14.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5436.3327ms +2017-12-13 11:30:14.239 +05:30 [Information] Request finished in 5467.2434ms 200 application/json; charset=utf-8 +2017-12-13 11:30:14.240 +05:30 [Debug] Connection id ""0HLA1TPBTNA40"" completed keep alive response. +2017-12-13 11:30:14.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:30:14.721 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:30:14.722 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:30:14.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:30:14.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5837.9723ms +2017-12-13 11:30:14.731 +05:30 [Information] Request finished in 5869.6191ms 200 application/json; charset=utf-8 +2017-12-13 11:30:14.732 +05:30 [Debug] Connection id ""0HLA1TPBTNA42"" completed keep alive response. +2017-12-13 11:30:14.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:30:14.764 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:30:14.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:30:14.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:30:14.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5881.7917ms +2017-12-13 11:30:14.769 +05:30 [Information] Request finished in 5910.0849ms 200 application/json; charset=utf-8 +2017-12-13 11:30:14.769 +05:30 [Debug] Connection id ""0HLA1TPBTNA41"" completed keep alive response. +2017-12-13 11:30:16.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 11:30:18.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:30:18.686 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:30:18.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:30:18.687 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:30:18.732 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5569.8824ms +2017-12-13 11:30:18.734 +05:30 [Information] Request finished in 5574.9848ms 200 application/json; charset=utf-8 +2017-12-13 11:30:18.734 +05:30 [Debug] Connection id ""0HLA1TPBTNA3U"" completed keep alive response. +2017-12-13 11:30:22.495 +05:30 [Fatal] Sequence contains no elements +2017-12-13 11:30:22.746 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 11:30:23.325 +05:30 [Fatal] Sequence contains no elements +2017-12-13 11:30:23.326 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 11:30:30.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:30:30.417 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:30:30.417 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 11:30:30.417 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:30:30.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 21634.8167ms +2017-12-13 11:30:30.434 +05:30 [Information] Request finished in 21684.3716ms 200 application/json; charset=utf-8 +2017-12-13 11:30:30.434 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" completed keep alive response. +2017-12-13 11:31:38.507 +05:30 [Debug] Connection id ""0HLA1TPBTNA3V"" received FIN. +2017-12-13 11:31:38.507 +05:30 [Debug] Connection id ""0HLA1TPBTNA40"" received FIN. +2017-12-13 11:31:38.507 +05:30 [Debug] Connection id ""0HLA1TPBTNA42"" received FIN. +2017-12-13 11:31:38.507 +05:30 [Debug] Connection id ""0HLA1TPBTNA41"" received FIN. +2017-12-13 11:31:38.508 +05:30 [Debug] Connection id ""0HLA1TPBTNA3V"" disconnecting. +2017-12-13 11:31:38.507 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" received FIN. +2017-12-13 11:31:38.508 +05:30 [Debug] Connection id ""0HLA1TPBTNA40"" disconnecting. +2017-12-13 11:31:38.508 +05:30 [Debug] Connection id ""0HLA1TPBTNA3U"" received FIN. +2017-12-13 11:31:38.508 +05:30 [Debug] Connection id ""0HLA1TPBTNA42"" disconnecting. +2017-12-13 11:31:38.508 +05:30 [Debug] Connection id ""0HLA1TPBTNA3V"" sending FIN. +2017-12-13 11:31:38.509 +05:30 [Debug] Connection id ""0HLA1TPBTNA40"" sending FIN. +2017-12-13 11:31:38.509 +05:30 [Debug] Connection id ""0HLA1TPBTNA42"" sending FIN. +2017-12-13 11:31:38.509 +05:30 [Debug] Connection id ""0HLA1TPBTNA40"" sent FIN with status "0". +2017-12-13 11:31:38.509 +05:30 [Debug] Connection id ""0HLA1TPBTNA42"" sent FIN with status "0". +2017-12-13 11:31:38.510 +05:30 [Debug] Connection id ""0HLA1TPBTNA42"" stopped. +2017-12-13 11:31:38.510 +05:30 [Debug] Connection id ""0HLA1TPBTNA40"" stopped. +2017-12-13 11:31:38.510 +05:30 [Debug] Connection id ""0HLA1TPBTNA3V"" sent FIN with status "0". +2017-12-13 11:31:38.510 +05:30 [Debug] Connection id ""0HLA1TPBTNA3V"" stopped. +2017-12-13 11:31:38.511 +05:30 [Debug] Connection id ""0HLA1TPBTNA43"" started. +2017-12-13 11:31:38.509 +05:30 [Debug] Connection id ""0HLA1TPBTNA41"" disconnecting. +2017-12-13 11:31:38.546 +05:30 [Debug] Connection id ""0HLA1TPBTNA41"" sending FIN. +2017-12-13 11:31:38.547 +05:30 [Debug] Connection id ""0HLA1TPBTNA41"" sent FIN with status "0". +2017-12-13 11:31:38.545 +05:30 [Debug] Connection id ""0HLA1TPBTNA3U"" disconnecting. +2017-12-13 11:31:38.548 +05:30 [Debug] Connection id ""0HLA1TPBTNA41"" stopped. +2017-12-13 11:31:38.548 +05:30 [Debug] Connection id ""0HLA1TPBTNA3U"" sending FIN. +2017-12-13 11:31:38.545 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" disconnecting. +2017-12-13 11:31:38.549 +05:30 [Debug] Connection id ""0HLA1TPBTNA3U"" sent FIN with status "0". +2017-12-13 11:31:38.549 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" sending FIN. +2017-12-13 11:31:38.549 +05:30 [Debug] Connection id ""0HLA1TPBTNA3U"" stopped. +2017-12-13 11:31:38.549 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" sent FIN with status "0". +2017-12-13 11:31:38.549 +05:30 [Debug] Connection id ""0HLA1TPBTNA3T"" stopped. +2017-12-13 11:31:38.551 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=tw_758233674978426880&userId=48&message=Hiiiiiii%20watsup&shortnerstatus=0&mediaType=1 multipart/form-data; boundary=----WebKitFormBoundaryjwtQ9VuwMQEyAgcP 54109 +2017-12-13 11:31:38.551 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-13 11:31:38.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-13 11:31:41.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["Hiiiiiii watsup", "tw_758233674978426880", "48", "", "", "defaultUri", "Image", "Microsoft.AspNetCore.Http.Internal.FormFile"]) - ModelState is Valid +2017-12-13 11:32:19.571 +05:30 [Debug] Connection id ""0HLA1TPBTNA44"" started. +2017-12-13 11:32:19.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=PODGQTLMTE.jpg +2017-12-13 11:32:19.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-13 11:32:19.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-13 11:32:22.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["PODGQTLMTE.jpg"]) - ModelState is Valid +2017-12-13 11:32:22.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:32:22.642 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:32:22.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-12-13 11:32:22.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:32:22.663 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3084.0264ms +2017-12-13 11:32:22.674 +05:30 [Information] Request finished in 3100.515ms 200 +2017-12-13 11:32:22.675 +05:30 [Debug] Connection id ""0HLA1TPBTNA44"" completed keep alive response. +2017-12-13 11:33:42.888 +05:30 [Debug] Connection id ""0HLA1TPBTNA43"" received FIN. +2017-12-13 11:34:06.086 +05:30 [Debug] Connection id ""0HLA1TPBTNA44"" received FIN. +2017-12-13 11:34:06.087 +05:30 [Debug] Connection id ""0HLA1TPBTNA44"" disconnecting. +2017-12-13 11:34:06.087 +05:30 [Debug] Connection id ""0HLA1TPBTNA45"" started. +2017-12-13 11:34:06.087 +05:30 [Debug] Connection id ""0HLA1TPBTNA44"" sending FIN. +2017-12-13 11:34:06.088 +05:30 [Debug] Connection id ""0HLA1TPBTNA44"" sent FIN with status "0". +2017-12-13 11:34:06.088 +05:30 [Debug] Connection id ""0HLA1TPBTNA44"" stopped. +2017-12-13 11:34:06.089 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=PODGQTLMTE.jpg +2017-12-13 11:34:06.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-13 11:34:06.090 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-13 11:34:09.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["PODGQTLMTE.jpg"]) - ModelState is Valid +2017-12-13 11:34:09.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:34:09.154 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:34:09.155 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-12-13 11:34:09.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:34:09.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3067.2475ms +2017-12-13 11:34:09.162 +05:30 [Information] Request finished in 3072.1344ms 200 +2017-12-13 11:34:09.163 +05:30 [Debug] Connection id ""0HLA1TPBTNA45"" completed keep alive response. +2017-12-13 11:35:12.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 11:35:12.941 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 11:35:12.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-13 11:35:12.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 11:35:12.947 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 214385.8718ms +2017-12-13 11:35:12.947 +05:30 [Debug] Connection id ""0HLA1TPBTNA43"" disconnecting. +2017-12-13 11:35:12.949 +05:30 [Information] Connection id ""0HLA1TPBTNA43"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-13 11:35:12.952 +05:30 [Debug] Connection id ""0HLA1TPBTNA43"" stopped. +2017-12-13 11:35:12.956 +05:30 [Information] Request finished in 214408.9933ms 200 text/plain; charset=utf-8 +2017-12-13 11:36:18.199 +05:30 [Debug] Connection id ""0HLA1TPBTNA45"" received FIN. +2017-12-13 11:36:18.199 +05:30 [Debug] Connection id ""0HLA1TPBTNA45"" disconnecting. +2017-12-13 11:36:18.200 +05:30 [Debug] Connection id ""0HLA1TPBTNA45"" sending FIN. +2017-12-13 11:36:18.201 +05:30 [Debug] Connection id ""0HLA1TPBTNA45"" sent FIN with status "0". +2017-12-13 11:36:18.201 +05:30 [Debug] Connection id ""0HLA1TPBTNA45"" stopped. +2017-12-13 13:09:29.490 +05:30 [Debug] Hosting starting +2017-12-13 13:09:29.727 +05:30 [Debug] Hosting started +2017-12-13 13:09:29.985 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" started. +2017-12-13 13:09:29.985 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" started. +2017-12-13 13:09:30.140 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-13 13:09:30.140 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-13 13:09:30.208 +05:30 [Information] Request finished in 93.4154ms 200 +2017-12-13 13:09:30.313 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" completed keep alive response. +2017-12-13 13:09:31.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-13 13:09:31.670 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"73df75fc-0732-45cd-8273-6ff183bd6094"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-13 13:09:31.774 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-13 13:09:31.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-13 13:09:31.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-13 13:09:31.919 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 13:09:31.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 13:09:31.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 13:09:31.980 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 13:09:32.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:09:32.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:09:32.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 512.9994ms +2017-12-13 13:09:32.345 +05:30 [Information] Request finished in 2244.4863ms 200 application/json; charset=utf-8 +2017-12-13 13:09:32.347 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" completed keep alive response. +2017-12-13 13:09:35.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 13:09:42.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:09:43.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:09:43.013 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:09:43.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11093.7077ms +2017-12-13 13:09:43.021 +05:30 [Information] Request finished in 11102.7017ms 200 application/json; charset=utf-8 +2017-12-13 13:09:43.023 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" completed keep alive response. +2017-12-13 13:09:53.315 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 13:09:53.316 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 13:09:53.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 13:09:56.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 13:09:56.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:09:56.943 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:09:56.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:09:56.945 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.9657ms +2017-12-13 13:09:56.947 +05:30 [Information] Request finished in 3634.125ms 200 application/json; charset=utf-8 +2017-12-13 13:09:56.947 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" completed keep alive response. +2017-12-13 13:09:56.978 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 13:09:56.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 13:09:56.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 13:10:00.041 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 13:10:00.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:00.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:00.591 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:00.593 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3609.974ms +2017-12-13 13:10:00.596 +05:30 [Information] Request finished in 3618.8272ms 200 application/json; charset=utf-8 +2017-12-13 13:10:00.597 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" completed keep alive response. +2017-12-13 13:10:00.696 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 13:10:00.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 13:10:00.697 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 13:10:02.617 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 13:10:02.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 13:10:02.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 13:10:02.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 13:10:03.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:03.352 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:03.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:03.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2656.3903ms +2017-12-13 13:10:03.356 +05:30 [Information] Request finished in 2661.8522ms 200 application/json; charset=utf-8 +2017-12-13 13:10:03.356 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" completed keep alive response. +2017-12-13 13:10:05.678 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 13:10:06.235 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:06.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:06.259 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:06.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3641.3839ms +2017-12-13 13:10:06.384 +05:30 [Information] Request finished in 3761.7403ms 200 application/json; charset=utf-8 +2017-12-13 13:10:06.384 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" completed keep alive response. +2017-12-13 13:10:19.497 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 13:10:19.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 13:10:19.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 13:10:22.536 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 13:10:23.086 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:23.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:23.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:23.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3591.1117ms +2017-12-13 13:10:23.095 +05:30 [Information] Request finished in 3597.4821ms 200 application/json; charset=utf-8 +2017-12-13 13:10:23.095 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" completed keep alive response. +2017-12-13 13:10:23.117 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-13 13:10:23.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-13 13:10:23.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-13 13:10:26.281 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-13 13:10:28.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:28.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:28.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:28.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5352.6848ms +2017-12-13 13:10:28.475 +05:30 [Information] Request finished in 5358.2005ms 200 application/json; charset=utf-8 +2017-12-13 13:10:28.476 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" completed keep alive response. +2017-12-13 13:10:28.731 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 13:10:28.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 13:10:28.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 13:10:30.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 13:10:31.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:31.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:31.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:31.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2660.8576ms +2017-12-13 13:10:31.396 +05:30 [Information] Request finished in 2663.7932ms 200 application/json; charset=utf-8 +2017-12-13 13:10:31.396 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" completed keep alive response. +2017-12-13 13:10:31.428 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-13 13:10:31.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-13 13:10:31.430 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-13 13:10:34.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-13 13:10:36.363 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:36.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:36.364 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:36.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4992.3604ms +2017-12-13 13:10:36.425 +05:30 [Information] Request finished in 4996.3882ms 200 application/json; charset=utf-8 +2017-12-13 13:10:36.425 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" completed keep alive response. +2017-12-13 13:10:38.307 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-13 13:10:38.308 +05:30 [Debug] Connection id ""0HLA1VIIH20KO"" started. +2017-12-13 13:10:38.308 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-13 13:10:38.308 +05:30 [Debug] Connection id ""0HLA1VIIH20KN"" started. +2017-12-13 13:10:38.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-13 13:10:38.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-13 13:10:38.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-13 13:10:38.310 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-13 13:10:38.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-13 13:10:38.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-13 13:10:38.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-13 13:10:38.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-13 13:10:38.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-13 13:10:38.323 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-13 13:10:38.429 +05:30 [Debug] Connection id ""0HLA1VIIH20KP"" started. +2017-12-13 13:10:38.429 +05:30 [Debug] Connection id ""0HLA1VIIH20KQ"" started. +2017-12-13 13:10:39.164 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-13 13:10:39.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-13 13:10:39.165 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-13 13:10:40.168 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-13 13:10:40.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-13 13:10:40.169 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-13 13:10:43.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 13:10:43.342 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 13:10:43.346 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 13:10:43.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 13:10:43.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 13:10:43.400 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 13:10:43.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:43.896 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 13:10:43.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:43.898 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:43.905 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5593.7276ms +2017-12-13 13:10:43.909 +05:30 [Information] Request finished in 5601.8931ms 200 application/json; charset=utf-8 +2017-12-13 13:10:43.910 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" completed keep alive response. +2017-12-13 13:10:43.915 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-13 13:10:43.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-13 13:10:43.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-13 13:10:45.636 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:45.637 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 13:10:45.637 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:45.638 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:45.650 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7336.2135ms +2017-12-13 13:10:45.652 +05:30 [Information] Request finished in 7342.8153ms 200 application/json; charset=utf-8 +2017-12-13 13:10:45.653 +05:30 [Debug] Connection id ""0HLA1VIIH20KO"" completed keep alive response. +2017-12-13 13:10:46.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:46.084 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 13:10:46.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:46.085 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:46.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6920.9748ms +2017-12-13 13:10:46.090 +05:30 [Information] Request finished in 6927.1602ms 200 application/json; charset=utf-8 +2017-12-13 13:10:46.091 +05:30 [Debug] Connection id ""0HLA1VIIH20KP"" completed keep alive response. +2017-12-13 13:10:46.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:46.238 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 13:10:46.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:46.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:46.241 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6070.2786ms +2017-12-13 13:10:46.243 +05:30 [Information] Request finished in 6077.4128ms 200 application/json; charset=utf-8 +2017-12-13 13:10:46.244 +05:30 [Debug] Connection id ""0HLA1VIIH20KQ"" completed keep alive response. +2017-12-13 13:10:46.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 13:10:49.198 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:49.198 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 13:10:49.198 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:49.199 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:49.202 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 10889.073ms +2017-12-13 13:10:49.205 +05:30 [Information] Request finished in 10895.9615ms 200 application/json; charset=utf-8 +2017-12-13 13:10:49.205 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" completed keep alive response. +2017-12-13 13:10:49.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:10:49.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 13:10:49.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:10:49.521 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:10:49.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5643.0829ms +2017-12-13 13:10:49.565 +05:30 [Information] Request finished in 5649.9786ms 200 application/json; charset=utf-8 +2017-12-13 13:10:49.565 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" completed keep alive response. +2017-12-13 13:10:53.750 +05:30 [Fatal] Sequence contains no elements +2017-12-13 13:10:53.867 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 13:10:54.490 +05:30 [Fatal] Sequence contains no elements +2017-12-13 13:10:54.491 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 13:11:01.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 13:11:01.884 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 13:11:01.884 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 13:11:01.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 13:11:01.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23581.7128ms +2017-12-13 13:11:01.910 +05:30 [Information] Request finished in 23599.007ms 200 application/json; charset=utf-8 +2017-12-13 13:11:01.910 +05:30 [Debug] Connection id ""0HLA1VIIH20KN"" completed keep alive response. +2017-12-13 13:13:10.643 +05:30 [Debug] Connection id ""0HLA1VIIH20KO"" received FIN. +2017-12-13 13:13:10.645 +05:30 [Debug] Connection id ""0HLA1VIIH20KP"" received FIN. +2017-12-13 13:13:10.647 +05:30 [Debug] Connection id ""0HLA1VIIH20KO"" disconnecting. +2017-12-13 13:13:10.648 +05:30 [Debug] Connection id ""0HLA1VIIH20KQ"" received FIN. +2017-12-13 13:13:10.649 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" received FIN. +2017-12-13 13:13:10.650 +05:30 [Debug] Connection id ""0HLA1VIIH20KP"" disconnecting. +2017-12-13 13:13:10.650 +05:30 [Debug] Connection id ""0HLA1VIIH20KO"" sending FIN. +2017-12-13 13:13:10.656 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" disconnecting. +2017-12-13 13:13:10.650 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" received FIN. +2017-12-13 13:13:10.656 +05:30 [Debug] Connection id ""0HLA1VIIH20KQ"" disconnecting. +2017-12-13 13:13:10.678 +05:30 [Debug] Connection id ""0HLA1VIIH20KN"" received FIN. +2017-12-13 13:13:10.678 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" disconnecting. +2017-12-13 13:13:10.678 +05:30 [Debug] Connection id ""0HLA1VIIH20KP"" sending FIN. +2017-12-13 13:13:10.678 +05:30 [Debug] Connection id ""0HLA1VIIH20KN"" disconnecting. +2017-12-13 13:13:10.680 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" sending FIN. +2017-12-13 13:13:10.680 +05:30 [Debug] Connection id ""0HLA1VIIH20KQ"" sending FIN. +2017-12-13 13:13:10.680 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" sending FIN. +2017-12-13 13:13:10.681 +05:30 [Debug] Connection id ""0HLA1VIIH20KN"" sending FIN. +2017-12-13 13:13:10.686 +05:30 [Debug] Connection id ""0HLA1VIIH20KQ"" sent FIN with status "0". +2017-12-13 13:13:10.686 +05:30 [Debug] Connection id ""0HLA1VIIH20KN"" sent FIN with status "0". +2017-12-13 13:13:10.688 +05:30 [Debug] Connection id ""0HLA1VIIH20KQ"" stopped. +2017-12-13 13:13:10.688 +05:30 [Debug] Connection id ""0HLA1VIIH20KN"" stopped. +2017-12-13 13:13:10.689 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" sent FIN with status "0". +2017-12-13 13:13:10.689 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" sent FIN with status "0". +2017-12-13 13:13:10.689 +05:30 [Debug] Connection id ""0HLA1VIIH20KM"" stopped. +2017-12-13 13:13:10.689 +05:30 [Debug] Connection id ""0HLA1VIIH20KL"" stopped. +2017-12-13 13:13:10.690 +05:30 [Debug] Connection id ""0HLA1VIIH20KO"" sent FIN with status "0". +2017-12-13 13:13:10.691 +05:30 [Debug] Connection id ""0HLA1VIIH20KO"" stopped. +2017-12-13 13:13:10.691 +05:30 [Debug] Connection id ""0HLA1VIIH20KP"" sent FIN with status "0". +2017-12-13 13:13:10.692 +05:30 [Debug] Connection id ""0HLA1VIIH20KP"" stopped. +2017-12-13 15:18:49.177 +05:30 [Debug] Hosting starting +2017-12-13 15:18:49.363 +05:30 [Debug] Hosting started +2017-12-13 15:18:49.454 +05:30 [Debug] Connection id ""0HLA21QR13CS4"" started. +2017-12-13 15:18:49.454 +05:30 [Debug] Connection id ""0HLA21QR13CS3"" started. +2017-12-13 15:18:49.679 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-13 15:18:49.679 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-13 15:18:49.747 +05:30 [Information] Request finished in 118.0602ms 200 +2017-12-13 15:18:49.840 +05:30 [Debug] Connection id ""0HLA21QR13CS4"" completed keep alive response. +2017-12-13 15:18:50.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-13 15:18:50.566 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d267ec80-4493-4f83-8f6c-3f134989b9d0"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-13 15:18:50.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-13 15:18:50.776 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-13 15:18:50.779 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-13 15:18:50.822 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:18:50.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:18:50.828 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:18:51.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 383.7989ms +2017-12-13 15:18:51.081 +05:30 [Information] Request finished in 1467.7457ms 200 application/json; charset=utf-8 +2017-12-13 15:18:51.082 +05:30 [Debug] Connection id ""0HLA21QR13CS3"" completed keep alive response. +2017-12-13 15:19:09.115 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 15:19:09.116 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 15:19:09.118 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 15:19:12.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 15:19:20.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:19:20.279 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:19:20.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:19:20.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11162.84ms +2017-12-13 15:19:20.285 +05:30 [Information] Request finished in 11169.647ms 200 application/json; charset=utf-8 +2017-12-13 15:19:20.285 +05:30 [Debug] Connection id ""0HLA21QR13CS4"" completed keep alive response. +2017-12-13 15:19:29.869 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 15:19:29.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 15:19:29.871 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 15:19:32.927 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 15:19:33.476 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:19:33.477 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:19:33.477 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:19:33.480 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3606.6058ms +2017-12-13 15:19:33.482 +05:30 [Information] Request finished in 3612.3551ms 200 application/json; charset=utf-8 +2017-12-13 15:19:33.482 +05:30 [Debug] Connection id ""0HLA21QR13CS3"" completed keep alive response. +2017-12-13 15:19:33.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 15:19:33.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 15:19:33.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 15:19:36.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 15:19:37.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:19:37.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:19:37.278 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:19:37.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3596.4617ms +2017-12-13 15:19:37.283 +05:30 [Information] Request finished in 3602.1226ms 200 application/json; charset=utf-8 +2017-12-13 15:19:37.284 +05:30 [Debug] Connection id ""0HLA21QR13CS4"" completed keep alive response. +2017-12-13 15:19:37.307 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 15:19:37.307 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 15:19:37.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 15:19:40.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 15:19:40.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:19:40.887 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:19:40.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:19:40.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3581.9233ms +2017-12-13 15:19:40.892 +05:30 [Information] Request finished in 3585.8532ms 200 application/json; charset=utf-8 +2017-12-13 15:19:40.893 +05:30 [Debug] Connection id ""0HLA21QR13CS3"" completed keep alive response. +2017-12-13 15:20:39.688 +05:30 [Debug] Connection id ""0HLA21QR13CS4"" received FIN. +2017-12-13 15:20:39.689 +05:30 [Debug] Connection id ""0HLA21QR13CS4"" disconnecting. +2017-12-13 15:20:39.690 +05:30 [Debug] Connection id ""0HLA21QR13CS4"" sending FIN. +2017-12-13 15:20:39.700 +05:30 [Debug] Connection id ""0HLA21QR13CS4"" sent FIN with status "0". +2017-12-13 15:20:39.706 +05:30 [Debug] Connection id ""0HLA21QR13CS4"" stopped. +2017-12-13 15:21:21.204 +05:30 [Debug] Connection id ""0HLA21QR13CS3"" received FIN. +2017-12-13 15:21:21.204 +05:30 [Debug] Connection id ""0HLA21QR13CS3"" disconnecting. +2017-12-13 15:21:21.204 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" started. +2017-12-13 15:21:21.204 +05:30 [Debug] Connection id ""0HLA21QR13CS3"" sending FIN. +2017-12-13 15:21:21.205 +05:30 [Debug] Connection id ""0HLA21QR13CS3"" sent FIN with status "0". +2017-12-13 15:21:21.205 +05:30 [Debug] Connection id ""0HLA21QR13CS3"" stopped. +2017-12-13 15:21:21.207 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 15:21:21.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 15:21:21.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 15:21:24.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 15:21:24.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:24.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:24.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:24.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3639.3586ms +2017-12-13 15:21:24.856 +05:30 [Information] Request finished in 3649.4489ms 200 application/json; charset=utf-8 +2017-12-13 15:21:24.858 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" completed keep alive response. +2017-12-13 15:21:27.895 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 15:21:27.896 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 15:21:27.896 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 15:21:30.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 15:21:31.478 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:31.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:31.479 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:31.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3583.5673ms +2017-12-13 15:21:31.483 +05:30 [Information] Request finished in 3587.8228ms 200 application/json; charset=utf-8 +2017-12-13 15:21:31.484 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" completed keep alive response. +2017-12-13 15:21:31.511 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-13 15:21:31.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-13 15:21:31.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-13 15:21:34.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-13 15:21:36.726 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:36.728 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:36.728 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:36.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5333.5121ms +2017-12-13 15:21:36.869 +05:30 [Information] Request finished in 5357.6556ms 200 application/json; charset=utf-8 +2017-12-13 15:21:36.870 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" completed keep alive response. +2017-12-13 15:21:37.228 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 15:21:37.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 15:21:37.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 15:21:40.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 15:21:40.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:40.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:40.824 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:40.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3595.1181ms +2017-12-13 15:21:40.827 +05:30 [Information] Request finished in 3599.0011ms 200 application/json; charset=utf-8 +2017-12-13 15:21:40.827 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" completed keep alive response. +2017-12-13 15:21:40.873 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-13 15:21:40.873 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-13 15:21:40.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-13 15:21:43.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-13 15:21:45.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:45.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:45.704 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:45.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4883.8987ms +2017-12-13 15:21:45.772 +05:30 [Information] Request finished in 4893.781ms 200 application/json; charset=utf-8 +2017-12-13 15:21:45.772 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" completed keep alive response. +2017-12-13 15:21:47.712 +05:30 [Debug] Connection id ""0HLA21QR13CS6"" started. +2017-12-13 15:21:47.712 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-13 15:21:47.712 +05:30 [Debug] Connection id ""0HLA21QR13CS8"" started. +2017-12-13 15:21:47.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-13 15:21:47.712 +05:30 [Debug] Connection id ""0HLA21QR13CS7"" started. +2017-12-13 15:21:47.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-13 15:21:47.723 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-13 15:21:47.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-13 15:21:47.725 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-13 15:21:47.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-13 15:21:47.725 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-13 15:21:47.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-13 15:21:47.728 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-13 15:21:47.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-13 15:21:47.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-13 15:21:47.797 +05:30 [Debug] Connection id ""0HLA21QR13CS9"" started. +2017-12-13 15:21:47.797 +05:30 [Debug] Connection id ""0HLA21QR13CSA"" started. +2017-12-13 15:21:48.959 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-13 15:21:48.960 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-13 15:21:48.961 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-13 15:21:49.972 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-13 15:21:49.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-13 15:21:49.974 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-13 15:21:53.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:21:53.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:21:53.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:21:53.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:21:53.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:21:53.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:21:53.904 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:53.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:21:53.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:53.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:53.910 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6183.2088ms +2017-12-13 15:21:53.912 +05:30 [Information] Request finished in 6189.5216ms 200 application/json; charset=utf-8 +2017-12-13 15:21:53.913 +05:30 [Debug] Connection id ""0HLA21QR13CS7"" completed keep alive response. +2017-12-13 15:21:53.918 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-13 15:21:53.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-13 15:21:53.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-13 15:21:56.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:56.182 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:21:56.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:56.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:56.185 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8459.0642ms +2017-12-13 15:21:56.189 +05:30 [Information] Request finished in 8474.7032ms 200 application/json; charset=utf-8 +2017-12-13 15:21:56.189 +05:30 [Debug] Connection id ""0HLA21QR13CS6"" completed keep alive response. +2017-12-13 15:21:56.206 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:56.207 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:21:56.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:56.213 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:56.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6240.9812ms +2017-12-13 15:21:56.219 +05:30 [Information] Request finished in 6247.2241ms 200 application/json; charset=utf-8 +2017-12-13 15:21:56.219 +05:30 [Debug] Connection id ""0HLA21QR13CSA"" completed keep alive response. +2017-12-13 15:21:56.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:56.386 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:21:56.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:56.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:56.397 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7435.9452ms +2017-12-13 15:21:56.400 +05:30 [Information] Request finished in 7441.1455ms 200 application/json; charset=utf-8 +2017-12-13 15:21:56.401 +05:30 [Debug] Connection id ""0HLA21QR13CS9"" completed keep alive response. +2017-12-13 15:21:56.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:56.679 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:21:56.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:56.681 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:56.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8950.4148ms +2017-12-13 15:21:56.684 +05:30 [Information] Request finished in 8970.5071ms 200 application/json; charset=utf-8 +2017-12-13 15:21:56.685 +05:30 [Debug] Connection id ""0HLA21QR13CS8"" completed keep alive response. +2017-12-13 15:21:56.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:21:59.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:21:59.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:21:59.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:21:59.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:21:59.690 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5761.6868ms +2017-12-13 15:21:59.708 +05:30 [Information] Request finished in 5783.5202ms 200 application/json; charset=utf-8 +2017-12-13 15:21:59.709 +05:30 [Debug] Connection id ""0HLA21QR13CS7"" completed keep alive response. +2017-12-13 15:22:03.852 +05:30 [Fatal] Sequence contains no elements +2017-12-13 15:22:04.057 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 15:22:04.681 +05:30 [Fatal] Sequence contains no elements +2017-12-13 15:22:04.682 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 15:22:12.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:22:12.132 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:22:12.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:22:12.135 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:22:12.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24436.5016ms +2017-12-13 15:22:12.161 +05:30 [Information] Request finished in 24453.9329ms 200 application/json; charset=utf-8 +2017-12-13 15:22:12.162 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" completed keep alive response. +2017-12-13 15:24:19.686 +05:30 [Debug] Connection id ""0HLA21QR13CS6"" received FIN. +2017-12-13 15:24:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CSA"" received FIN. +2017-12-13 15:24:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CS6"" disconnecting. +2017-12-13 15:24:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CS7"" received FIN. +2017-12-13 15:24:19.686 +05:30 [Debug] Connection id ""0HLA21QR13CS9"" received FIN. +2017-12-13 15:24:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CS6"" sending FIN. +2017-12-13 15:24:19.688 +05:30 [Debug] Connection id ""0HLA21QR13CS8"" received FIN. +2017-12-13 15:24:19.689 +05:30 [Debug] Connection id ""0HLA21QR13CS6"" sent FIN with status "0". +2017-12-13 15:24:19.689 +05:30 [Debug] Connection id ""0HLA21QR13CS6"" stopped. +2017-12-13 15:24:19.689 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" received FIN. +2017-12-13 15:24:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CSA"" disconnecting. +2017-12-13 15:24:19.692 +05:30 [Debug] Connection id ""0HLA21QR13CS7"" disconnecting. +2017-12-13 15:24:19.694 +05:30 [Debug] Connection id ""0HLA21QR13CSA"" sending FIN. +2017-12-13 15:24:19.694 +05:30 [Debug] Connection id ""0HLA21QR13CS9"" disconnecting. +2017-12-13 15:24:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CS7"" sending FIN. +2017-12-13 15:24:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CS9"" sending FIN. +2017-12-13 15:24:19.694 +05:30 [Debug] Connection id ""0HLA21QR13CS8"" disconnecting. +2017-12-13 15:24:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CS7"" sent FIN with status "0". +2017-12-13 15:24:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" disconnecting. +2017-12-13 15:24:19.718 +05:30 [Debug] Connection id ""0HLA21QR13CS7"" stopped. +2017-12-13 15:24:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CS9"" sent FIN with status "0". +2017-12-13 15:24:19.720 +05:30 [Debug] Connection id ""0HLA21QR13CS9"" stopped. +2017-12-13 15:24:19.720 +05:30 [Debug] Connection id ""0HLA21QR13CS8"" sending FIN. +2017-12-13 15:24:19.719 +05:30 [Debug] Connection id ""0HLA21QR13CSA"" sent FIN with status "0". +2017-12-13 15:24:19.721 +05:30 [Debug] Connection id ""0HLA21QR13CSA"" stopped. +2017-12-13 15:24:19.720 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" sending FIN. +2017-12-13 15:24:19.722 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" sent FIN with status "0". +2017-12-13 15:24:19.722 +05:30 [Debug] Connection id ""0HLA21QR13CS5"" stopped. +2017-12-13 15:24:19.723 +05:30 [Debug] Connection id ""0HLA21QR13CS8"" sent FIN with status "0". +2017-12-13 15:24:19.723 +05:30 [Debug] Connection id ""0HLA21QR13CS8"" stopped. +2017-12-13 15:27:17.063 +05:30 [Debug] Connection id ""0HLA21QR13CSB"" started. +2017-12-13 15:27:17.065 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=tw_758233674978426880&userId=48&message=hiiiiii&shortnerstatus=0&mediaType=1 multipart/form-data; boundary=----WebKitFormBoundary94mG9sorWA2coim0 54109 +2017-12-13 15:27:17.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-13 15:27:17.068 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-13 15:27:20.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["hiiiiii", "tw_758233674978426880", "48", "", "", "defaultUri", "Image", "Microsoft.AspNetCore.Http.Internal.FormFile"]) - ModelState is Valid +2017-12-13 15:27:59.035 +05:30 [Debug] Connection id ""0HLA21QR13CSC"" started. +2017-12-13 15:27:59.037 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=YS9L2828VZ.jpg +2017-12-13 15:27:59.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-13 15:27:59.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-13 15:28:02.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["YS9L2828VZ.jpg"]) - ModelState is Valid +2017-12-13 15:28:02.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:28:02.133 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:28:02.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-12-13 15:28:02.134 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:28:02.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3192.7884ms +2017-12-13 15:28:02.248 +05:30 [Information] Request finished in 3209.9806ms 200 +2017-12-13 15:28:02.248 +05:30 [Debug] Connection id ""0HLA21QR13CSC"" completed keep alive response. +2017-12-13 15:29:12.386 +05:30 [Debug] Connection id ""0HLA21QR13CSC"" received FIN. +2017-12-13 15:29:12.386 +05:30 [Debug] Connection id ""0HLA21QR13CSC"" disconnecting. +2017-12-13 15:29:12.386 +05:30 [Debug] Connection id ""0HLA21QR13CSC"" sending FIN. +2017-12-13 15:29:12.386 +05:30 [Debug] Connection id ""0HLA21QR13CSD"" started. +2017-12-13 15:29:12.387 +05:30 [Debug] Connection id ""0HLA21QR13CSC"" sent FIN with status "0". +2017-12-13 15:29:12.387 +05:30 [Debug] Connection id ""0HLA21QR13CSC"" stopped. +2017-12-13 15:29:12.388 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=YS9L2828VZ.jpg +2017-12-13 15:29:12.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-13 15:29:12.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-13 15:29:15.443 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["YS9L2828VZ.jpg"]) - ModelState is Valid +2017-12-13 15:29:15.444 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:29:15.444 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:29:15.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-12-13 15:29:15.445 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:29:15.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3057.8371ms +2017-12-13 15:29:15.451 +05:30 [Information] Request finished in 3063.118ms 200 +2017-12-13 15:29:15.451 +05:30 [Debug] Connection id ""0HLA21QR13CSD"" completed keep alive response. +2017-12-13 15:29:17.755 +05:30 [Debug] Connection id ""0HLA21QR13CSB"" received FIN. +2017-12-13 15:29:54.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:29:54.642 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:29:54.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-13 15:29:54.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:29:54.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 157576.4002ms +2017-12-13 15:29:54.648 +05:30 [Information] Connection id ""0HLA21QR13CSB"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-13 15:29:54.650 +05:30 [Debug] Connection id ""0HLA21QR13CSB"" disconnecting. +2017-12-13 15:29:54.651 +05:30 [Debug] Connection id ""0HLA21QR13CSB"" stopped. +2017-12-13 15:29:54.652 +05:30 [Information] Request finished in 157587.5737ms 200 text/plain; charset=utf-8 +2017-12-13 15:31:39.687 +05:30 [Debug] Connection id ""0HLA21QR13CSD"" received FIN. +2017-12-13 15:31:39.687 +05:30 [Debug] Connection id ""0HLA21QR13CSD"" disconnecting. +2017-12-13 15:31:39.687 +05:30 [Debug] Connection id ""0HLA21QR13CSD"" sending FIN. +2017-12-13 15:31:39.688 +05:30 [Debug] Connection id ""0HLA21QR13CSD"" sent FIN with status "0". +2017-12-13 15:31:39.688 +05:30 [Debug] Connection id ""0HLA21QR13CSD"" stopped. +2017-12-13 15:33:07.987 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" started. +2017-12-13 15:33:07.992 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 15:33:07.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 15:33:07.993 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 15:33:11.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 15:33:13.121 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:33:13.121 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:33:13.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:33:13.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5129.0633ms +2017-12-13 15:33:13.126 +05:30 [Information] Request finished in 5132.9329ms 200 application/json; charset=utf-8 +2017-12-13 15:33:13.126 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" completed keep alive response. +2017-12-13 15:33:13.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-13 15:33:13.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-13 15:33:13.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-13 15:33:16.155 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-13 15:33:17.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:33:17.801 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:33:17.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:33:17.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4669.103ms +2017-12-13 15:33:17.805 +05:30 [Information] Request finished in 4673.1247ms 200 application/json; charset=utf-8 +2017-12-13 15:33:17.806 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" completed keep alive response. +2017-12-13 15:33:24.058 +05:30 [Debug] Connection id ""0HLA21QR13CSF"" started. +2017-12-13 15:33:24.058 +05:30 [Debug] Connection id ""0HLA21QR13CSG"" started. +2017-12-13 15:33:24.059 +05:30 [Debug] Connection id ""0HLA21QR13CSH"" started. +2017-12-13 15:33:24.061 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-13 15:33:24.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-13 15:33:24.082 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-13 15:33:24.084 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-13 15:33:24.086 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-13 15:33:24.087 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-13 15:33:24.152 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-13 15:33:24.154 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-13 15:33:24.155 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-13 15:33:24.155 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-13 15:33:24.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-13 15:33:24.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-13 15:33:24.773 +05:30 [Debug] Connection id ""0HLA21QR13CSI"" started. +2017-12-13 15:33:24.828 +05:30 [Debug] Connection id ""0HLA21QR13CSJ"" started. +2017-12-13 15:33:25.562 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-13 15:33:25.563 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-13 15:33:25.563 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-13 15:33:26.564 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-13 15:33:26.564 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-13 15:33:26.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-13 15:33:29.584 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:33:29.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:33:29.762 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:33:29.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:33:29.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:33:29.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:33:30.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:33:30.731 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:33:30.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:33:30.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:33:30.735 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6652.3149ms +2017-12-13 15:33:30.740 +05:30 [Information] Request finished in 6682.9404ms 200 application/json; charset=utf-8 +2017-12-13 15:33:30.740 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" completed keep alive response. +2017-12-13 15:33:30.748 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-13 15:33:30.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-13 15:33:30.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-13 15:33:32.050 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:33:32.050 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:33:32.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:33:32.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:33:32.052 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7897.1299ms +2017-12-13 15:33:32.055 +05:30 [Information] Request finished in 7994.589ms 200 application/json; charset=utf-8 +2017-12-13 15:33:32.056 +05:30 [Debug] Connection id ""0HLA21QR13CSH"" completed keep alive response. +2017-12-13 15:33:32.476 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:33:32.476 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:33:32.477 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:33:32.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:33:32.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5913.3972ms +2017-12-13 15:33:32.482 +05:30 [Information] Request finished in 5918.2874ms 200 application/json; charset=utf-8 +2017-12-13 15:33:32.482 +05:30 [Debug] Connection id ""0HLA21QR13CSJ"" completed keep alive response. +2017-12-13 15:33:32.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:33:32.523 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:33:32.523 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:33:32.524 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:33:32.527 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8397.6496ms +2017-12-13 15:33:32.530 +05:30 [Information] Request finished in 8470.346ms 200 application/json; charset=utf-8 +2017-12-13 15:33:32.530 +05:30 [Debug] Connection id ""0HLA21QR13CSG"" completed keep alive response. +2017-12-13 15:33:32.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:33:32.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:33:32.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:33:32.560 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:33:32.561 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6997.4519ms +2017-12-13 15:33:32.564 +05:30 [Information] Request finished in 7001.8181ms 200 application/json; charset=utf-8 +2017-12-13 15:33:32.565 +05:30 [Debug] Connection id ""0HLA21QR13CSI"" completed keep alive response. +2017-12-13 15:33:33.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:33:36.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:33:36.257 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:33:36.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:33:36.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:33:36.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5509.3628ms +2017-12-13 15:33:36.262 +05:30 [Information] Request finished in 5515.3979ms 200 application/json; charset=utf-8 +2017-12-13 15:33:36.262 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" completed keep alive response. +2017-12-13 15:33:39.881 +05:30 [Fatal] Sequence contains no elements +2017-12-13 15:33:39.882 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 15:33:40.518 +05:30 [Fatal] Sequence contains no elements +2017-12-13 15:33:40.519 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 15:33:47.911 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:33:47.912 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:33:47.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:33:47.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:33:47.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23755.941ms +2017-12-13 15:33:47.917 +05:30 [Information] Request finished in 23857.6693ms 200 application/json; charset=utf-8 +2017-12-13 15:33:47.917 +05:30 [Debug] Connection id ""0HLA21QR13CSF"" completed keep alive response. +2017-12-13 15:35:19.686 +05:30 [Debug] Connection id ""0HLA21QR13CSH"" received FIN. +2017-12-13 15:35:19.686 +05:30 [Debug] Connection id ""0HLA21QR13CSI"" received FIN. +2017-12-13 15:35:19.686 +05:30 [Debug] Connection id ""0HLA21QR13CSJ"" received FIN. +2017-12-13 15:35:19.686 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" received FIN. +2017-12-13 15:35:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CSG"" received FIN. +2017-12-13 15:35:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CSF"" received FIN. +2017-12-13 15:35:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CSJ"" disconnecting. +2017-12-13 15:35:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CSH"" disconnecting. +2017-12-13 15:35:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CSI"" disconnecting. +2017-12-13 15:35:19.720 +05:30 [Debug] Connection id ""0HLA21QR13CSF"" disconnecting. +2017-12-13 15:35:19.720 +05:30 [Debug] Connection id ""0HLA21QR13CSI"" sending FIN. +2017-12-13 15:35:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CSJ"" sending FIN. +2017-12-13 15:35:19.717 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" disconnecting. +2017-12-13 15:35:19.720 +05:30 [Debug] Connection id ""0HLA21QR13CSG"" disconnecting. +2017-12-13 15:35:19.720 +05:30 [Debug] Connection id ""0HLA21QR13CSF"" sending FIN. +2017-12-13 15:35:19.721 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" sending FIN. +2017-12-13 15:35:19.721 +05:30 [Debug] Connection id ""0HLA21QR13CSH"" sending FIN. +2017-12-13 15:35:19.721 +05:30 [Debug] Connection id ""0HLA21QR13CSG"" sending FIN. +2017-12-13 15:35:19.721 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" sent FIN with status "0". +2017-12-13 15:35:19.722 +05:30 [Debug] Connection id ""0HLA21QR13CSE"" stopped. +2017-12-13 15:35:19.722 +05:30 [Debug] Connection id ""0HLA21QR13CSG"" sent FIN with status "0". +2017-12-13 15:35:19.722 +05:30 [Debug] Connection id ""0HLA21QR13CSF"" sent FIN with status "0". +2017-12-13 15:35:19.723 +05:30 [Debug] Connection id ""0HLA21QR13CSF"" stopped. +2017-12-13 15:35:19.722 +05:30 [Debug] Connection id ""0HLA21QR13CSG"" stopped. +2017-12-13 15:35:19.723 +05:30 [Debug] Connection id ""0HLA21QR13CSI"" sent FIN with status "0". +2017-12-13 15:35:19.723 +05:30 [Debug] Connection id ""0HLA21QR13CSH"" sent FIN with status "0". +2017-12-13 15:35:19.723 +05:30 [Debug] Connection id ""0HLA21QR13CSI"" stopped. +2017-12-13 15:35:19.723 +05:30 [Debug] Connection id ""0HLA21QR13CSH"" stopped. +2017-12-13 15:35:19.724 +05:30 [Debug] Connection id ""0HLA21QR13CSJ"" sent FIN with status "0". +2017-12-13 15:35:19.724 +05:30 [Debug] Connection id ""0HLA21QR13CSJ"" stopped. +2017-12-13 15:35:33.627 +05:30 [Debug] Connection id ""0HLA21QR13CSK"" started. +2017-12-13 15:35:33.628 +05:30 [Debug] Connection id ""0HLA21QR13CSL"" started. +2017-12-13 15:35:33.629 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-13 15:35:33.630 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetFeeds?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-13 15:35:33.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-13 15:35:33.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetFeeds"'. +2017-12-13 15:35:33.632 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-13 15:35:33.632 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" +2017-12-13 15:35:36.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-13 15:35:36.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-13 15:35:42.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:35:42.952 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:35:42.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:35:42.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:35:42.953 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:35:42.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:35:42.953 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:35:42.954 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:35:42.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" in 9351.4998ms +2017-12-13 15:35:42.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 9352.0366ms +2017-12-13 15:35:43.011 +05:30 [Information] Request finished in 9361.1883ms 200 application/json; charset=utf-8 +2017-12-13 15:35:43.012 +05:30 [Debug] Connection id ""0HLA21QR13CSL"" completed keep alive response. +2017-12-13 15:35:43.014 +05:30 [Information] Request finished in 9362.6663ms 200 application/json; charset=utf-8 +2017-12-13 15:35:43.018 +05:30 [Debug] Connection id ""0HLA21QR13CSK"" completed keep alive response. +2017-12-13 15:37:09.686 +05:30 [Debug] Connection id ""0HLA21QR13CSL"" received FIN. +2017-12-13 15:37:09.686 +05:30 [Debug] Connection id ""0HLA21QR13CSK"" received FIN. +2017-12-13 15:37:09.686 +05:30 [Debug] Connection id ""0HLA21QR13CSL"" disconnecting. +2017-12-13 15:37:09.686 +05:30 [Debug] Connection id ""0HLA21QR13CSK"" disconnecting. +2017-12-13 15:37:09.687 +05:30 [Debug] Connection id ""0HLA21QR13CSK"" sending FIN. +2017-12-13 15:37:09.687 +05:30 [Debug] Connection id ""0HLA21QR13CSL"" sending FIN. +2017-12-13 15:37:09.687 +05:30 [Debug] Connection id ""0HLA21QR13CSK"" sent FIN with status "0". +2017-12-13 15:37:09.687 +05:30 [Debug] Connection id ""0HLA21QR13CSL"" sent FIN with status "0". +2017-12-13 15:37:09.687 +05:30 [Debug] Connection id ""0HLA21QR13CSK"" stopped. +2017-12-13 15:37:09.688 +05:30 [Debug] Connection id ""0HLA21QR13CSL"" stopped. +2017-12-13 15:43:41.930 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" started. +2017-12-13 15:43:41.931 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 15:43:41.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 15:43:41.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 15:43:44.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 15:43:47.001 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:43:47.002 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:43:47.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:43:47.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5070.0783ms +2017-12-13 15:43:47.009 +05:30 [Information] Request finished in 5076.5289ms 200 application/json; charset=utf-8 +2017-12-13 15:43:47.010 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" completed keep alive response. +2017-12-13 15:43:47.033 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-13 15:43:47.033 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-13 15:43:47.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-13 15:43:50.072 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-13 15:43:51.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:43:51.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:43:51.691 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:43:51.693 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4658.3186ms +2017-12-13 15:43:51.698 +05:30 [Information] Request finished in 4665.7087ms 200 application/json; charset=utf-8 +2017-12-13 15:43:51.699 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" completed keep alive response. +2017-12-13 15:43:52.678 +05:30 [Debug] Connection id ""0HLA21QR13CSN"" started. +2017-12-13 15:43:52.678 +05:30 [Debug] Connection id ""0HLA21QR13CSO"" started. +2017-12-13 15:43:52.679 +05:30 [Debug] Connection id ""0HLA21QR13CSP"" started. +2017-12-13 15:43:52.682 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-13 15:43:52.683 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-13 15:43:52.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-13 15:43:52.689 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-13 15:43:52.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-13 15:43:52.694 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-13 15:43:52.700 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-13 15:43:52.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-13 15:43:52.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-13 15:43:52.711 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-13 15:43:52.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-13 15:43:52.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-13 15:43:52.795 +05:30 [Debug] Connection id ""0HLA21QR13CSQ"" started. +2017-12-13 15:43:52.796 +05:30 [Debug] Connection id ""0HLA21QR13CSR"" started. +2017-12-13 15:43:52.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-13 15:43:52.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-13 15:43:52.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-13 15:43:52.798 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-13 15:43:52.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-13 15:43:52.801 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-13 15:43:54.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:43:55.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:43:55.395 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:43:55.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:43:55.396 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:43:55.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2712.7383ms +2017-12-13 15:43:55.402 +05:30 [Information] Request finished in 2727.5025ms 200 application/json; charset=utf-8 +2017-12-13 15:43:55.403 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" completed keep alive response. +2017-12-13 15:43:55.413 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-13 15:43:55.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-13 15:43:55.413 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-13 15:43:55.925 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:43:56.032 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:43:56.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:43:56.068 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:43:56.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:43:56.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:43:56.702 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:43:56.702 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:43:56.703 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:43:56.708 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3998.2424ms +2017-12-13 15:43:56.710 +05:30 [Information] Request finished in 4029.8455ms 200 application/json; charset=utf-8 +2017-12-13 15:43:56.711 +05:30 [Debug] Connection id ""0HLA21QR13CSP"" completed keep alive response. +2017-12-13 15:43:58.457 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 15:43:58.500 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:43:58.500 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:43:58.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:43:58.502 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:43:58.508 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5812.4563ms +2017-12-13 15:43:58.519 +05:30 [Information] Request finished in 5836.6284ms 200 application/json; charset=utf-8 +2017-12-13 15:43:58.519 +05:30 [Debug] Connection id ""0HLA21QR13CSO"" completed keep alive response. +2017-12-13 15:43:58.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:43:58.662 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:43:58.663 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:43:58.664 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:43:58.669 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5865.7658ms +2017-12-13 15:43:58.672 +05:30 [Information] Request finished in 5876.1167ms 200 application/json; charset=utf-8 +2017-12-13 15:43:58.673 +05:30 [Debug] Connection id ""0HLA21QR13CSQ"" completed keep alive response. +2017-12-13 15:43:58.916 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:43:58.916 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:43:58.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:43:58.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:43:58.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6116.8355ms +2017-12-13 15:43:58.921 +05:30 [Information] Request finished in 6124.3478ms 200 application/json; charset=utf-8 +2017-12-13 15:43:58.921 +05:30 [Debug] Connection id ""0HLA21QR13CSR"" completed keep alive response. +2017-12-13 15:44:00.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:44:00.865 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:44:00.865 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:44:00.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:44:00.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5453.5575ms +2017-12-13 15:44:00.872 +05:30 [Information] Request finished in 5459.4738ms 200 application/json; charset=utf-8 +2017-12-13 15:44:00.872 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" completed keep alive response. +2017-12-13 15:44:06.059 +05:30 [Fatal] Sequence contains no elements +2017-12-13 15:44:06.062 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 15:44:06.606 +05:30 [Fatal] Sequence contains no elements +2017-12-13 15:44:06.607 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 15:44:13.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:44:13.844 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:44:13.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:44:13.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:44:13.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 21134.5738ms +2017-12-13 15:44:13.853 +05:30 [Information] Request finished in 21172.8995ms 200 application/json; charset=utf-8 +2017-12-13 15:44:13.854 +05:30 [Debug] Connection id ""0HLA21QR13CSN"" completed keep alive response. +2017-12-13 15:46:19.686 +05:30 [Debug] Connection id ""0HLA21QR13CSP"" received FIN. +2017-12-13 15:46:19.686 +05:30 [Debug] Connection id ""0HLA21QR13CSR"" received FIN. +2017-12-13 15:46:19.686 +05:30 [Debug] Connection id ""0HLA21QR13CSO"" received FIN. +2017-12-13 15:46:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CSP"" disconnecting. +2017-12-13 15:46:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CSR"" disconnecting. +2017-12-13 15:46:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CSQ"" received FIN. +2017-12-13 15:46:19.690 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" received FIN. +2017-12-13 15:46:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CSO"" disconnecting. +2017-12-13 15:46:19.696 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" disconnecting. +2017-12-13 15:46:19.687 +05:30 [Debug] Connection id ""0HLA21QR13CSP"" sending FIN. +2017-12-13 15:46:19.696 +05:30 [Debug] Connection id ""0HLA21QR13CSO"" sending FIN. +2017-12-13 15:46:19.697 +05:30 [Debug] Connection id ""0HLA21QR13CSQ"" disconnecting. +2017-12-13 15:46:19.697 +05:30 [Debug] Connection id ""0HLA21QR13CSR"" sending FIN. +2017-12-13 15:46:19.697 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" sending FIN. +2017-12-13 15:46:19.698 +05:30 [Debug] Connection id ""0HLA21QR13CSR"" sent FIN with status "0". +2017-12-13 15:46:19.699 +05:30 [Debug] Connection id ""0HLA21QR13CSR"" stopped. +2017-12-13 15:46:19.698 +05:30 [Debug] Connection id ""0HLA21QR13CSQ"" sending FIN. +2017-12-13 15:46:19.699 +05:30 [Debug] Connection id ""0HLA21QR13CSP"" sent FIN with status "0". +2017-12-13 15:46:19.699 +05:30 [Debug] Connection id ""0HLA21QR13CSQ"" sent FIN with status "0". +2017-12-13 15:46:19.700 +05:30 [Debug] Connection id ""0HLA21QR13CSP"" stopped. +2017-12-13 15:46:19.700 +05:30 [Debug] Connection id ""0HLA21QR13CSQ"" stopped. +2017-12-13 15:46:19.700 +05:30 [Debug] Connection id ""0HLA21QR13CSN"" received FIN. +2017-12-13 15:46:19.701 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" sent FIN with status "0". +2017-12-13 15:46:19.701 +05:30 [Debug] Connection id ""0HLA21QR13CSM"" stopped. +2017-12-13 15:46:19.701 +05:30 [Debug] Connection id ""0HLA21QR13CSN"" disconnecting. +2017-12-13 15:46:19.702 +05:30 [Debug] Connection id ""0HLA21QR13CSO"" sent FIN with status "0". +2017-12-13 15:46:19.702 +05:30 [Debug] Connection id ""0HLA21QR13CSN"" sending FIN. +2017-12-13 15:46:19.702 +05:30 [Debug] Connection id ""0HLA21QR13CSO"" stopped. +2017-12-13 15:46:19.703 +05:30 [Debug] Connection id ""0HLA21QR13CSN"" sent FIN with status "0". +2017-12-13 15:46:19.704 +05:30 [Debug] Connection id ""0HLA21QR13CSN"" stopped. +2017-12-13 15:46:36.587 +05:30 [Debug] Connection id ""0HLA21QR13CSS"" started. +2017-12-13 15:46:36.588 +05:30 [Debug] Connection id ""0HLA21QR13CST"" started. +2017-12-13 15:46:36.589 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetFeeds?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-13 15:46:36.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetFeeds"'. +2017-12-13 15:46:36.590 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-13 15:46:36.590 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" +2017-12-13 15:46:36.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-13 15:46:36.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-13 15:46:38.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-13 15:46:39.636 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-13 15:46:41.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:46:41.169 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:46:41.169 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:46:41.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:46:41.171 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 4579.058ms +2017-12-13 15:46:41.173 +05:30 [Information] Request finished in 4583.8877ms 200 application/json; charset=utf-8 +2017-12-13 15:46:41.174 +05:30 [Debug] Connection id ""0HLA21QR13CST"" completed keep alive response. +2017-12-13 15:46:41.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 15:46:41.978 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 15:46:41.978 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 15:46:41.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 15:46:41.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" in 5389.2602ms +2017-12-13 15:46:41.991 +05:30 [Information] Request finished in 5402.9632ms 200 application/json; charset=utf-8 +2017-12-13 15:46:41.991 +05:30 [Debug] Connection id ""0HLA21QR13CSS"" completed keep alive response. +2017-12-13 15:48:09.686 +05:30 [Debug] Connection id ""0HLA21QR13CST"" received FIN. +2017-12-13 15:48:09.686 +05:30 [Debug] Connection id ""0HLA21QR13CSS"" received FIN. +2017-12-13 15:48:09.686 +05:30 [Debug] Connection id ""0HLA21QR13CST"" disconnecting. +2017-12-13 15:48:09.687 +05:30 [Debug] Connection id ""0HLA21QR13CST"" sending FIN. +2017-12-13 15:48:09.686 +05:30 [Debug] Connection id ""0HLA21QR13CSS"" disconnecting. +2017-12-13 15:48:09.687 +05:30 [Debug] Connection id ""0HLA21QR13CST"" sent FIN with status "0". +2017-12-13 15:48:09.687 +05:30 [Debug] Connection id ""0HLA21QR13CSS"" sending FIN. +2017-12-13 15:48:09.687 +05:30 [Debug] Connection id ""0HLA21QR13CST"" stopped. +2017-12-13 15:48:09.688 +05:30 [Debug] Connection id ""0HLA21QR13CSS"" sent FIN with status "0". +2017-12-13 15:48:09.688 +05:30 [Debug] Connection id ""0HLA21QR13CSS"" stopped. +2017-12-13 16:11:54.547 +05:30 [Debug] Connection id ""0HLA21QR13CSU"" started. +2017-12-13 16:11:54.548 +05:30 [Debug] Connection id ""0HLA21QR13CSV"" started. +2017-12-13 16:11:54.549 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=1155481037833115&userId=48&skip=0&count=10&type=undefined +2017-12-13 16:11:54.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-13 16:11:54.550 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=1155481037833115 +2017-12-13 16:11:54.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-13 16:11:54.551 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-13 16:11:54.551 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-13 16:11:57.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["1155481037833115"]) - ModelState is Valid +2017-12-13 16:11:57.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["1155481037833115", "48", "0", "10"]) - ModelState is Valid +2017-12-13 16:11:59.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 16:11:59.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 16:11:59.802 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 16:11:59.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 16:11:59.809 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 5256.3555ms +2017-12-13 16:11:59.813 +05:30 [Information] Request finished in 5263.3283ms 200 application/json; charset=utf-8 +2017-12-13 16:11:59.813 +05:30 [Debug] Connection id ""0HLA21QR13CSV"" completed keep alive response. +2017-12-13 16:11:59.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 16:11:59.907 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 16:11:59.907 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 16:11:59.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 16:11:59.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 5373.5621ms +2017-12-13 16:11:59.929 +05:30 [Information] Request finished in 5379.6737ms 200 application/json; charset=utf-8 +2017-12-13 16:11:59.929 +05:30 [Debug] Connection id ""0HLA21QR13CSU"" completed keep alive response. +2017-12-13 16:12:49.177 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=fb_127471161024815,fb_1155481037833115&userId=48&message=testing%20message&shortnerstatus=0&mediaType=1 multipart/form-data; boundary=----WebKitFormBoundarytamcQMWs7ogxe27v 54109 +2017-12-13 16:12:49.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-13 16:12:49.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-13 16:12:52.235 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["testing message", "fb_127471161024815,fb_1155481037833115", "48", "", "", "defaultUri", "Image", "Microsoft.AspNetCore.Http.Internal.FormFile"]) - ModelState is Valid +2017-12-13 16:14:30.081 +05:30 [Debug] Hosting starting +2017-12-13 16:14:30.389 +05:30 [Debug] Hosting started +2017-12-13 16:14:30.542 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" started. +2017-12-13 16:14:30.542 +05:30 [Debug] Connection id ""0HLA22PUO5SJ7"" started. +2017-12-13 16:14:30.736 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-13 16:14:30.736 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-13 16:14:30.815 +05:30 [Information] Request finished in 113.2971ms 200 +2017-12-13 16:14:30.869 +05:30 [Debug] Connection id ""0HLA22PUO5SJ7"" completed keep alive response. +2017-12-13 16:14:32.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-13 16:14:32.144 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"e354c3fa-ace3-465c-b8a2-6cbb1eb81521"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-13 16:14:32.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-13 16:14:32.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-13 16:14:32.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-13 16:14:32.718 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 16:14:32.724 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 16:14:32.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 16:14:33.238 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 806.9763ms +2017-12-13 16:14:33.396 +05:30 [Information] Request finished in 2686.9794ms 200 application/json; charset=utf-8 +2017-12-13 16:14:33.400 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" completed keep alive response. +2017-12-13 16:14:33.496 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 16:14:33.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 16:14:33.499 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 16:14:33.639 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-13 16:14:33.642 +05:30 [Debug] Request did not match any routes. +2017-12-13 16:14:33.664 +05:30 [Debug] The request path "" does not match the path filter +2017-12-13 16:14:33.667 +05:30 [Information] Request finished in 27.8485ms 404 +2017-12-13 16:14:33.668 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" completed keep alive response. +2017-12-13 16:14:37.023 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 16:14:49.759 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 16:14:49.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 16:14:49.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 16:14:49.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 16270.6146ms +2017-12-13 16:14:49.773 +05:30 [Information] Request finished in 16278.1615ms 200 application/json; charset=utf-8 +2017-12-13 16:14:49.774 +05:30 [Debug] Connection id ""0HLA22PUO5SJ7"" completed keep alive response. +2017-12-13 16:14:59.425 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 16:14:59.426 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 16:14:59.428 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 16:15:02.535 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 16:15:03.402 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 16:15:03.402 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 16:15:03.403 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 16:15:03.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3974.8444ms +2017-12-13 16:15:03.406 +05:30 [Information] Request finished in 3984.2023ms 200 application/json; charset=utf-8 +2017-12-13 16:15:03.406 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" completed keep alive response. +2017-12-13 16:15:03.547 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 16:15:03.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 16:15:03.548 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 16:15:06.615 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 16:15:07.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 16:15:07.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 16:15:07.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 16:15:07.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3639.7735ms +2017-12-13 16:15:07.191 +05:30 [Information] Request finished in 3650.3002ms 200 application/json; charset=utf-8 +2017-12-13 16:15:07.192 +05:30 [Debug] Connection id ""0HLA22PUO5SJ7"" completed keep alive response. +2017-12-13 16:15:07.227 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 16:15:07.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 16:15:07.228 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 16:15:10.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 16:15:10.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 16:15:10.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 16:15:10.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 16:15:10.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3617.4298ms +2017-12-13 16:15:10.850 +05:30 [Information] Request finished in 3623.7809ms 200 application/json; charset=utf-8 +2017-12-13 16:15:10.851 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" completed keep alive response. +2017-12-13 16:16:20.807 +05:30 [Debug] Connection id ""0HLA22PUO5SJ7"" received FIN. +2017-12-13 16:16:20.807 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" received FIN. +2017-12-13 16:16:20.808 +05:30 [Debug] Connection id ""0HLA22PUO5SJ7"" disconnecting. +2017-12-13 16:16:20.808 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" disconnecting. +2017-12-13 16:16:20.809 +05:30 [Debug] Connection id ""0HLA22PUO5SJ7"" sending FIN. +2017-12-13 16:16:20.809 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" sending FIN. +2017-12-13 16:16:20.817 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" sent FIN with status "0". +2017-12-13 16:16:20.817 +05:30 [Debug] Connection id ""0HLA22PUO5SJ7"" sent FIN with status "0". +2017-12-13 16:16:20.822 +05:30 [Debug] Connection id ""0HLA22PUO5SJ8"" stopped. +2017-12-13 16:16:20.822 +05:30 [Debug] Connection id ""0HLA22PUO5SJ7"" stopped. +2017-12-13 18:45:11.119 +05:30 [Debug] Hosting starting +2017-12-13 18:45:11.437 +05:30 [Debug] Hosting started +2017-12-13 18:45:11.639 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" started. +2017-12-13 18:45:11.640 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" started. +2017-12-13 18:45:11.834 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-13 18:45:11.835 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-13 18:45:11.912 +05:30 [Information] Request finished in 133.8737ms 200 +2017-12-13 18:45:11.989 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" completed keep alive response. +2017-12-13 18:45:13.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-13 18:45:13.065 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"870797f4-df31-4309-8f8e-ad0bf0e1396d"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-13 18:45:13.316 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-13 18:45:13.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-13 18:45:13.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-13 18:45:13.543 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 18:45:13.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 18:45:13.559 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 18:45:13.695 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 18:45:13.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 18:45:13.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 18:45:13.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 588.1065ms +2017-12-13 18:45:13.991 +05:30 [Information] Request finished in 2228.4675ms 200 application/json; charset=utf-8 +2017-12-13 18:45:13.994 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" completed keep alive response. +2017-12-13 18:45:14.009 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-13 18:45:14.012 +05:30 [Debug] Request did not match any routes. +2017-12-13 18:45:14.031 +05:30 [Debug] The request path "" does not match the path filter +2017-12-13 18:45:14.034 +05:30 [Information] Request finished in 24.8339ms 404 +2017-12-13 18:45:14.034 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" completed keep alive response. +2017-12-13 18:45:17.200 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 18:45:23.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 18:45:23.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 18:45:23.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 18:45:23.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9865.0057ms +2017-12-13 18:45:23.569 +05:30 [Information] Request finished in 9874.6189ms 200 application/json; charset=utf-8 +2017-12-13 18:45:23.569 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" completed keep alive response. +2017-12-13 18:45:33.917 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 18:45:33.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 18:45:33.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 18:45:36.323 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 18:45:36.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 18:45:36.324 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 18:45:36.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 18:45:37.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 18:45:37.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 18:45:37.550 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 18:45:37.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3630.2651ms +2017-12-13 18:45:37.555 +05:30 [Information] Request finished in 3636.605ms 200 application/json; charset=utf-8 +2017-12-13 18:45:37.555 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" completed keep alive response. +2017-12-13 18:45:37.637 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 18:45:37.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 18:45:37.638 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 18:45:39.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 18:45:39.949 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 18:45:39.950 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 18:45:39.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 18:45:39.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3628.0759ms +2017-12-13 18:45:39.960 +05:30 [Information] Request finished in 3636.873ms 200 application/json; charset=utf-8 +2017-12-13 18:45:39.961 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" completed keep alive response. +2017-12-13 18:45:40.853 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 18:45:41.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 18:45:41.427 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 18:45:41.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 18:45:41.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3790.7614ms +2017-12-13 18:45:41.432 +05:30 [Information] Request finished in 3796.2652ms 200 application/json; charset=utf-8 +2017-12-13 18:45:41.432 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" completed keep alive response. +2017-12-13 18:45:41.478 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 18:45:41.479 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 18:45:41.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 18:45:44.527 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 18:45:44.528 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 18:45:44.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 18:45:44.529 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 18:45:45.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 18:45:45.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 18:45:45.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 18:45:45.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3619.2277ms +2017-12-13 18:45:45.103 +05:30 [Information] Request finished in 3624.7089ms 200 application/json; charset=utf-8 +2017-12-13 18:45:45.103 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" completed keep alive response. +2017-12-13 18:45:47.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 18:45:48.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 18:45:48.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 18:45:48.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 18:45:48.252 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3721.802ms +2017-12-13 18:45:48.256 +05:30 [Information] Request finished in 3740.1816ms 200 application/json; charset=utf-8 +2017-12-13 18:45:48.257 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" completed keep alive response. +2017-12-13 18:47:01.990 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" received FIN. +2017-12-13 18:47:01.990 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" received FIN. +2017-12-13 18:47:01.992 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" disconnecting. +2017-12-13 18:47:01.992 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" disconnecting. +2017-12-13 18:47:01.994 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" sending FIN. +2017-12-13 18:47:01.996 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" sending FIN. +2017-12-13 18:47:02.008 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" sent FIN with status "0". +2017-12-13 18:47:02.008 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" sent FIN with status "0". +2017-12-13 18:47:02.012 +05:30 [Debug] Connection id ""0HLA25E56Q0L9"" stopped. +2017-12-13 18:47:02.012 +05:30 [Debug] Connection id ""0HLA25E56Q0L8"" stopped. +2017-12-13 19:16:18.573 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" started. +2017-12-13 19:16:18.585 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 19:16:18.585 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 19:16:18.586 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 19:16:21.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 19:16:23.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:23.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:23.691 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:23.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5106.1421ms +2017-12-13 19:16:23.696 +05:30 [Information] Request finished in 5121.4835ms 200 application/json; charset=utf-8 +2017-12-13 19:16:23.697 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" completed keep alive response. +2017-12-13 19:16:23.786 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-13 19:16:23.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-13 19:16:23.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-13 19:16:26.931 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-13 19:16:28.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:28.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:28.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:29.042 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5241.5043ms +2017-12-13 19:16:29.044 +05:30 [Information] Request finished in 5260.7641ms 200 application/json; charset=utf-8 +2017-12-13 19:16:29.045 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" completed keep alive response. +2017-12-13 19:16:29.356 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-13 19:16:29.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-13 19:16:29.357 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-13 19:16:32.391 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-13 19:16:32.936 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:32.936 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:32.937 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:32.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3580.1895ms +2017-12-13 19:16:32.940 +05:30 [Information] Request finished in 3586.2339ms 200 application/json; charset=utf-8 +2017-12-13 19:16:32.941 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" completed keep alive response. +2017-12-13 19:16:32.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-13 19:16:32.979 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-13 19:16:32.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-13 19:16:36.047 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-13 19:16:37.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:37.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:37.781 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:37.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4834.4109ms +2017-12-13 19:16:37.817 +05:30 [Information] Request finished in 4838.9532ms 200 application/json; charset=utf-8 +2017-12-13 19:16:37.818 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" completed keep alive response. +2017-12-13 19:16:39.820 +05:30 [Debug] Connection id ""0HLA25E56Q0LB"" started. +2017-12-13 19:16:39.828 +05:30 [Debug] Connection id ""0HLA25E56Q0LC"" started. +2017-12-13 19:16:39.828 +05:30 [Debug] Connection id ""0HLA25E56Q0LD"" started. +2017-12-13 19:16:39.838 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-13 19:16:39.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-13 19:16:39.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-13 19:16:39.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-13 19:16:39.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-13 19:16:39.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-13 19:16:39.850 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-13 19:16:39.863 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-13 19:16:39.947 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-13 19:16:39.923 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-13 19:16:39.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-13 19:16:39.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-13 19:16:40.018 +05:30 [Debug] Connection id ""0HLA25E56Q0LF"" started. +2017-12-13 19:16:40.018 +05:30 [Debug] Connection id ""0HLA25E56Q0LE"" started. +2017-12-13 19:16:40.189 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-13 19:16:40.213 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-13 19:16:40.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-13 19:16:40.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-13 19:16:40.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-13 19:16:40.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-13 19:16:42.281 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 19:16:42.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:42.974 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 19:16:42.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:42.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:43.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 19:16:43.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3164.8718ms +2017-12-13 19:16:43.014 +05:30 [Information] Request finished in 3184.4746ms 200 application/json; charset=utf-8 +2017-12-13 19:16:43.015 +05:30 [Debug] Connection id ""0HLA25E56Q0LC"" completed keep alive response. +2017-12-13 19:16:43.020 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-13 19:16:43.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-13 19:16:43.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-13 19:16:43.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 19:16:43.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 19:16:43.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 19:16:43.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 19:16:45.281 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:45.281 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 19:16:45.281 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:45.282 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:45.290 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5340.1711ms +2017-12-13 19:16:45.292 +05:30 [Information] Request finished in 5454.3864ms 200 application/json; charset=utf-8 +2017-12-13 19:16:45.293 +05:30 [Debug] Connection id ""0HLA25E56Q0LB"" completed keep alive response. +2017-12-13 19:16:45.742 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:45.742 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 19:16:45.742 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:45.743 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:45.745 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5785.204ms +2017-12-13 19:16:45.747 +05:30 [Information] Request finished in 5895.4107ms 200 application/json; charset=utf-8 +2017-12-13 19:16:45.747 +05:30 [Debug] Connection id ""0HLA25E56Q0LD"" completed keep alive response. +2017-12-13 19:16:46.000 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:46.000 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 19:16:46.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:46.001 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:46.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5787.0181ms +2017-12-13 19:16:46.007 +05:30 [Information] Request finished in 5846.3688ms 200 application/json; charset=utf-8 +2017-12-13 19:16:46.007 +05:30 [Debug] Connection id ""0HLA25E56Q0LF"" completed keep alive response. +2017-12-13 19:16:46.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:46.017 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 19:16:46.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:46.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:46.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5784.6557ms +2017-12-13 19:16:46.030 +05:30 [Information] Request finished in 5840.1658ms 200 application/json; charset=utf-8 +2017-12-13 19:16:46.030 +05:30 [Debug] Connection id ""0HLA25E56Q0LE"" completed keep alive response. +2017-12-13 19:16:46.075 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-13 19:16:48.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:16:48.551 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 19:16:48.551 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:16:48.552 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:16:48.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5581.0622ms +2017-12-13 19:16:48.605 +05:30 [Information] Request finished in 5586.1686ms 200 application/json; charset=utf-8 +2017-12-13 19:16:48.606 +05:30 [Debug] Connection id ""0HLA25E56Q0LC"" completed keep alive response. +2017-12-13 19:16:51.375 +05:30 [Fatal] Sequence contains no elements +2017-12-13 19:16:51.593 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 19:16:52.180 +05:30 [Fatal] Sequence contains no elements +2017-12-13 19:16:52.181 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-13 19:17:01.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-13 19:17:01.015 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-13 19:17:01.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-13 19:17:01.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-13 19:17:01.033 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 21186.0872ms +2017-12-13 19:17:01.037 +05:30 [Information] Request finished in 21213.3656ms 200 application/json; charset=utf-8 +2017-12-13 19:17:01.037 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" completed keep alive response. +2017-12-13 19:18:11.987 +05:30 [Debug] Connection id ""0HLA25E56Q0LB"" received FIN. +2017-12-13 19:18:11.987 +05:30 [Debug] Connection id ""0HLA25E56Q0LD"" received FIN. +2017-12-13 19:18:11.988 +05:30 [Debug] Connection id ""0HLA25E56Q0LB"" disconnecting. +2017-12-13 19:18:11.988 +05:30 [Debug] Connection id ""0HLA25E56Q0LF"" received FIN. +2017-12-13 19:18:11.988 +05:30 [Debug] Connection id ""0HLA25E56Q0LD"" disconnecting. +2017-12-13 19:18:11.989 +05:30 [Debug] Connection id ""0HLA25E56Q0LF"" disconnecting. +2017-12-13 19:18:11.989 +05:30 [Debug] Connection id ""0HLA25E56Q0LE"" received FIN. +2017-12-13 19:18:11.989 +05:30 [Debug] Connection id ""0HLA25E56Q0LB"" sending FIN. +2017-12-13 19:18:11.990 +05:30 [Debug] Connection id ""0HLA25E56Q0LD"" sending FIN. +2017-12-13 19:18:11.990 +05:30 [Debug] Connection id ""0HLA25E56Q0LF"" sending FIN. +2017-12-13 19:18:11.991 +05:30 [Debug] Connection id ""0HLA25E56Q0LD"" sent FIN with status "0". +2017-12-13 19:18:11.991 +05:30 [Debug] Connection id ""0HLA25E56Q0LF"" sent FIN with status "0". +2017-12-13 19:18:11.992 +05:30 [Debug] Connection id ""0HLA25E56Q0LD"" stopped. +2017-12-13 19:18:11.992 +05:30 [Debug] Connection id ""0HLA25E56Q0LF"" stopped. +2017-12-13 19:18:11.992 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" received FIN. +2017-12-13 19:18:11.993 +05:30 [Debug] Connection id ""0HLA25E56Q0LB"" sent FIN with status "0". +2017-12-13 19:18:11.993 +05:30 [Debug] Connection id ""0HLA25E56Q0LB"" stopped. +2017-12-13 19:18:11.994 +05:30 [Debug] Connection id ""0HLA25E56Q0LC"" received FIN. +2017-12-13 19:18:12.018 +05:30 [Debug] Connection id ""0HLA25E56Q0LE"" disconnecting. +2017-12-13 19:18:12.020 +05:30 [Debug] Connection id ""0HLA25E56Q0LC"" disconnecting. +2017-12-13 19:18:12.020 +05:30 [Debug] Connection id ""0HLA25E56Q0LE"" sending FIN. +2017-12-13 19:18:12.020 +05:30 [Debug] Connection id ""0HLA25E56Q0LC"" sending FIN. +2017-12-13 19:18:12.021 +05:30 [Debug] Connection id ""0HLA25E56Q0LE"" sent FIN with status "0". +2017-12-13 19:18:12.021 +05:30 [Debug] Connection id ""0HLA25E56Q0LC"" sent FIN with status "0". +2017-12-13 19:18:12.021 +05:30 [Debug] Connection id ""0HLA25E56Q0LC"" stopped. +2017-12-13 19:18:12.021 +05:30 [Debug] Connection id ""0HLA25E56Q0LE"" stopped. +2017-12-13 19:18:12.022 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" disconnecting. +2017-12-13 19:18:12.023 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" sending FIN. +2017-12-13 19:18:12.023 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" sent FIN with status "0". +2017-12-13 19:18:12.024 +05:30 [Debug] Connection id ""0HLA25E56Q0LA"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171214.txt b/src/Api.Socioboard/wwwroot/log/log-20171214.txt new file mode 100644 index 000000000..9b4004b26 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171214.txt @@ -0,0 +1,8432 @@ +2017-12-14 10:33:34.228 +05:30 [Debug] Hosting starting +2017-12-14 10:33:34.443 +05:30 [Debug] Hosting started +2017-12-14 10:33:34.536 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" started. +2017-12-14 10:33:34.536 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" started. +2017-12-14 10:33:34.760 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-14 10:33:34.760 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-14 10:33:34.842 +05:30 [Information] Request finished in 131.6803ms 200 +2017-12-14 10:33:34.917 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" completed keep alive response. +2017-12-14 10:33:35.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-14 10:33:35.848 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"9f3fc750-b467-4232-b884-eae31d2631e8"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-14 10:33:36.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-14 10:33:36.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-14 10:33:36.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-14 10:33:36.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:33:36.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:33:36.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:33:36.593 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 509.1926ms +2017-12-14 10:33:36.672 +05:30 [Information] Request finished in 1980.914ms 200 application/json; charset=utf-8 +2017-12-14 10:33:36.674 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" completed keep alive response. +2017-12-14 10:33:37.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-14 10:33:37.094 +05:30 [Debug] Request did not match any routes. +2017-12-14 10:33:37.120 +05:30 [Debug] The request path "" does not match the path filter +2017-12-14 10:33:37.128 +05:30 [Information] Request finished in 43.542ms 404 +2017-12-14 10:33:37.129 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" completed keep alive response. +2017-12-14 10:33:39.544 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 10:33:39.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 10:33:39.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 10:33:43.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 10:33:51.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:33:51.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:33:51.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:33:51.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11483.8118ms +2017-12-14 10:33:51.038 +05:30 [Information] Request finished in 11493.7146ms 200 application/json; charset=utf-8 +2017-12-14 10:33:51.039 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" completed keep alive response. +2017-12-14 10:34:03.918 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 10:34:03.919 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 10:34:03.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 10:34:07.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 10:34:07.528 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:34:07.529 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:34:07.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:34:07.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3609.281ms +2017-12-14 10:34:07.532 +05:30 [Information] Request finished in 3613.9962ms 200 application/json; charset=utf-8 +2017-12-14 10:34:07.532 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" completed keep alive response. +2017-12-14 10:34:07.565 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 10:34:07.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 10:34:07.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 10:34:10.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 10:34:11.136 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:34:11.137 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:34:11.138 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:34:11.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3572.9373ms +2017-12-14 10:34:11.143 +05:30 [Information] Request finished in 3577.5206ms 200 application/json; charset=utf-8 +2017-12-14 10:34:11.143 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" completed keep alive response. +2017-12-14 10:34:11.197 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 10:34:11.197 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 10:34:11.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 10:34:14.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 10:34:14.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:34:14.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:34:14.813 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:34:14.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3615.8557ms +2017-12-14 10:34:14.815 +05:30 [Information] Request finished in 3619.2603ms 200 application/json; charset=utf-8 +2017-12-14 10:34:14.816 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" completed keep alive response. +2017-12-14 10:34:42.708 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 10:34:42.709 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 10:34:42.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 10:34:45.753 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 10:34:46.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:34:46.280 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:34:46.281 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:34:46.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3571.4889ms +2017-12-14 10:34:46.284 +05:30 [Information] Request finished in 3575.3174ms 200 application/json; charset=utf-8 +2017-12-14 10:34:46.284 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" completed keep alive response. +2017-12-14 10:34:48.998 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 10:34:48.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 10:34:48.998 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 10:34:52.060 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 10:34:52.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:34:52.587 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:34:52.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:34:52.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3589.8574ms +2017-12-14 10:34:52.595 +05:30 [Information] Request finished in 3597.1455ms 200 application/json; charset=utf-8 +2017-12-14 10:34:52.596 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" completed keep alive response. +2017-12-14 10:34:52.629 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-14 10:34:52.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-14 10:34:52.630 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-14 10:34:55.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-14 10:34:57.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:34:57.910 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:34:57.911 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:34:58.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5420.4139ms +2017-12-14 10:34:58.053 +05:30 [Information] Request finished in 5426.3302ms 200 application/json; charset=utf-8 +2017-12-14 10:34:58.054 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" completed keep alive response. +2017-12-14 10:34:58.304 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 10:34:58.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 10:34:58.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 10:35:01.382 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 10:35:01.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:35:01.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:35:01.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:35:01.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3605.4715ms +2017-12-14 10:35:01.916 +05:30 [Information] Request finished in 3611.8276ms 200 application/json; charset=utf-8 +2017-12-14 10:35:01.916 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" completed keep alive response. +2017-12-14 10:35:01.957 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-14 10:35:01.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 10:35:01.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 10:35:05.027 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-14 10:35:06.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:35:06.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:35:06.844 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:35:06.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4968.9113ms +2017-12-14 10:35:06.929 +05:30 [Information] Request finished in 4973.5851ms 200 application/json; charset=utf-8 +2017-12-14 10:35:06.930 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" completed keep alive response. +2017-12-14 10:35:08.475 +05:30 [Debug] Connection id ""0HLA2M03J3ML1"" started. +2017-12-14 10:35:08.475 +05:30 [Debug] Connection id ""0HLA2M03J3ML2"" started. +2017-12-14 10:35:08.476 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 10:35:08.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 10:35:08.498 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 10:35:08.499 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 10:35:08.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 10:35:08.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 10:35:08.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 10:35:08.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 10:35:08.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 10:35:08.507 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 10:35:08.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 10:35:08.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 10:35:08.597 +05:30 [Debug] Connection id ""0HLA2M03J3ML3"" started. +2017-12-14 10:35:08.597 +05:30 [Debug] Connection id ""0HLA2M03J3ML4"" started. +2017-12-14 10:35:09.480 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 10:35:09.481 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 10:35:09.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 10:35:10.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 10:35:10.492 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 10:35:10.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 10:35:13.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 10:35:13.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 10:35:13.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 10:35:13.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 10:35:13.706 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 10:35:13.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 10:35:14.825 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:35:14.825 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:35:14.825 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:35:14.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:35:14.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6327.0195ms +2017-12-14 10:35:14.825 +05:30 [Information] Request finished in 6380.4572ms 200 application/json; charset=utf-8 +2017-12-14 10:35:14.825 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" completed keep alive response. +2017-12-14 10:35:14.841 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 10:35:14.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 10:35:14.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 10:35:15.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:35:15.814 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:35:15.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:35:15.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:35:15.830 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7332.961ms +2017-12-14 10:35:15.830 +05:30 [Information] Request finished in 7363.2401ms 200 application/json; charset=utf-8 +2017-12-14 10:35:15.830 +05:30 [Debug] Connection id ""0HLA2M03J3ML1"" completed keep alive response. +2017-12-14 10:35:15.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:35:15.955 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:35:15.955 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:35:15.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:35:15.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7469.5369ms +2017-12-14 10:35:15.970 +05:30 [Information] Request finished in 7520.47ms 200 application/json; charset=utf-8 +2017-12-14 10:35:15.970 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" completed keep alive response. +2017-12-14 10:35:16.330 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:35:16.330 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:35:16.330 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:35:16.330 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:35:16.330 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6859.8832ms +2017-12-14 10:35:16.345 +05:30 [Information] Request finished in 6865.5187ms 200 application/json; charset=utf-8 +2017-12-14 10:35:16.345 +05:30 [Debug] Connection id ""0HLA2M03J3ML3"" completed keep alive response. +2017-12-14 10:35:16.376 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:35:16.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:35:16.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:35:16.376 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:35:16.376 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5884.478ms +2017-12-14 10:35:16.376 +05:30 [Information] Request finished in 5895.9595ms 200 application/json; charset=utf-8 +2017-12-14 10:35:16.376 +05:30 [Debug] Connection id ""0HLA2M03J3ML4"" completed keep alive response. +2017-12-14 10:35:17.901 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 10:35:20.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:35:20.328 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:35:20.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:35:20.328 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:35:20.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5547.6819ms +2017-12-14 10:35:20.392 +05:30 [Information] Request finished in 5554.748ms 200 application/json; charset=utf-8 +2017-12-14 10:35:20.392 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" completed keep alive response. +2017-12-14 10:35:23.501 +05:30 [Fatal] Sequence contains no elements +2017-12-14 10:35:23.626 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 10:35:24.220 +05:30 [Fatal] Sequence contains no elements +2017-12-14 10:35:24.220 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 10:35:32.925 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:35:32.940 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:35:32.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:35:32.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:35:32.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24455.9779ms +2017-12-14 10:35:32.956 +05:30 [Information] Request finished in 24470.5384ms 200 application/json; charset=utf-8 +2017-12-14 10:35:32.956 +05:30 [Debug] Connection id ""0HLA2M03J3ML2"" completed keep alive response. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML1"" received FIN. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" received FIN. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML4"" received FIN. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML3"" received FIN. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" received FIN. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML2"" received FIN. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML1"" disconnecting. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" disconnecting. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML4"" disconnecting. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" disconnecting. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML2"" disconnecting. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML3"" disconnecting. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3ML1"" sending FIN. +2017-12-14 10:37:14.928 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" sending FIN. +2017-12-14 10:37:14.959 +05:30 [Debug] Connection id ""0HLA2M03J3ML2"" sending FIN. +2017-12-14 10:37:14.959 +05:30 [Debug] Connection id ""0HLA2M03J3ML3"" sending FIN. +2017-12-14 10:37:14.959 +05:30 [Debug] Connection id ""0HLA2M03J3ML4"" sending FIN. +2017-12-14 10:37:14.959 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" sending FIN. +2017-12-14 10:37:14.959 +05:30 [Debug] Connection id ""0HLA2M03J3ML3"" sent FIN with status "0". +2017-12-14 10:37:14.959 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" sent FIN with status "0". +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3ML3"" stopped. +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3ML2"" sent FIN with status "0". +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3ML2"" stopped. +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3ML0"" stopped. +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" sent FIN with status "0". +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3ML4"" sent FIN with status "0". +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3ML4"" stopped. +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3MKV"" stopped. +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3ML1"" sent FIN with status "0". +2017-12-14 10:37:14.975 +05:30 [Debug] Connection id ""0HLA2M03J3ML1"" stopped. +2017-12-14 10:43:14.659 +05:30 [Debug] Connection id ""0HLA2M03J3ML6"" started. +2017-12-14 10:43:14.659 +05:30 [Debug] Connection id ""0HLA2M03J3ML5"" started. +2017-12-14 10:43:14.672 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetFeeds?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-14 10:43:14.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetFeeds"'. +2017-12-14 10:43:14.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-14 10:43:14.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-14 10:43:14.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" +2017-12-14 10:43:14.676 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-14 10:43:16.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-14 10:43:17.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-14 10:43:22.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:43:22.547 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:43:22.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:43:22.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 10:43:22.577 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:43:22.578 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 10:43:22.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 10:43:22.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 10:43:22.615 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" in 7938.4876ms +2017-12-14 10:43:22.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 7938.8639ms +2017-12-14 10:43:22.622 +05:30 [Information] Request finished in 7957.3135ms 200 application/json; charset=utf-8 +2017-12-14 10:43:22.623 +05:30 [Debug] Connection id ""0HLA2M03J3ML5"" completed keep alive response. +2017-12-14 10:43:22.626 +05:30 [Information] Request finished in 7950.2369ms 200 application/json; charset=utf-8 +2017-12-14 10:43:22.626 +05:30 [Debug] Connection id ""0HLA2M03J3ML6"" completed keep alive response. +2017-12-14 10:44:34.931 +05:30 [Debug] Connection id ""0HLA2M03J3ML5"" received FIN. +2017-12-14 10:44:34.931 +05:30 [Debug] Connection id ""0HLA2M03J3ML6"" received FIN. +2017-12-14 10:44:34.931 +05:30 [Debug] Connection id ""0HLA2M03J3ML5"" disconnecting. +2017-12-14 10:44:34.931 +05:30 [Debug] Connection id ""0HLA2M03J3ML5"" sending FIN. +2017-12-14 10:44:34.931 +05:30 [Debug] Connection id ""0HLA2M03J3ML6"" disconnecting. +2017-12-14 10:44:34.932 +05:30 [Debug] Connection id ""0HLA2M03J3ML5"" sent FIN with status "0". +2017-12-14 10:44:34.932 +05:30 [Debug] Connection id ""0HLA2M03J3ML5"" stopped. +2017-12-14 10:44:34.932 +05:30 [Debug] Connection id ""0HLA2M03J3ML6"" sending FIN. +2017-12-14 10:44:34.932 +05:30 [Debug] Connection id ""0HLA2M03J3ML6"" sent FIN with status "0". +2017-12-14 10:44:34.933 +05:30 [Debug] Connection id ""0HLA2M03J3ML6"" stopped. +2017-12-14 11:01:31.544 +05:30 [Debug] Connection id ""0HLA2M03J3ML7"" started. +2017-12-14 11:01:31.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/GetRssDataByUser?userId=48&groupId=48 +2017-12-14 11:01:31.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/GetRssDataByUser"'. +2017-12-14 11:01:31.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)" +2017-12-14 11:01:34.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 11:01:38.525 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 11:01:38.525 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 11:01:38.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 11:01:38.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 11:01:38.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)" in 7005.4043ms +2017-12-14 11:01:38.558 +05:30 [Information] Request finished in 7013.1721ms 200 application/json; charset=utf-8 +2017-12-14 11:01:38.558 +05:30 [Debug] Connection id ""0HLA2M03J3ML7"" completed keep alive response. +2017-12-14 11:02:55.401 +05:30 [Debug] Connection id ""0HLA2M03J3ML7"" received FIN. +2017-12-14 11:02:55.401 +05:30 [Debug] Connection id ""0HLA2M03J3ML7"" disconnecting. +2017-12-14 11:02:55.401 +05:30 [Debug] Connection id ""0HLA2M03J3ML7"" sending FIN. +2017-12-14 11:02:55.401 +05:30 [Debug] Connection id ""0HLA2M03J3ML7"" sent FIN with status "0". +2017-12-14 11:02:55.401 +05:30 [Debug] Connection id ""0HLA2M03J3ML7"" stopped. +2017-12-14 11:24:05.654 +05:30 [Debug] Connection id ""0HLA2M03J3ML8"" started. +2017-12-14 11:24:05.656 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 11:24:05.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 11:24:05.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 11:24:08.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 11:24:10.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 11:24:10.491 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 11:24:10.491 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 11:24:10.492 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 11:24:10.523 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4863.9745ms +2017-12-14 11:24:10.526 +05:30 [Information] Request finished in 4870.6634ms 200 application/json; charset=utf-8 +2017-12-14 11:24:10.526 +05:30 [Debug] Connection id ""0HLA2M03J3ML8"" completed keep alive response. +2017-12-14 11:24:10.551 +05:30 [Debug] Connection id ""0HLA2M03J3ML9"" started. +2017-12-14 11:24:10.551 +05:30 [Debug] Connection id ""0HLA2M03J3MLA"" started. +2017-12-14 11:24:10.551 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 11:24:10.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 11:24:10.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 11:24:10.561 +05:30 [Debug] Connection id ""0HLA2M03J3MLB"" started. +2017-12-14 11:24:10.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 11:24:10.561 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 11:24:10.563 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 11:24:10.561 +05:30 [Debug] Connection id ""0HLA2M03J3MLC"" started. +2017-12-14 11:24:10.586 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 11:24:10.587 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 11:24:10.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 11:24:10.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 11:24:10.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 11:24:10.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 11:24:11.172 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 11:24:11.172 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 11:24:11.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 11:24:14.276 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 11:24:14.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 11:24:14.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 11:24:14.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 11:24:14.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 11:24:22.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 11:24:22.383 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 11:24:22.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 11:24:22.384 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 11:24:22.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 11805.1316ms +2017-12-14 11:24:22.401 +05:30 [Information] Request finished in 11838.3086ms 200 application/json; charset=utf-8 +2017-12-14 11:24:22.401 +05:30 [Debug] Connection id ""0HLA2M03J3MLB"" completed keep alive response. +2017-12-14 11:24:23.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 11:24:24.000 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 11:24:24.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 11:24:24.001 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 11:24:24.003 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 12829.7282ms +2017-12-14 11:24:24.005 +05:30 [Information] Request finished in 12834.0282ms 200 application/json; charset=utf-8 +2017-12-14 11:24:24.006 +05:30 [Debug] Connection id ""0HLA2M03J3MLC"" completed keep alive response. +2017-12-14 11:24:24.207 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 11:24:24.207 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 11:24:24.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 11:24:24.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 11:24:24.210 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 13619.8886ms +2017-12-14 11:24:24.215 +05:30 [Information] Request finished in 13658.8078ms 200 application/json; charset=utf-8 +2017-12-14 11:24:24.215 +05:30 [Debug] Connection id ""0HLA2M03J3ML9"" completed keep alive response. +2017-12-14 11:24:35.840 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 11:24:35.841 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 11:24:35.841 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 11:24:35.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 11:25:43.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 92888.0789ms +2017-12-14 11:26:09.032 +05:30 [Information] Request finished in 118211.5558ms 200 application/json; charset=utf-8 +2017-12-14 11:26:09.047 +05:30 [Debug] Connection id ""0HLA2M03J3ML8"" completed keep alive response. +2017-12-14 11:31:50.311 +05:30 [Debug] Connection id ""0HLA2M03J3MLC"" received FIN. +2017-12-14 11:31:50.311 +05:30 [Debug] Connection id ""0HLA2M03J3MLA"" received FIN. +2017-12-14 11:31:50.311 +05:30 [Debug] Connection id ""0HLA2M03J3ML9"" received FIN. +2017-12-14 11:31:50.311 +05:30 [Debug] Connection id ""0HLA2M03J3MLB"" received FIN. +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3ML9"" disconnecting. +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3ML9"" sending FIN. +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3ML8"" received FIN. +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3ML9"" sent FIN with status "-4077". +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3ML9"" stopped. +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3MLB"" disconnecting. +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3ML8"" disconnecting. +2017-12-14 11:31:50.311 +05:30 [Debug] Connection id ""0HLA2M03J3MLC"" disconnecting. +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3MLC"" sending FIN. +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3MLC"" sent FIN with status "-4077". +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3MLC"" stopped. +2017-12-14 11:31:50.326 +05:30 [Debug] Connection id ""0HLA2M03J3MLB"" sending FIN. +2017-12-14 11:31:51.233 +05:30 [Debug] Connection id ""0HLA2M03J3ML8"" sending FIN. +2017-12-14 11:31:51.233 +05:30 [Debug] Connection id ""0HLA2M03J3ML8"" sent FIN with status "-4077". +2017-12-14 11:31:51.233 +05:30 [Debug] Connection id ""0HLA2M03J3ML8"" stopped. +2017-12-14 11:31:57.609 +05:30 [Debug] Connection id ""0HLA2M03J3MLB"" sent FIN with status "-4077". +2017-12-14 11:31:57.609 +05:30 [Debug] Connection id ""0HLA2M03J3MLB"" stopped. +2017-12-14 12:00:31.762 +05:30 [Debug] Hosting starting +2017-12-14 12:00:32.188 +05:30 [Debug] Hosting started +2017-12-14 12:00:32.280 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" started. +2017-12-14 12:00:32.280 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" started. +2017-12-14 12:00:32.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-14 12:00:32.613 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-14 12:00:32.726 +05:30 [Information] Request finished in 204.4072ms 200 +2017-12-14 12:00:32.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" completed keep alive response. +2017-12-14 12:00:34.440 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-14 12:00:34.571 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"959276cb-4e8c-4e8a-96f7-1f70fb9c2de6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-14 12:00:34.984 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-14 12:00:35.240 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-14 12:00:35.243 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-14 12:00:35.328 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:00:35.341 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:00:35.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:00:35.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 998.9242ms +2017-12-14 12:00:36.161 +05:30 [Information] Request finished in 3674.9659ms 200 application/json; charset=utf-8 +2017-12-14 12:00:36.163 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" completed keep alive response. +2017-12-14 12:00:37.280 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:00:37.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:00:37.292 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:00:41.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:00:49.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:00:49.479 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:00:49.483 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:00:49.491 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12197.1863ms +2017-12-14 12:00:49.493 +05:30 [Information] Request finished in 12224.6675ms 200 application/json; charset=utf-8 +2017-12-14 12:00:49.494 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" completed keep alive response. +2017-12-14 12:01:01.109 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:01:01.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:01:01.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:01:04.186 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:01:04.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:04.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:04.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:04.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3596.3273ms +2017-12-14 12:01:04.711 +05:30 [Information] Request finished in 3602.5101ms 200 application/json; charset=utf-8 +2017-12-14 12:01:04.712 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" completed keep alive response. +2017-12-14 12:01:04.764 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:01:04.765 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:01:04.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:01:07.823 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:01:08.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:08.340 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:08.341 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:08.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3574.7356ms +2017-12-14 12:01:08.345 +05:30 [Information] Request finished in 3580.933ms 200 application/json; charset=utf-8 +2017-12-14 12:01:08.346 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" completed keep alive response. +2017-12-14 12:01:08.381 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:01:08.382 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:01:08.382 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:01:11.444 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:01:11.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:11.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:11.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:11.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3579.9098ms +2017-12-14 12:01:11.966 +05:30 [Information] Request finished in 3584.1504ms 200 application/json; charset=utf-8 +2017-12-14 12:01:11.966 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" completed keep alive response. +2017-12-14 12:01:22.917 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:01:22.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:01:22.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:01:25.988 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:01:26.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:26.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:26.505 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:26.506 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3586.1113ms +2017-12-14 12:01:26.508 +05:30 [Information] Request finished in 3590.5727ms 200 application/json; charset=utf-8 +2017-12-14 12:01:26.508 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" completed keep alive response. +2017-12-14 12:01:28.866 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:01:28.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:01:28.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:01:31.938 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:01:32.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:32.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:32.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:32.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3586.37ms +2017-12-14 12:01:32.473 +05:30 [Information] Request finished in 3606.0074ms 200 application/json; charset=utf-8 +2017-12-14 12:01:32.474 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" completed keep alive response. +2017-12-14 12:01:32.510 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-14 12:01:32.511 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-14 12:01:32.513 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-14 12:01:35.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-14 12:01:37.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:37.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:37.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:37.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5229.885ms +2017-12-14 12:01:37.746 +05:30 [Information] Request finished in 5237.9454ms 200 application/json; charset=utf-8 +2017-12-14 12:01:37.746 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" completed keep alive response. +2017-12-14 12:01:38.033 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:01:38.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:01:38.035 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:01:41.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:01:41.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:41.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:41.587 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:41.588 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3552.4484ms +2017-12-14 12:01:41.589 +05:30 [Information] Request finished in 3556.7036ms 200 application/json; charset=utf-8 +2017-12-14 12:01:41.590 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" completed keep alive response. +2017-12-14 12:01:41.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-14 12:01:41.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 12:01:41.648 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 12:01:44.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-14 12:01:46.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:46.382 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:46.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:46.422 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4773.1895ms +2017-12-14 12:01:46.426 +05:30 [Information] Request finished in 4788.3838ms 200 application/json; charset=utf-8 +2017-12-14 12:01:46.426 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" completed keep alive response. +2017-12-14 12:01:48.080 +05:30 [Debug] Connection id ""0HLA2NGMJCPA7"" started. +2017-12-14 12:01:48.080 +05:30 [Debug] Connection id ""0HLA2NGMJCPA8"" started. +2017-12-14 12:01:48.080 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 12:01:48.101 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 12:01:48.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 12:01:48.081 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 12:01:48.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 12:01:48.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 12:01:48.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 12:01:48.103 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 12:01:48.103 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 12:01:48.105 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 12:01:48.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 12:01:48.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 12:01:48.198 +05:30 [Debug] Connection id ""0HLA2NGMJCPA9"" started. +2017-12-14 12:01:48.198 +05:30 [Debug] Connection id ""0HLA2NGMJCPAA"" started. +2017-12-14 12:01:48.919 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 12:01:48.919 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 12:01:48.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 12:01:49.921 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 12:01:49.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 12:01:49.924 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 12:01:53.163 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:01:53.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:01:53.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:01:53.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:01:53.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:01:53.256 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:01:53.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:53.855 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:01:53.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:53.856 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:53.866 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5757.4432ms +2017-12-14 12:01:53.868 +05:30 [Information] Request finished in 5766.5868ms 200 application/json; charset=utf-8 +2017-12-14 12:01:53.869 +05:30 [Debug] Connection id ""0HLA2NGMJCPA8"" completed keep alive response. +2017-12-14 12:01:53.874 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 12:01:53.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 12:01:53.876 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 12:01:55.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:55.412 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:01:55.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:55.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:55.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7319.3967ms +2017-12-14 12:01:55.426 +05:30 [Information] Request finished in 7346.0796ms 200 application/json; charset=utf-8 +2017-12-14 12:01:55.427 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" completed keep alive response. +2017-12-14 12:01:55.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:55.876 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:01:55.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:55.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:55.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5953.6013ms +2017-12-14 12:01:55.883 +05:30 [Information] Request finished in 5962.3736ms 200 application/json; charset=utf-8 +2017-12-14 12:01:55.884 +05:30 [Debug] Connection id ""0HLA2NGMJCPAA"" completed keep alive response. +2017-12-14 12:01:55.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:55.890 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:01:55.890 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:55.891 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:55.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6968.8992ms +2017-12-14 12:01:55.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:55.900 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:01:55.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:55.901 +05:30 [Information] Request finished in 6979.406ms 200 application/json; charset=utf-8 +2017-12-14 12:01:55.901 +05:30 [Debug] Connection id ""0HLA2NGMJCPA9"" completed keep alive response. +2017-12-14 12:01:55.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:55.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7806.9619ms +2017-12-14 12:01:55.932 +05:30 [Information] Request finished in 7846.0991ms 200 application/json; charset=utf-8 +2017-12-14 12:01:55.932 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" completed keep alive response. +2017-12-14 12:01:56.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:01:59.327 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:01:59.328 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:01:59.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:01:59.329 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:01:59.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5523.3036ms +2017-12-14 12:01:59.402 +05:30 [Information] Request finished in 5529.4432ms 200 application/json; charset=utf-8 +2017-12-14 12:01:59.402 +05:30 [Debug] Connection id ""0HLA2NGMJCPA8"" completed keep alive response. +2017-12-14 12:02:03.008 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:02:03.047 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:02:03.617 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:02:03.618 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:02:12.281 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:02:12.282 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:02:12.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:02:12.283 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:02:12.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24193.4495ms +2017-12-14 12:02:12.299 +05:30 [Information] Request finished in 24218.1951ms 200 application/json; charset=utf-8 +2017-12-14 12:02:12.300 +05:30 [Debug] Connection id ""0HLA2NGMJCPA7"" completed keep alive response. +2017-12-14 12:04:12.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPAA"" received FIN. +2017-12-14 12:04:12.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" received FIN. +2017-12-14 12:04:12.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" received FIN. +2017-12-14 12:04:12.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPA9"" received FIN. +2017-12-14 12:04:12.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPA8"" received FIN. +2017-12-14 12:04:12.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPA7"" received FIN. +2017-12-14 12:04:12.910 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" disconnecting. +2017-12-14 12:04:12.910 +05:30 [Debug] Connection id ""0HLA2NGMJCPAA"" disconnecting. +2017-12-14 12:04:12.911 +05:30 [Debug] Connection id ""0HLA2NGMJCPA9"" disconnecting. +2017-12-14 12:04:12.912 +05:30 [Debug] Connection id ""0HLA2NGMJCPA7"" disconnecting. +2017-12-14 12:04:12.912 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" disconnecting. +2017-12-14 12:04:12.911 +05:30 [Debug] Connection id ""0HLA2NGMJCPAA"" sending FIN. +2017-12-14 12:04:12.911 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" sending FIN. +2017-12-14 12:04:12.910 +05:30 [Debug] Connection id ""0HLA2NGMJCPA8"" disconnecting. +2017-12-14 12:04:12.914 +05:30 [Debug] Connection id ""0HLA2NGMJCPA7"" sending FIN. +2017-12-14 12:04:12.914 +05:30 [Debug] Connection id ""0HLA2NGMJCPA9"" sending FIN. +2017-12-14 12:04:12.915 +05:30 [Debug] Connection id ""0HLA2NGMJCPA8"" sending FIN. +2017-12-14 12:04:12.915 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" sending FIN. +2017-12-14 12:04:12.920 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" sent FIN with status "0". +2017-12-14 12:04:12.920 +05:30 [Debug] Connection id ""0HLA2NGMJCPA8"" sent FIN with status "0". +2017-12-14 12:04:12.922 +05:30 [Debug] Connection id ""0HLA2NGMJCPA6"" stopped. +2017-12-14 12:04:12.922 +05:30 [Debug] Connection id ""0HLA2NGMJCPA8"" stopped. +2017-12-14 12:04:12.922 +05:30 [Debug] Connection id ""0HLA2NGMJCPA9"" sent FIN with status "0". +2017-12-14 12:04:12.922 +05:30 [Debug] Connection id ""0HLA2NGMJCPA7"" sent FIN with status "0". +2017-12-14 12:04:12.923 +05:30 [Debug] Connection id ""0HLA2NGMJCPA9"" stopped. +2017-12-14 12:04:12.923 +05:30 [Debug] Connection id ""0HLA2NGMJCPA7"" stopped. +2017-12-14 12:04:12.923 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" sent FIN with status "0". +2017-12-14 12:04:12.923 +05:30 [Debug] Connection id ""0HLA2NGMJCPAA"" sent FIN with status "0". +2017-12-14 12:04:12.923 +05:30 [Debug] Connection id ""0HLA2NGMJCPAA"" stopped. +2017-12-14 12:04:12.923 +05:30 [Debug] Connection id ""0HLA2NGMJCPA5"" stopped. +2017-12-14 12:05:06.342 +05:30 [Debug] Connection id ""0HLA2NGMJCPAB"" started. +2017-12-14 12:05:06.344 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:05:06.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 12:05:06.349 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 12:05:09.400 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:05:13.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:05:13.521 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:05:13.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:05:13.522 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:05:13.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7218.1849ms +2017-12-14 12:05:13.575 +05:30 [Information] Request finished in 7231.8098ms 200 application/json; charset=utf-8 +2017-12-14 12:05:13.576 +05:30 [Debug] Connection id ""0HLA2NGMJCPAB"" completed keep alive response. +2017-12-14 12:05:13.598 +05:30 [Debug] Connection id ""0HLA2NGMJCPAC"" started. +2017-12-14 12:05:13.598 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 12:05:13.598 +05:30 [Debug] Connection id ""0HLA2NGMJCPAD"" started. +2017-12-14 12:05:13.598 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 12:05:13.598 +05:30 [Debug] Connection id ""0HLA2NGMJCPAE"" started. +2017-12-14 12:05:13.606 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 12:05:13.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:05:13.616 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:05:13.617 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 12:05:13.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 12:05:13.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:05:13.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 12:05:13.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 12:05:13.633 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 12:05:13.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 12:05:16.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 12:05:16.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:05:16.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:05:20.435 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:05:22.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:05:22.898 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:05:22.898 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:05:22.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:05:22.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 9299.3081ms +2017-12-14 12:05:22.928 +05:30 [Debug] Connection id ""0HLA2NGMJCPAF"" started. +2017-12-14 12:05:22.930 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:05:22.931 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:05:22.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:05:22.932 +05:30 [Information] Request finished in 9330.6832ms 200 application/json; charset=utf-8 +2017-12-14 12:05:22.937 +05:30 [Debug] Connection id ""0HLA2NGMJCPAD"" completed keep alive response. +2017-12-14 12:05:24.587 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:05:24.587 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:05:24.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:05:24.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:05:24.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 10992.2932ms +2017-12-14 12:05:24.603 +05:30 [Information] Request finished in 11007.173ms 200 application/json; charset=utf-8 +2017-12-14 12:05:24.605 +05:30 [Debug] Connection id ""0HLA2NGMJCPAB"" completed keep alive response. +2017-12-14 12:05:24.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:05:24.714 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:05:24.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:05:24.715 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:05:24.723 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 11082.1144ms +2017-12-14 12:05:24.728 +05:30 [Information] Request finished in 11128.9002ms 200 application/json; charset=utf-8 +2017-12-14 12:05:24.729 +05:30 [Debug] Connection id ""0HLA2NGMJCPAC"" completed keep alive response. +2017-12-14 12:05:25.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:05:26.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:05:26.383 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:05:26.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:05:26.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:05:26.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3456.004ms +2017-12-14 12:05:26.392 +05:30 [Information] Request finished in 3462.4755ms 200 application/json; charset=utf-8 +2017-12-14 12:05:26.392 +05:30 [Debug] Connection id ""0HLA2NGMJCPAF"" completed keep alive response. +2017-12-14 12:05:26.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:05:26.677 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:05:26.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:05:26.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:05:26.705 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 13072.4252ms +2017-12-14 12:05:26.708 +05:30 [Information] Request finished in 13099.7955ms 200 application/json; charset=utf-8 +2017-12-14 12:05:26.709 +05:30 [Debug] Connection id ""0HLA2NGMJCPAE"" completed keep alive response. +2017-12-14 12:07:52.850 +05:30 [Debug] Connection id ""0HLA2NGMJCPAD"" received FIN. +2017-12-14 12:07:52.850 +05:30 [Debug] Connection id ""0HLA2NGMJCPAC"" received FIN. +2017-12-14 12:07:52.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPAE"" received FIN. +2017-12-14 12:07:52.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPAC"" disconnecting. +2017-12-14 12:07:52.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPAC"" sending FIN. +2017-12-14 12:07:52.850 +05:30 [Debug] Connection id ""0HLA2NGMJCPAB"" received FIN. +2017-12-14 12:07:52.873 +05:30 [Debug] Connection id ""0HLA2NGMJCPAC"" sent FIN with status "0". +2017-12-14 12:07:52.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPAE"" disconnecting. +2017-12-14 12:07:52.873 +05:30 [Debug] Connection id ""0HLA2NGMJCPAF"" received FIN. +2017-12-14 12:07:52.873 +05:30 [Debug] Connection id ""0HLA2NGMJCPAC"" stopped. +2017-12-14 12:07:52.873 +05:30 [Debug] Connection id ""0HLA2NGMJCPAB"" disconnecting. +2017-12-14 12:07:52.874 +05:30 [Debug] Connection id ""0HLA2NGMJCPAE"" sending FIN. +2017-12-14 12:07:52.874 +05:30 [Debug] Connection id ""0HLA2NGMJCPAB"" sending FIN. +2017-12-14 12:07:52.850 +05:30 [Debug] Connection id ""0HLA2NGMJCPAD"" disconnecting. +2017-12-14 12:07:52.875 +05:30 [Debug] Connection id ""0HLA2NGMJCPAB"" sent FIN with status "0". +2017-12-14 12:07:52.874 +05:30 [Debug] Connection id ""0HLA2NGMJCPAF"" disconnecting. +2017-12-14 12:07:52.874 +05:30 [Debug] Connection id ""0HLA2NGMJCPAE"" sent FIN with status "0". +2017-12-14 12:07:52.875 +05:30 [Debug] Connection id ""0HLA2NGMJCPAB"" stopped. +2017-12-14 12:07:52.876 +05:30 [Debug] Connection id ""0HLA2NGMJCPAE"" stopped. +2017-12-14 12:07:52.876 +05:30 [Debug] Connection id ""0HLA2NGMJCPAD"" sending FIN. +2017-12-14 12:07:52.876 +05:30 [Debug] Connection id ""0HLA2NGMJCPAF"" sending FIN. +2017-12-14 12:07:52.876 +05:30 [Debug] Connection id ""0HLA2NGMJCPAF"" sent FIN with status "0". +2017-12-14 12:07:52.877 +05:30 [Debug] Connection id ""0HLA2NGMJCPAF"" stopped. +2017-12-14 12:07:52.878 +05:30 [Debug] Connection id ""0HLA2NGMJCPAD"" sent FIN with status "0". +2017-12-14 12:07:52.878 +05:30 [Debug] Connection id ""0HLA2NGMJCPAD"" stopped. +2017-12-14 12:31:25.930 +05:30 [Debug] Connection id ""0HLA2NGMJCPAG"" started. +2017-12-14 12:31:25.933 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=fb_127471161024815,fb_1155481037833115,fb_1452799044811364&userId=48&message=well%20said&shortnerstatus=0&mediaType=1 multipart/form-data; boundary=----WebKitFormBoundaryS2fA0945isxoBiGp 246745 +2017-12-14 12:31:25.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-14 12:31:25.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-14 12:31:29.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["well said", "fb_127471161024815,fb_1155481037833115,fb_1452799044811364", "48", "", "", "defaultUri", "Image", "Microsoft.AspNetCore.Http.Internal.FormFile"]) - ModelState is Valid +2017-12-14 12:31:32.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:31:32.124 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:31:32.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-14 12:31:32.154 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:31:32.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 6218.9294ms +2017-12-14 12:31:32.184 +05:30 [Information] Request finished in 6252.4856ms 200 text/plain; charset=utf-8 +2017-12-14 12:31:32.184 +05:30 [Debug] Connection id ""0HLA2NGMJCPAG"" completed keep alive response. +2017-12-14 12:31:34.335 +05:30 [Debug] Connection id ""0HLA2NGMJCPAH"" started. +2017-12-14 12:31:34.335 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=BBJ05TOU0M.jpg +2017-12-14 12:31:34.338 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-14 12:31:34.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-14 12:31:34.351 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=BBJ05TOU0M.jpg +2017-12-14 12:31:34.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-14 12:31:34.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-14 12:31:34.412 +05:30 [Debug] Connection id ""0HLA2NGMJCPAI"" started. +2017-12-14 12:31:34.413 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=BBJ05TOU0M.jpg +2017-12-14 12:31:34.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-12-14 12:31:34.413 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-12-14 12:31:36.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["BBJ05TOU0M.jpg"]) - ModelState is Valid +2017-12-14 12:31:36.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:31:36.515 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:31:36.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-12-14 12:31:36.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:31:36.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 2197.7511ms +2017-12-14 12:31:36.581 +05:30 [Information] Request finished in 2216.2072ms 200 +2017-12-14 12:31:36.581 +05:30 [Debug] Connection id ""0HLA2NGMJCPAH"" completed keep alive response. +2017-12-14 12:31:37.432 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["BBJ05TOU0M.jpg"]) - ModelState is Valid +2017-12-14 12:31:37.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:31:37.434 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:31:37.435 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-12-14 12:31:37.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:31:37.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3102.6063ms +2017-12-14 12:31:37.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["BBJ05TOU0M.jpg"]) - ModelState is Valid +2017-12-14 12:31:37.504 +05:30 [Information] Request finished in 3168.8933ms 200 +2017-12-14 12:31:37.505 +05:30 [Debug] Connection id ""0HLA2NGMJCPAG"" completed keep alive response. +2017-12-14 12:31:37.505 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:31:37.507 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:31:37.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-12-14 12:31:37.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:31:37.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3132.4609ms +2017-12-14 12:31:37.566 +05:30 [Information] Request finished in 3147.8726ms 200 +2017-12-14 12:31:37.567 +05:30 [Debug] Connection id ""0HLA2NGMJCPAI"" completed keep alive response. +2017-12-14 12:33:32.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPAH"" received FIN. +2017-12-14 12:33:32.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPAG"" received FIN. +2017-12-14 12:33:32.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPAH"" disconnecting. +2017-12-14 12:33:32.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPAI"" received FIN. +2017-12-14 12:33:32.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPAH"" sending FIN. +2017-12-14 12:33:32.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPAI"" disconnecting. +2017-12-14 12:33:32.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPAH"" sent FIN with status "0". +2017-12-14 12:33:32.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPAG"" disconnecting. +2017-12-14 12:33:32.864 +05:30 [Debug] Connection id ""0HLA2NGMJCPAI"" sending FIN. +2017-12-14 12:33:32.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPAG"" sending FIN. +2017-12-14 12:33:32.864 +05:30 [Debug] Connection id ""0HLA2NGMJCPAH"" stopped. +2017-12-14 12:33:32.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPAG"" sent FIN with status "0". +2017-12-14 12:33:32.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPAG"" stopped. +2017-12-14 12:33:32.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPAI"" sent FIN with status "0". +2017-12-14 12:33:32.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPAI"" stopped. +2017-12-14 12:39:08.940 +05:30 [Debug] Connection id ""0HLA2NGMJCPAJ"" started. +2017-12-14 12:39:08.942 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:39:08.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 12:39:08.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 12:39:11.997 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:39:13.874 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:39:13.875 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:39:13.875 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:39:13.876 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:39:13.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4933.2957ms +2017-12-14 12:39:13.880 +05:30 [Information] Request finished in 4938.3318ms 200 application/json; charset=utf-8 +2017-12-14 12:39:13.881 +05:30 [Debug] Connection id ""0HLA2NGMJCPAJ"" completed keep alive response. +2017-12-14 12:39:13.951 +05:30 [Debug] Connection id ""0HLA2NGMJCPAK"" started. +2017-12-14 12:39:13.951 +05:30 [Debug] Connection id ""0HLA2NGMJCPAL"" started. +2017-12-14 12:39:13.954 +05:30 [Debug] Connection id ""0HLA2NGMJCPAM"" started. +2017-12-14 12:39:13.956 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:39:13.958 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:39:13.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:39:13.988 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 12:39:13.989 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 12:39:13.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 12:39:13.991 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 12:39:13.992 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 12:39:13.992 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 12:39:14.008 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 12:39:14.008 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 12:39:14.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 12:39:16.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:39:17.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:39:17.952 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:39:22.445 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:39:22.446 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:39:22.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:39:22.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 12:39:22.622 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:39:23.491 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 9511.4834ms +2017-12-14 12:39:23.616 +05:30 [Debug] Connection id ""0HLA2NGMJCPAN"" started. +2017-12-14 12:39:24.412 +05:30 [Information] Request finished in 9705.787ms 200 application/json; charset=utf-8 +2017-12-14 12:39:24.445 +05:30 [Debug] Connection id ""0HLA2NGMJCPAJ"" completed keep alive response. +2017-12-14 12:39:24.517 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:39:24.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:39:24.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:39:28.136 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:39:28.137 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:39:28.137 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:39:28.138 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:39:28.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 14145.4249ms +2017-12-14 12:39:28.142 +05:30 [Information] Request finished in 14174.4376ms 200 application/json; charset=utf-8 +2017-12-14 12:39:28.142 +05:30 [Debug] Connection id ""0HLA2NGMJCPAM"" completed keep alive response. +2017-12-14 12:39:29.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:39:29.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:39:29.109 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:39:29.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:39:29.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:39:29.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 15121.562ms +2017-12-14 12:39:29.115 +05:30 [Information] Request finished in 15159.3394ms 200 application/json; charset=utf-8 +2017-12-14 12:39:29.116 +05:30 [Debug] Connection id ""0HLA2NGMJCPAL"" completed keep alive response. +2017-12-14 12:39:29.583 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:39:29.583 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:39:29.583 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:39:29.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:39:29.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5067.9943ms +2017-12-14 12:39:29.591 +05:30 [Information] Request finished in 5128.6778ms 200 application/json; charset=utf-8 +2017-12-14 12:39:29.591 +05:30 [Debug] Connection id ""0HLA2NGMJCPAN"" completed keep alive response. +2017-12-14 12:39:29.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:39:29.715 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:39:29.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:39:29.716 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:39:29.717 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 15708.36ms +2017-12-14 12:39:29.723 +05:30 [Information] Request finished in 15770.4489ms 200 application/json; charset=utf-8 +2017-12-14 12:39:29.724 +05:30 [Debug] Connection id ""0HLA2NGMJCPAK"" completed keep alive response. +2017-12-14 12:40:52.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPAJ"" received FIN. +2017-12-14 12:40:52.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPAJ"" disconnecting. +2017-12-14 12:40:52.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPAJ"" sending FIN. +2017-12-14 12:40:52.853 +05:30 [Debug] Connection id ""0HLA2NGMJCPAJ"" sent FIN with status "0". +2017-12-14 12:40:52.853 +05:30 [Debug] Connection id ""0HLA2NGMJCPAL"" received FIN. +2017-12-14 12:40:52.853 +05:30 [Debug] Connection id ""0HLA2NGMJCPAJ"" stopped. +2017-12-14 12:40:52.853 +05:30 [Debug] Connection id ""0HLA2NGMJCPAM"" received FIN. +2017-12-14 12:40:52.853 +05:30 [Debug] Connection id ""0HLA2NGMJCPAN"" received FIN. +2017-12-14 12:40:52.853 +05:30 [Debug] Connection id ""0HLA2NGMJCPAK"" received FIN. +2017-12-14 12:40:52.854 +05:30 [Debug] Connection id ""0HLA2NGMJCPAL"" disconnecting. +2017-12-14 12:40:52.854 +05:30 [Debug] Connection id ""0HLA2NGMJCPAM"" disconnecting. +2017-12-14 12:40:52.854 +05:30 [Debug] Connection id ""0HLA2NGMJCPAL"" sending FIN. +2017-12-14 12:40:52.855 +05:30 [Debug] Connection id ""0HLA2NGMJCPAM"" sending FIN. +2017-12-14 12:40:52.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPAM"" sent FIN with status "0". +2017-12-14 12:40:52.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPAL"" sent FIN with status "0". +2017-12-14 12:40:52.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPAM"" stopped. +2017-12-14 12:40:52.857 +05:30 [Debug] Connection id ""0HLA2NGMJCPAL"" stopped. +2017-12-14 12:40:52.855 +05:30 [Debug] Connection id ""0HLA2NGMJCPAK"" disconnecting. +2017-12-14 12:40:52.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPAK"" sending FIN. +2017-12-14 12:40:52.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPAK"" sent FIN with status "0". +2017-12-14 12:40:52.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPAK"" stopped. +2017-12-14 12:40:52.854 +05:30 [Debug] Connection id ""0HLA2NGMJCPAN"" disconnecting. +2017-12-14 12:40:52.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPAN"" sending FIN. +2017-12-14 12:40:52.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPAN"" sent FIN with status "0". +2017-12-14 12:40:52.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPAN"" stopped. +2017-12-14 12:41:14.184 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" started. +2017-12-14 12:41:14.186 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:41:14.187 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:41:14.187 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:41:17.223 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:41:17.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:17.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:17.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:17.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3581.6461ms +2017-12-14 12:41:17.774 +05:30 [Information] Request finished in 3588.5057ms 200 application/json; charset=utf-8 +2017-12-14 12:41:17.774 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" completed keep alive response. +2017-12-14 12:41:17.784 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 12:41:17.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 12:41:17.785 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 12:41:20.847 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 12:41:22.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:22.466 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:22.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:22.469 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4682.4353ms +2017-12-14 12:41:22.471 +05:30 [Information] Request finished in 4687.1894ms 200 application/json; charset=utf-8 +2017-12-14 12:41:22.472 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" completed keep alive response. +2017-12-14 12:41:27.041 +05:30 [Debug] Connection id ""0HLA2NGMJCPAP"" started. +2017-12-14 12:41:27.047 +05:30 [Debug] Connection id ""0HLA2NGMJCPAQ"" started. +2017-12-14 12:41:27.074 +05:30 [Debug] Connection id ""0HLA2NGMJCPAR"" started. +2017-12-14 12:41:27.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 12:41:27.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 12:41:27.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 12:41:27.153 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 12:41:27.153 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 12:41:27.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 12:41:27.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 12:41:27.289 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 12:41:27.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 12:41:27.304 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 12:41:27.308 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 12:41:27.309 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 12:41:27.572 +05:30 [Debug] Connection id ""0HLA2NGMJCPAS"" started. +2017-12-14 12:41:27.575 +05:30 [Debug] Connection id ""0HLA2NGMJCPAT"" started. +2017-12-14 12:41:27.586 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 12:41:27.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 12:41:27.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 12:41:27.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 12:41:27.608 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 12:41:27.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 12:41:30.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:41:30.415 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:41:30.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:41:30.618 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:41:30.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:41:30.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:41:31.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:31.493 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:31.494 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:31.495 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:31.501 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4360.5328ms +2017-12-14 12:41:31.503 +05:30 [Information] Request finished in 4455.2418ms 200 application/json; charset=utf-8 +2017-12-14 12:41:31.503 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" completed keep alive response. +2017-12-14 12:41:31.506 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:41:31.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 12:41:31.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 12:41:32.482 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:32.482 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:32.482 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:32.483 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:32.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5193.289ms +2017-12-14 12:41:32.487 +05:30 [Information] Request finished in 5438.5615ms 200 application/json; charset=utf-8 +2017-12-14 12:41:32.487 +05:30 [Debug] Connection id ""0HLA2NGMJCPAP"" completed keep alive response. +2017-12-14 12:41:33.001 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:33.001 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:33.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:33.009 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:33.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5702.0148ms +2017-12-14 12:41:33.018 +05:30 [Information] Request finished in 5941.7479ms 200 application/json; charset=utf-8 +2017-12-14 12:41:33.019 +05:30 [Debug] Connection id ""0HLA2NGMJCPAQ"" completed keep alive response. +2017-12-14 12:41:33.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:33.544 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:33.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:33.546 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:33.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5938.8994ms +2017-12-14 12:41:33.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:33.554 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:33.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:33.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:33.567 +05:30 [Information] Request finished in 5976.61ms 200 application/json; charset=utf-8 +2017-12-14 12:41:33.568 +05:30 [Debug] Connection id ""0HLA2NGMJCPAT"" completed keep alive response. +2017-12-14 12:41:33.588 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5969.1741ms +2017-12-14 12:41:33.595 +05:30 [Information] Request finished in 6017.4111ms 200 application/json; charset=utf-8 +2017-12-14 12:41:33.595 +05:30 [Debug] Connection id ""0HLA2NGMJCPAS"" completed keep alive response. +2017-12-14 12:41:35.603 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:41:35.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:35.846 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:35.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:35.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:35.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4339.5447ms +2017-12-14 12:41:35.850 +05:30 [Information] Request finished in 4343.3707ms 200 application/json; charset=utf-8 +2017-12-14 12:41:35.850 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" completed keep alive response. +2017-12-14 12:41:35.878 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 12:41:35.878 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 12:41:35.878 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 12:41:35.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 12:41:35.881 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:41:35.882 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:41:35.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 12:41:35.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:41:35.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 12:41:36.585 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 12:41:36.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 12:41:36.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 12:41:38.930 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:41:38.931 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:41:39.519 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:41:39.521 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:41:39.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:41:39.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 12:41:47.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:41:48.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:48.055 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:48.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:49.235 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:49.901 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 13332.3875ms +2017-12-14 12:41:50.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:41:50.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:41:50.122 +05:30 [Information] Request finished in 14127.1523ms 200 application/json; charset=utf-8 +2017-12-14 12:41:50.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:41:50.153 +05:30 [Debug] Connection id ""0HLA2NGMJCPAT"" completed keep alive response. +2017-12-14 12:41:50.153 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:41:58.509 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:58.510 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:58.510 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:58.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:58.583 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:58.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 22704.1794ms +2017-12-14 12:41:58.585 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:58.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:58.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:58.592 +05:30 [Information] Request finished in 22714.127ms 200 application/json; charset=utf-8 +2017-12-14 12:41:58.593 +05:30 [Debug] Connection id ""0HLA2NGMJCPAP"" completed keep alive response. +2017-12-14 12:41:58.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 22004.8053ms +2017-12-14 12:41:58.597 +05:30 [Information] Request finished in 22018.0978ms 200 application/json; charset=utf-8 +2017-12-14 12:41:58.598 +05:30 [Debug] Connection id ""0HLA2NGMJCPAS"" completed keep alive response. +2017-12-14 12:41:58.820 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:58.822 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:58.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:58.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:58.827 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 22922.1768ms +2017-12-14 12:41:58.829 +05:30 [Information] Request finished in 22951.6877ms 200 application/json; charset=utf-8 +2017-12-14 12:41:58.829 +05:30 [Debug] Connection id ""0HLA2NGMJCPAQ"" completed keep alive response. +2017-12-14 12:41:59.553 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:41:59.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:41:59.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:41:59.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:41:59.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:41:59.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 9820.0487ms +2017-12-14 12:41:59.982 +05:30 [Information] Request finished in 9930.0329ms 200 application/json; charset=utf-8 +2017-12-14 12:41:59.983 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" completed keep alive response. +2017-12-14 12:42:05.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:42:05.277 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:42:05.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:42:05.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:42:05.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 38105.4816ms +2017-12-14 12:42:05.284 +05:30 [Information] Request finished in 38169.1794ms 200 application/json; charset=utf-8 +2017-12-14 12:42:05.284 +05:30 [Debug] Connection id ""0HLA2NGMJCPAR"" completed keep alive response. +2017-12-14 12:44:17.632 +05:30 [Debug] Connection id ""0HLA2NGMJCPAT"" received FIN. +2017-12-14 12:44:17.632 +05:30 [Debug] Connection id ""0HLA2NGMJCPAS"" received FIN. +2017-12-14 12:44:17.632 +05:30 [Debug] Connection id ""0HLA2NGMJCPAT"" disconnecting. +2017-12-14 12:44:17.632 +05:30 [Debug] Connection id ""0HLA2NGMJCPAP"" received FIN. +2017-12-14 12:44:17.632 +05:30 [Debug] Connection id ""0HLA2NGMJCPAQ"" received FIN. +2017-12-14 12:44:17.633 +05:30 [Debug] Connection id ""0HLA2NGMJCPAR"" received FIN. +2017-12-14 12:44:17.633 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" received FIN. +2017-12-14 12:44:17.633 +05:30 [Debug] Connection id ""0HLA2NGMJCPAT"" sending FIN. +2017-12-14 12:44:17.633 +05:30 [Debug] Connection id ""0HLA2NGMJCPAP"" disconnecting. +2017-12-14 12:44:17.633 +05:30 [Debug] Connection id ""0HLA2NGMJCPAT"" sent FIN with status "0". +2017-12-14 12:44:17.633 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" started. +2017-12-14 12:44:17.655 +05:30 [Debug] Connection id ""0HLA2NGMJCPAT"" stopped. +2017-12-14 12:44:17.634 +05:30 [Debug] Connection id ""0HLA2NGMJCPAR"" disconnecting. +2017-12-14 12:44:17.655 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" disconnecting. +2017-12-14 12:44:17.658 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" sending FIN. +2017-12-14 12:44:17.658 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:44:17.659 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" sent FIN with status "0". +2017-12-14 12:44:17.659 +05:30 [Debug] Connection id ""0HLA2NGMJCPAO"" stopped. +2017-12-14 12:44:17.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:44:17.633 +05:30 [Debug] Connection id ""0HLA2NGMJCPAQ"" disconnecting. +2017-12-14 12:44:17.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:44:17.660 +05:30 [Debug] Connection id ""0HLA2NGMJCPAQ"" sending FIN. +2017-12-14 12:44:17.660 +05:30 [Debug] Connection id ""0HLA2NGMJCPAQ"" sent FIN with status "0". +2017-12-14 12:44:17.661 +05:30 [Debug] Connection id ""0HLA2NGMJCPAQ"" stopped. +2017-12-14 12:44:17.632 +05:30 [Debug] Connection id ""0HLA2NGMJCPAS"" disconnecting. +2017-12-14 12:44:17.655 +05:30 [Debug] Connection id ""0HLA2NGMJCPAP"" sending FIN. +2017-12-14 12:44:17.665 +05:30 [Debug] Connection id ""0HLA2NGMJCPAS"" sending FIN. +2017-12-14 12:44:17.666 +05:30 [Debug] Connection id ""0HLA2NGMJCPAR"" sending FIN. +2017-12-14 12:44:17.666 +05:30 [Debug] Connection id ""0HLA2NGMJCPAS"" sent FIN with status "0". +2017-12-14 12:44:17.667 +05:30 [Debug] Connection id ""0HLA2NGMJCPAS"" stopped. +2017-12-14 12:44:17.666 +05:30 [Debug] Connection id ""0HLA2NGMJCPAR"" sent FIN with status "0". +2017-12-14 12:44:17.667 +05:30 [Debug] Connection id ""0HLA2NGMJCPAR"" stopped. +2017-12-14 12:44:17.667 +05:30 [Debug] Connection id ""0HLA2NGMJCPAP"" sent FIN with status "0". +2017-12-14 12:44:17.667 +05:30 [Debug] Connection id ""0HLA2NGMJCPAP"" stopped. +2017-12-14 12:44:20.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:44:21.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:21.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:21.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:21.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3663.7699ms +2017-12-14 12:44:21.326 +05:30 [Information] Request finished in 3670.4699ms 200 application/json; charset=utf-8 +2017-12-14 12:44:21.327 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" completed keep alive response. +2017-12-14 12:44:21.332 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 12:44:21.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 12:44:21.333 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 12:44:24.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 12:44:26.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:26.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:26.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:26.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4741.5734ms +2017-12-14 12:44:26.082 +05:30 [Information] Request finished in 4748.1988ms 200 application/json; charset=utf-8 +2017-12-14 12:44:26.083 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" completed keep alive response. +2017-12-14 12:44:31.112 +05:30 [Debug] Connection id ""0HLA2NGMJCPAV"" started. +2017-12-14 12:44:31.114 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 12:44:31.114 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 12:44:31.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 12:44:31.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 12:44:31.127 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 12:44:31.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 12:44:31.298 +05:30 [Debug] Connection id ""0HLA2NGMJCPB0"" started. +2017-12-14 12:44:31.319 +05:30 [Debug] Connection id ""0HLA2NGMJCPB1"" started. +2017-12-14 12:44:31.319 +05:30 [Debug] Connection id ""0HLA2NGMJCPB2"" started. +2017-12-14 12:44:31.320 +05:30 [Debug] Connection id ""0HLA2NGMJCPB3"" started. +2017-12-14 12:44:31.520 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 12:44:31.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 12:44:31.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 12:44:31.724 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 12:44:31.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 12:44:31.725 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 12:44:31.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 12:44:31.758 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 12:44:31.760 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 12:44:31.762 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 12:44:31.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 12:44:31.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 12:44:34.627 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:44:34.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:44:35.627 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:44:35.733 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:44:35.736 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:44:35.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:44:35.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:35.813 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:35.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:35.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:35.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4700.1808ms +2017-12-14 12:44:35.826 +05:30 [Information] Request finished in 4716.8701ms 200 application/json; charset=utf-8 +2017-12-14 12:44:35.827 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" completed keep alive response. +2017-12-14 12:44:35.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:44:35.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 12:44:35.844 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 12:44:35.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:35.854 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:35.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:35.861 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:35.866 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4733.3862ms +2017-12-14 12:44:35.876 +05:30 [Information] Request finished in 4761.8527ms 200 application/json; charset=utf-8 +2017-12-14 12:44:35.876 +05:30 [Debug] Connection id ""0HLA2NGMJCPAV"" completed keep alive response. +2017-12-14 12:44:36.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:36.285 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:36.286 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:36.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:36.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4564.7388ms +2017-12-14 12:44:36.296 +05:30 [Information] Request finished in 4683.499ms 200 application/json; charset=utf-8 +2017-12-14 12:44:36.297 +05:30 [Debug] Connection id ""0HLA2NGMJCPB2"" completed keep alive response. +2017-12-14 12:44:36.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:36.420 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:36.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:36.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:36.421 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4901.2133ms +2017-12-14 12:44:36.425 +05:30 [Information] Request finished in 5104.7937ms 200 application/json; charset=utf-8 +2017-12-14 12:44:36.425 +05:30 [Debug] Connection id ""0HLA2NGMJCPB1"" completed keep alive response. +2017-12-14 12:44:36.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:36.882 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:36.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:36.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:36.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5122.3062ms +2017-12-14 12:44:36.886 +05:30 [Information] Request finished in 5239.0025ms 200 application/json; charset=utf-8 +2017-12-14 12:44:36.887 +05:30 [Debug] Connection id ""0HLA2NGMJCPB0"" completed keep alive response. +2017-12-14 12:44:38.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:44:39.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:39.159 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:39.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:39.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:39.163 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3317.0029ms +2017-12-14 12:44:39.168 +05:30 [Information] Request finished in 3332.1782ms 200 application/json; charset=utf-8 +2017-12-14 12:44:39.169 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" completed keep alive response. +2017-12-14 12:44:39.211 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 12:44:39.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 12:44:39.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 12:44:39.227 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 12:44:39.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 12:44:39.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 12:44:39.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:44:39.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:44:39.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:44:39.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 12:44:39.241 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 12:44:39.243 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 12:44:42.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 12:44:45.155 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:44:45.157 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:44:52.142 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:44:52.575 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:52.575 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:52.575 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:52.576 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:52.586 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 13346.5144ms +2017-12-14 12:44:52.587 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:44:52.589 +05:30 [Information] Request finished in 13373.9699ms 200 application/json; charset=utf-8 +2017-12-14 12:44:52.589 +05:30 [Debug] Connection id ""0HLA2NGMJCPB0"" completed keep alive response. +2017-12-14 12:44:52.589 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:44:52.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:44:52.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:52.901 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:52.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:52.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:52.905 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 13690.3884ms +2017-12-14 12:44:52.908 +05:30 [Information] Request finished in 13701.8907ms 200 application/json; charset=utf-8 +2017-12-14 12:44:52.908 +05:30 [Debug] Connection id ""0HLA2NGMJCPAV"" completed keep alive response. +2017-12-14 12:44:53.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:53.126 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:53.126 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:53.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:53.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 13894.3454ms +2017-12-14 12:44:53.133 +05:30 [Information] Request finished in 13923.6ms 200 application/json; charset=utf-8 +2017-12-14 12:44:53.133 +05:30 [Debug] Connection id ""0HLA2NGMJCPB2"" completed keep alive response. +2017-12-14 12:44:53.908 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:44:53.912 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:44:54.517 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:44:54.518 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:44:54.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:54.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:54.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:54.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:54.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 15639.9246ms +2017-12-14 12:44:54.906 +05:30 [Information] Request finished in 15696.6322ms 200 application/json; charset=utf-8 +2017-12-14 12:44:54.907 +05:30 [Debug] Connection id ""0HLA2NGMJCPB1"" completed keep alive response. +2017-12-14 12:44:55.666 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:44:56.095 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:44:56.096 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:44:56.096 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:44:56.097 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:44:56.100 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3503.9711ms +2017-12-14 12:44:56.104 +05:30 [Information] Request finished in 3517.6821ms 200 application/json; charset=utf-8 +2017-12-14 12:44:56.104 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" completed keep alive response. +2017-12-14 12:45:03.572 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:45:03.572 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:45:03.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:45:03.574 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:45:03.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 31809.3308ms +2017-12-14 12:45:03.579 +05:30 [Information] Request finished in 31822.9784ms 200 application/json; charset=utf-8 +2017-12-14 12:45:03.580 +05:30 [Debug] Connection id ""0HLA2NGMJCPB3"" completed keep alive response. +2017-12-14 12:46:22.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPB0"" received FIN. +2017-12-14 12:46:22.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPAV"" received FIN. +2017-12-14 12:46:22.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPB1"" received FIN. +2017-12-14 12:46:22.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPB2"" received FIN. +2017-12-14 12:46:22.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPB0"" disconnecting. +2017-12-14 12:46:22.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPAV"" disconnecting. +2017-12-14 12:46:22.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPB3"" received FIN. +2017-12-14 12:46:22.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPB2"" disconnecting. +2017-12-14 12:46:22.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPAV"" sending FIN. +2017-12-14 12:46:22.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" received FIN. +2017-12-14 12:46:22.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPB2"" sending FIN. +2017-12-14 12:46:22.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPB3"" disconnecting. +2017-12-14 12:46:22.853 +05:30 [Debug] Connection id ""0HLA2NGMJCPB2"" sent FIN with status "0". +2017-12-14 12:46:22.853 +05:30 [Debug] Connection id ""0HLA2NGMJCPB0"" sending FIN. +2017-12-14 12:46:22.855 +05:30 [Debug] Connection id ""0HLA2NGMJCPB2"" stopped. +2017-12-14 12:46:22.853 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" disconnecting. +2017-12-14 12:46:22.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPAV"" sent FIN with status "0". +2017-12-14 12:46:22.855 +05:30 [Debug] Connection id ""0HLA2NGMJCPB0"" sent FIN with status "0". +2017-12-14 12:46:22.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPAV"" stopped. +2017-12-14 12:46:22.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPB0"" stopped. +2017-12-14 12:46:22.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPB3"" sending FIN. +2017-12-14 12:46:22.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPB1"" disconnecting. +2017-12-14 12:46:22.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" sending FIN. +2017-12-14 12:46:22.857 +05:30 [Debug] Connection id ""0HLA2NGMJCPB1"" sending FIN. +2017-12-14 12:46:22.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPB3"" sent FIN with status "0". +2017-12-14 12:46:22.857 +05:30 [Debug] Connection id ""0HLA2NGMJCPB1"" sent FIN with status "0". +2017-12-14 12:46:22.857 +05:30 [Debug] Connection id ""0HLA2NGMJCPB3"" stopped. +2017-12-14 12:46:22.857 +05:30 [Debug] Connection id ""0HLA2NGMJCPB1"" stopped. +2017-12-14 12:46:22.858 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" sent FIN with status "0". +2017-12-14 12:46:22.858 +05:30 [Debug] Connection id ""0HLA2NGMJCPAU"" stopped. +2017-12-14 12:46:34.416 +05:30 [Debug] Connection id ""0HLA2NGMJCPB4"" started. +2017-12-14 12:46:34.417 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:46:34.418 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:46:34.418 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:46:37.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:46:37.989 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:46:37.990 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:46:37.990 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:46:37.991 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3571.9128ms +2017-12-14 12:46:37.993 +05:30 [Information] Request finished in 3575.6586ms 200 application/json; charset=utf-8 +2017-12-14 12:46:37.994 +05:30 [Debug] Connection id ""0HLA2NGMJCPB4"" completed keep alive response. +2017-12-14 12:46:38.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 12:46:38.015 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 12:46:38.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 12:46:41.051 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 12:46:42.718 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:46:42.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:46:42.719 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:46:42.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4697.5475ms +2017-12-14 12:46:42.723 +05:30 [Information] Request finished in 4714.1245ms 200 application/json; charset=utf-8 +2017-12-14 12:46:42.724 +05:30 [Debug] Connection id ""0HLA2NGMJCPB4"" completed keep alive response. +2017-12-14 12:46:47.428 +05:30 [Debug] Connection id ""0HLA2NGMJCPB6"" started. +2017-12-14 12:46:47.428 +05:30 [Debug] Connection id ""0HLA2NGMJCPB5"" started. +2017-12-14 12:46:47.555 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 12:46:47.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 12:46:47.556 +05:30 [Debug] Connection id ""0HLA2NGMJCPB7"" started. +2017-12-14 12:46:47.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 12:46:47.598 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 12:46:47.598 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 12:46:47.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 12:46:47.630 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 12:46:47.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 12:46:47.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 12:46:47.710 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 12:46:47.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 12:46:47.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 12:46:49.371 +05:30 [Debug] Connection id ""0HLA2NGMJCPB8"" started. +2017-12-14 12:46:49.378 +05:30 [Debug] Connection id ""0HLA2NGMJCPB9"" started. +2017-12-14 12:46:50.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 12:46:50.170 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 12:46:50.174 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 12:46:51.168 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 12:46:51.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 12:46:51.169 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 12:46:53.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:46:53.292 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:46:53.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:46:53.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:46:53.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:46:53.956 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:46:53.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:46:53.959 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:46:53.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6360.1919ms +2017-12-14 12:46:53.967 +05:30 [Information] Request finished in 6453.4867ms 200 application/json; charset=utf-8 +2017-12-14 12:46:53.968 +05:30 [Debug] Connection id ""0HLA2NGMJCPB6"" completed keep alive response. +2017-12-14 12:46:54.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:46:54.034 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:46:54.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:46:54.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:46:54.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6323.7997ms +2017-12-14 12:46:54.040 +05:30 [Information] Request finished in 6477.1457ms 200 application/json; charset=utf-8 +2017-12-14 12:46:54.040 +05:30 [Debug] Connection id ""0HLA2NGMJCPB7"" completed keep alive response. +2017-12-14 12:46:54.042 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:46:54.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 12:46:54.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 12:46:54.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:46:54.426 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:46:54.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:46:54.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:46:54.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6795.7444ms +2017-12-14 12:46:54.431 +05:30 [Information] Request finished in 6873.4285ms 200 application/json; charset=utf-8 +2017-12-14 12:46:54.432 +05:30 [Debug] Connection id ""0HLA2NGMJCPB5"" completed keep alive response. +2017-12-14 12:46:54.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:46:54.499 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:46:55.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:46:55.619 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:46:55.619 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:46:55.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:46:55.621 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4450.5039ms +2017-12-14 12:46:55.623 +05:30 [Information] Request finished in 4454.3181ms 200 application/json; charset=utf-8 +2017-12-14 12:46:55.623 +05:30 [Debug] Connection id ""0HLA2NGMJCPB9"" completed keep alive response. +2017-12-14 12:46:55.718 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:46:55.719 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:46:55.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:46:55.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:46:55.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5546.0554ms +2017-12-14 12:46:55.723 +05:30 [Information] Request finished in 5553.5618ms 200 application/json; charset=utf-8 +2017-12-14 12:46:55.723 +05:30 [Debug] Connection id ""0HLA2NGMJCPB8"" completed keep alive response. +2017-12-14 12:46:57.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:46:57.338 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:46:57.339 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:46:57.339 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:46:57.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:46:57.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3297.7179ms +2017-12-14 12:46:57.343 +05:30 [Information] Request finished in 3301.9853ms 200 application/json; charset=utf-8 +2017-12-14 12:46:57.343 +05:30 [Debug] Connection id ""0HLA2NGMJCPB6"" completed keep alive response. +2017-12-14 12:46:57.393 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 12:46:57.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 12:46:57.395 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 12:46:57.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 12:46:57.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 12:46:57.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 12:46:57.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 12:46:57.395 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:46:57.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 12:46:57.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:46:57.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:46:57.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 12:46:59.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:47:00.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:47:00.340 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:47:00.340 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:47:00.341 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:47:00.343 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 2945.5714ms +2017-12-14 12:47:00.346 +05:30 [Information] Request finished in 2973.1217ms 200 application/json; charset=utf-8 +2017-12-14 12:47:00.346 +05:30 [Debug] Connection id ""0HLA2NGMJCPB9"" completed keep alive response. +2017-12-14 12:47:00.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:47:00.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:47:00.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 12:47:00.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:47:00.998 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:47:00.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:47:00.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:47:01.006 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:47:01.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:47:01.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:47:01.008 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3583.8546ms +2017-12-14 12:47:01.014 +05:30 [Information] Request finished in 3639.6982ms 200 application/json; charset=utf-8 +2017-12-14 12:47:01.014 +05:30 [Debug] Connection id ""0HLA2NGMJCPB5"" completed keep alive response. +2017-12-14 12:47:01.367 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:47:01.367 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:47:01.368 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:47:01.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:47:01.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3973.174ms +2017-12-14 12:47:01.372 +05:30 [Information] Request finished in 3999.7387ms 200 application/json; charset=utf-8 +2017-12-14 12:47:01.372 +05:30 [Debug] Connection id ""0HLA2NGMJCPB7"" completed keep alive response. +2017-12-14 12:47:02.056 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:47:02.058 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:47:02.567 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:47:02.567 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:47:02.568 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:47:02.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:47:02.571 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 5148.8896ms +2017-12-14 12:47:02.573 +05:30 [Information] Request finished in 5200.2528ms 200 application/json; charset=utf-8 +2017-12-14 12:47:02.573 +05:30 [Debug] Connection id ""0HLA2NGMJCPB8"" completed keep alive response. +2017-12-14 12:47:02.699 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:47:02.701 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:47:04.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:47:04.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:47:04.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:47:04.520 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:47:04.522 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:47:04.526 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3517.8159ms +2017-12-14 12:47:04.530 +05:30 [Information] Request finished in 3525.4318ms 200 application/json; charset=utf-8 +2017-12-14 12:47:04.531 +05:30 [Debug] Connection id ""0HLA2NGMJCPB6"" completed keep alive response. +2017-12-14 12:47:11.698 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:47:11.699 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:47:11.699 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:47:11.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:47:11.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24147.6256ms +2017-12-14 12:47:11.713 +05:30 [Information] Request finished in 24352.2139ms 200 application/json; charset=utf-8 +2017-12-14 12:47:11.714 +05:30 [Debug] Connection id ""0HLA2NGMJCPB4"" completed keep alive response. +2017-12-14 12:48:12.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPB9"" received FIN. +2017-12-14 12:48:12.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPB5"" received FIN. +2017-12-14 12:48:12.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPB8"" received FIN. +2017-12-14 12:48:12.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPB7"" received FIN. +2017-12-14 12:48:12.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPB4"" received FIN. +2017-12-14 12:48:12.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPB6"" received FIN. +2017-12-14 12:48:12.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPB9"" disconnecting. +2017-12-14 12:48:12.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPB9"" sending FIN. +2017-12-14 12:48:12.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPB8"" disconnecting. +2017-12-14 12:48:12.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPB7"" disconnecting. +2017-12-14 12:48:12.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPB9"" sent FIN with status "0". +2017-12-14 12:48:12.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPB4"" disconnecting. +2017-12-14 12:48:12.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPB9"" stopped. +2017-12-14 12:48:12.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPB8"" sending FIN. +2017-12-14 12:48:12.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPB6"" disconnecting. +2017-12-14 12:48:12.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPB7"" sending FIN. +2017-12-14 12:48:12.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPB6"" sending FIN. +2017-12-14 12:48:12.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPB5"" disconnecting. +2017-12-14 12:48:12.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPB6"" sent FIN with status "0". +2017-12-14 12:48:12.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPB4"" sending FIN. +2017-12-14 12:48:12.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPB6"" stopped. +2017-12-14 12:48:12.868 +05:30 [Debug] Connection id ""0HLA2NGMJCPB5"" sending FIN. +2017-12-14 12:48:12.868 +05:30 [Debug] Connection id ""0HLA2NGMJCPB7"" sent FIN with status "0". +2017-12-14 12:48:12.869 +05:30 [Debug] Connection id ""0HLA2NGMJCPB5"" sent FIN with status "0". +2017-12-14 12:48:12.869 +05:30 [Debug] Connection id ""0HLA2NGMJCPB7"" stopped. +2017-12-14 12:48:12.869 +05:30 [Debug] Connection id ""0HLA2NGMJCPB5"" stopped. +2017-12-14 12:48:12.869 +05:30 [Debug] Connection id ""0HLA2NGMJCPB4"" sent FIN with status "0". +2017-12-14 12:48:12.869 +05:30 [Debug] Connection id ""0HLA2NGMJCPB4"" stopped. +2017-12-14 12:48:12.870 +05:30 [Debug] Connection id ""0HLA2NGMJCPB8"" sent FIN with status "0". +2017-12-14 12:48:12.870 +05:30 [Debug] Connection id ""0HLA2NGMJCPB8"" stopped. +2017-12-14 12:49:26.129 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" started. +2017-12-14 12:49:26.130 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:49:26.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:49:26.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:49:29.167 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:49:29.743 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:29.743 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:29.744 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:29.746 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3613.7347ms +2017-12-14 12:49:29.748 +05:30 [Information] Request finished in 3618.3678ms 200 application/json; charset=utf-8 +2017-12-14 12:49:29.748 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" completed keep alive response. +2017-12-14 12:49:29.755 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 12:49:29.756 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 12:49:29.756 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 12:49:32.793 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 12:49:34.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:34.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:34.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:34.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4722.6328ms +2017-12-14 12:49:34.482 +05:30 [Information] Request finished in 4726.7555ms 200 application/json; charset=utf-8 +2017-12-14 12:49:34.484 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" completed keep alive response. +2017-12-14 12:49:38.003 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" started. +2017-12-14 12:49:38.006 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" started. +2017-12-14 12:49:38.033 +05:30 [Debug] Connection id ""0HLA2NGMJCPBD"" started. +2017-12-14 12:49:38.040 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 12:49:38.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 12:49:38.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 12:49:38.103 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 12:49:38.104 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 12:49:38.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 12:49:38.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 12:49:38.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 12:49:38.117 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 12:49:38.114 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 12:49:38.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 12:49:38.209 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 12:49:39.109 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" started. +2017-12-14 12:49:39.110 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" started. +2017-12-14 12:49:40.292 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 12:49:40.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 12:49:40.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 12:49:41.292 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 12:49:41.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 12:49:41.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 12:49:43.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:49:43.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:49:44.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:44.110 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:44.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:44.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:44.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6006.3915ms +2017-12-14 12:49:44.115 +05:30 [Information] Request finished in 6076.6266ms 200 application/json; charset=utf-8 +2017-12-14 12:49:44.115 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" completed keep alive response. +2017-12-14 12:49:44.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:49:44.121 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 12:49:44.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 12:49:44.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:44.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:44.499 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:44.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:44.504 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6460.1439ms +2017-12-14 12:49:44.506 +05:30 [Information] Request finished in 6500.2181ms 200 application/json; charset=utf-8 +2017-12-14 12:49:44.507 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" completed keep alive response. +2017-12-14 12:49:44.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:49:44.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:49:44.610 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:49:44.633 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:49:45.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:45.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:45.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:45.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:45.169 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7051.0525ms +2017-12-14 12:49:45.174 +05:30 [Information] Request finished in 7167.2201ms 200 application/json; charset=utf-8 +2017-12-14 12:49:45.176 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" completed keep alive response. +2017-12-14 12:49:45.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:45.755 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:45.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:45.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:45.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5465.3856ms +2017-12-14 12:49:45.764 +05:30 [Information] Request finished in 5471.8337ms 200 application/json; charset=utf-8 +2017-12-14 12:49:45.765 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" completed keep alive response. +2017-12-14 12:49:45.820 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:45.820 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:45.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:45.821 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:45.824 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4528.796ms +2017-12-14 12:49:45.827 +05:30 [Information] Request finished in 4534.4619ms 200 application/json; charset=utf-8 +2017-12-14 12:49:45.827 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" completed keep alive response. +2017-12-14 12:49:46.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:49:46.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:46.513 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:46.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:46.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:46.515 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 2392.4478ms +2017-12-14 12:49:46.517 +05:30 [Information] Request finished in 2396.4041ms 200 application/json; charset=utf-8 +2017-12-14 12:49:46.517 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" completed keep alive response. +2017-12-14 12:49:46.544 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:49:46.545 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:49:46.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:49:46.549 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 12:49:46.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 12:49:46.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 12:49:46.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 12:49:46.555 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 12:49:46.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 12:49:46.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:49:46.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:49:46.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:49:46.567 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 12:49:46.568 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 12:49:46.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 12:49:48.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:49:49.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:49.258 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:49.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:49.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:49.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2702.5134ms +2017-12-14 12:49:49.276 +05:30 [Information] Request finished in 2731.5761ms 200 application/json; charset=utf-8 +2017-12-14 12:49:49.276 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" completed keep alive response. +2017-12-14 12:49:49.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 12:49:49.776 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:49:49.777 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:49:49.781 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:49:50.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:50.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:50.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:50.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:50.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3701.1213ms +2017-12-14 12:49:50.253 +05:30 [Information] Request finished in 3711.3195ms 200 application/json; charset=utf-8 +2017-12-14 12:49:50.253 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" completed keep alive response. +2017-12-14 12:49:50.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:50.596 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:50.596 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:50.597 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:50.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4045.1172ms +2017-12-14 12:49:50.601 +05:30 [Information] Request finished in 4058.4053ms 200 application/json; charset=utf-8 +2017-12-14 12:49:50.602 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" completed keep alive response. +2017-12-14 12:49:52.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:52.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:52.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:52.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:52.075 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5501.8665ms +2017-12-14 12:49:52.081 +05:30 [Information] Request finished in 5528.2974ms 200 application/json; charset=utf-8 +2017-12-14 12:49:52.086 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" completed keep alive response. +2017-12-14 12:49:52.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:49:52.133 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:49:52.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:49:52.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:49:52.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 5584.3519ms +2017-12-14 12:49:52.146 +05:30 [Information] Request finished in 5600.5417ms 200 application/json; charset=utf-8 +2017-12-14 12:49:52.146 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" completed keep alive response. +2017-12-14 12:49:53.292 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:49:53.294 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:49:53.994 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:49:53.999 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:50:02.968 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:02.968 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:02.968 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:02.969 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:02.971 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24761.1622ms +2017-12-14 12:50:02.974 +05:30 [Information] Request finished in 24934.4607ms 200 application/json; charset=utf-8 +2017-12-14 12:50:02.974 +05:30 [Debug] Connection id ""0HLA2NGMJCPBD"" completed keep alive response. +2017-12-14 12:50:05.962 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:50:05.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:50:05.964 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:50:08.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:50:09.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:09.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:09.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:09.586 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3615.5037ms +2017-12-14 12:50:09.596 +05:30 [Information] Request finished in 3633.7452ms 200 application/json; charset=utf-8 +2017-12-14 12:50:09.597 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" completed keep alive response. +2017-12-14 12:50:09.617 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 12:50:09.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 12:50:09.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 12:50:12.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 12:50:14.396 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:14.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:14.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:14.418 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4796.457ms +2017-12-14 12:50:14.500 +05:30 [Information] Request finished in 4871.4188ms 200 application/json; charset=utf-8 +2017-12-14 12:50:14.515 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" completed keep alive response. +2017-12-14 12:50:19.515 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 12:50:19.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 12:50:19.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 12:50:19.815 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 12:50:19.816 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 12:50:19.816 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 12:50:19.889 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 12:50:19.890 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 12:50:19.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 12:50:19.935 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 12:50:19.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 12:50:19.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 12:50:22.609 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 12:50:22.612 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 12:50:22.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 12:50:23.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 12:50:23.608 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 12:50:23.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 12:50:26.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:50:26.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:50:26.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:50:26.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:50:26.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:50:26.813 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:50:27.415 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:27.415 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:27.415 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:27.416 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:27.419 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7525.9325ms +2017-12-14 12:50:27.421 +05:30 [Information] Request finished in 7545.8638ms 200 application/json; charset=utf-8 +2017-12-14 12:50:27.422 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" completed keep alive response. +2017-12-14 12:50:27.425 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:50:27.425 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 12:50:27.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 12:50:27.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:27.504 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:27.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:27.505 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:27.507 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3897.0207ms +2017-12-14 12:50:27.509 +05:30 [Information] Request finished in 3901.4422ms 200 application/json; charset=utf-8 +2017-12-14 12:50:27.510 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" completed keep alive response. +2017-12-14 12:50:27.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:27.809 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:27.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:27.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:27.811 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7994.4012ms +2017-12-14 12:50:27.813 +05:30 [Information] Request finished in 8319.1939ms 200 application/json; charset=utf-8 +2017-12-14 12:50:27.814 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" completed keep alive response. +2017-12-14 12:50:27.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:27.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:27.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:27.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:27.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5359.3074ms +2017-12-14 12:50:27.976 +05:30 [Information] Request finished in 5367.2247ms 200 application/json; charset=utf-8 +2017-12-14 12:50:27.977 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" completed keep alive response. +2017-12-14 12:50:28.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:28.076 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:28.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:28.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:28.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 8562.1024ms +2017-12-14 12:50:28.080 +05:30 [Information] Request finished in 8607.545ms 200 application/json; charset=utf-8 +2017-12-14 12:50:28.081 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" completed keep alive response. +2017-12-14 12:50:30.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:50:30.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:30.699 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:30.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:30.700 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:30.703 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3276.036ms +2017-12-14 12:50:30.710 +05:30 [Information] Request finished in 3284.5228ms 200 application/json; charset=utf-8 +2017-12-14 12:50:30.711 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" completed keep alive response. +2017-12-14 12:50:30.765 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 12:50:30.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 12:50:30.767 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 12:50:30.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 12:50:30.768 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 12:50:30.768 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 12:50:30.768 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:50:30.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:50:30.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:50:30.772 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 12:50:30.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 12:50:30.773 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 12:50:33.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:50:33.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 12:50:33.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:50:33.925 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:50:34.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:34.506 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:34.506 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:34.507 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:34.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3736.0593ms +2017-12-14 12:50:34.533 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:50:34.534 +05:30 [Information] Request finished in 3747.4039ms 200 application/json; charset=utf-8 +2017-12-14 12:50:34.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:50:34.552 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" completed keep alive response. +2017-12-14 12:50:34.573 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:50:34.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:34.686 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:34.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:34.687 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:34.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3918.9193ms +2017-12-14 12:50:34.690 +05:30 [Information] Request finished in 3925.7568ms 200 application/json; charset=utf-8 +2017-12-14 12:50:34.690 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" completed keep alive response. +2017-12-14 12:50:34.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:34.794 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:34.795 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:34.797 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:34.801 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4024.5114ms +2017-12-14 12:50:34.804 +05:30 [Information] Request finished in 4038.169ms 200 application/json; charset=utf-8 +2017-12-14 12:50:34.805 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" completed keep alive response. +2017-12-14 12:50:35.231 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:50:35.232 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:50:35.851 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:50:35.852 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:50:36.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:36.069 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:36.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:36.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:36.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 5300.9583ms +2017-12-14 12:50:36.075 +05:30 [Information] Request finished in 5309.86ms 200 application/json; charset=utf-8 +2017-12-14 12:50:36.075 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" completed keep alive response. +2017-12-14 12:50:36.664 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:50:37.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:37.142 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:37.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:37.144 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:37.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2574.2821ms +2017-12-14 12:50:37.160 +05:30 [Information] Request finished in 2648.2061ms 200 application/json; charset=utf-8 +2017-12-14 12:50:37.161 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" completed keep alive response. +2017-12-14 12:50:44.893 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:50:44.894 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:50:44.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:50:44.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:50:44.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24960.4771ms +2017-12-14 12:50:44.901 +05:30 [Information] Request finished in 25010.4433ms 200 application/json; charset=utf-8 +2017-12-14 12:50:44.901 +05:30 [Debug] Connection id ""0HLA2NGMJCPBD"" completed keep alive response. +2017-12-14 12:51:52.850 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" received FIN. +2017-12-14 12:51:52.850 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" received FIN. +2017-12-14 12:51:52.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" received FIN. +2017-12-14 12:51:52.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" received FIN. +2017-12-14 12:51:52.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" disconnecting. +2017-12-14 12:51:52.851 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" received FIN. +2017-12-14 12:51:52.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" disconnecting. +2017-12-14 12:51:52.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" disconnecting. +2017-12-14 12:51:52.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPBD"" received FIN. +2017-12-14 12:51:52.854 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" sending FIN. +2017-12-14 12:51:52.855 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" sent FIN with status "0". +2017-12-14 12:51:52.856 +05:30 [Debug] Connection id ""0HLA2NGMJCPBB"" stopped. +2017-12-14 12:51:52.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" disconnecting. +2017-12-14 12:51:52.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" sending FIN. +2017-12-14 12:51:52.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" sending FIN. +2017-12-14 12:51:52.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" sending FIN. +2017-12-14 12:51:52.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" sent FIN with status "0". +2017-12-14 12:51:52.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPBC"" stopped. +2017-12-14 12:51:52.857 +05:30 [Debug] Connection id ""0HLA2NGMJCPBD"" disconnecting. +2017-12-14 12:51:52.852 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" disconnecting. +2017-12-14 12:51:52.864 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" sent FIN with status "0". +2017-12-14 12:51:52.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" sent FIN with status "0". +2017-12-14 12:51:52.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPBA"" stopped. +2017-12-14 12:51:52.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPBF"" stopped. +2017-12-14 12:51:52.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" sending FIN. +2017-12-14 12:51:52.870 +05:30 [Debug] Connection id ""0HLA2NGMJCPBD"" sending FIN. +2017-12-14 12:51:52.871 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" sent FIN with status "0". +2017-12-14 12:51:52.871 +05:30 [Debug] Connection id ""0HLA2NGMJCPBD"" sent FIN with status "0". +2017-12-14 12:51:52.872 +05:30 [Debug] Connection id ""0HLA2NGMJCPBD"" stopped. +2017-12-14 12:51:52.871 +05:30 [Debug] Connection id ""0HLA2NGMJCPBE"" stopped. +2017-12-14 12:56:12.680 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" started. +2017-12-14 12:56:12.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 12:56:12.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 12:56:12.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 12:56:15.730 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 12:56:17.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:17.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:17.736 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:17.736 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5053.859ms +2017-12-14 12:56:17.738 +05:30 [Information] Request finished in 5057.2356ms 200 application/json; charset=utf-8 +2017-12-14 12:56:17.739 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" completed keep alive response. +2017-12-14 12:56:17.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 12:56:17.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 12:56:17.759 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 12:56:20.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 12:56:22.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:22.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:22.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:22.447 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4682.4717ms +2017-12-14 12:56:22.456 +05:30 [Information] Request finished in 4712.0311ms 200 application/json; charset=utf-8 +2017-12-14 12:56:22.457 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" completed keep alive response. +2017-12-14 12:56:27.432 +05:30 [Debug] Connection id ""0HLA2NGMJCPBH"" started. +2017-12-14 12:56:27.433 +05:30 [Debug] Connection id ""0HLA2NGMJCPBI"" started. +2017-12-14 12:56:27.435 +05:30 [Debug] Connection id ""0HLA2NGMJCPBJ"" started. +2017-12-14 12:56:27.437 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 12:56:27.438 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 12:56:27.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 12:56:27.439 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 12:56:27.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 12:56:27.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 12:56:27.449 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 12:56:27.449 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 12:56:27.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 12:56:27.458 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 12:56:27.458 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 12:56:27.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 12:56:27.616 +05:30 [Debug] Connection id ""0HLA2NGMJCPBK"" started. +2017-12-14 12:56:27.619 +05:30 [Debug] Connection id ""0HLA2NGMJCPBL"" started. +2017-12-14 12:56:27.647 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 12:56:27.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 12:56:27.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 12:56:27.656 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 12:56:27.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 12:56:27.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 12:56:29.548 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:56:30.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:56:30.514 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:56:30.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:56:30.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:56:30.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:56:30.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:30.860 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:30.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:30.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:30.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3412.6088ms +2017-12-14 12:56:30.866 +05:30 [Information] Request finished in 3429.5031ms 200 application/json; charset=utf-8 +2017-12-14 12:56:30.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPBH"" completed keep alive response. +2017-12-14 12:56:30.869 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:56:30.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 12:56:30.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 12:56:33.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:33.454 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:33.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:33.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:33.457 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5996.7381ms +2017-12-14 12:56:33.459 +05:30 [Information] Request finished in 6022.2899ms 200 application/json; charset=utf-8 +2017-12-14 12:56:33.459 +05:30 [Debug] Connection id ""0HLA2NGMJCPBJ"" completed keep alive response. +2017-12-14 12:56:33.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:33.835 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:33.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:33.837 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:33.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6391.8497ms +2017-12-14 12:56:33.842 +05:30 [Information] Request finished in 6408.3322ms 200 application/json; charset=utf-8 +2017-12-14 12:56:33.843 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" completed keep alive response. +2017-12-14 12:56:33.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:56:34.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:34.034 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:34.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:34.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:34.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6377.5412ms +2017-12-14 12:56:34.040 +05:30 [Information] Request finished in 6416.2016ms 200 application/json; charset=utf-8 +2017-12-14 12:56:34.040 +05:30 [Debug] Connection id ""0HLA2NGMJCPBL"" completed keep alive response. +2017-12-14 12:56:34.105 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:34.105 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:34.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:34.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:34.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6457.4934ms +2017-12-14 12:56:34.111 +05:30 [Information] Request finished in 6487.8708ms 200 application/json; charset=utf-8 +2017-12-14 12:56:34.112 +05:30 [Debug] Connection id ""0HLA2NGMJCPBK"" completed keep alive response. +2017-12-14 12:56:34.172 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:34.173 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:34.173 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:34.174 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:34.179 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3304.7427ms +2017-12-14 12:56:34.186 +05:30 [Information] Request finished in 3313.858ms 200 application/json; charset=utf-8 +2017-12-14 12:56:34.187 +05:30 [Debug] Connection id ""0HLA2NGMJCPBH"" completed keep alive response. +2017-12-14 12:56:34.258 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 12:56:34.259 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 12:56:34.259 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:56:34.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 12:56:34.260 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:56:34.261 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:56:34.261 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 12:56:34.264 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 12:56:34.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 12:56:34.271 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 12:56:34.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 12:56:34.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 12:56:34.278 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 12:56:34.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 12:56:34.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 12:56:37.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 12:56:37.381 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:56:37.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 12:56:37.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:56:38.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:38.189 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:38.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:38.190 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:38.192 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3930.0528ms +2017-12-14 12:56:38.194 +05:30 [Information] Request finished in 3937.651ms 200 application/json; charset=utf-8 +2017-12-14 12:56:38.194 +05:30 [Debug] Connection id ""0HLA2NGMJCPBJ"" completed keep alive response. +2017-12-14 12:56:39.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:39.525 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:39.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:39.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:39.528 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5266.3842ms +2017-12-14 12:56:39.530 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:39.531 +05:30 [Information] Request finished in 5272.2927ms 200 application/json; charset=utf-8 +2017-12-14 12:56:39.531 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:39.531 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:39.531 +05:30 [Debug] Connection id ""0HLA2NGMJCPBH"" completed keep alive response. +2017-12-14 12:56:39.532 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:39.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5262.9927ms +2017-12-14 12:56:39.540 +05:30 [Information] Request finished in 5281.4059ms 200 application/json; charset=utf-8 +2017-12-14 12:56:39.540 +05:30 [Debug] Connection id ""0HLA2NGMJCPBK"" completed keep alive response. +2017-12-14 12:56:39.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:39.731 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:39.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:39.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:39.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5453.6357ms +2017-12-14 12:56:39.736 +05:30 [Information] Request finished in 5477.3472ms 200 application/json; charset=utf-8 +2017-12-14 12:56:39.736 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" completed keep alive response. +2017-12-14 12:56:41.046 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:56:41.048 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:56:41.449 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 12:56:41.628 +05:30 [Fatal] Sequence contains no elements +2017-12-14 12:56:41.629 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 12:56:44.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:44.260 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:44.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:44.262 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:44.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 9991.3978ms +2017-12-14 12:56:44.266 +05:30 [Information] Request finished in 10008.5212ms 200 application/json; charset=utf-8 +2017-12-14 12:56:44.267 +05:30 [Debug] Connection id ""0HLA2NGMJCPBL"" completed keep alive response. +2017-12-14 12:56:50.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 12:56:50.396 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 12:56:50.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 12:56:50.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 12:56:50.399 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 22958.8692ms +2017-12-14 12:56:50.401 +05:30 [Information] Request finished in 22965.9602ms 200 application/json; charset=utf-8 +2017-12-14 12:56:50.401 +05:30 [Debug] Connection id ""0HLA2NGMJCPBI"" completed keep alive response. +2017-12-14 12:59:12.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPBJ"" received FIN. +2017-12-14 12:59:12.861 +05:30 [Debug] Connection id ""0HLA2NGMJCPBK"" received FIN. +2017-12-14 12:59:12.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" received FIN. +2017-12-14 12:59:12.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPBJ"" disconnecting. +2017-12-14 12:59:12.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPBK"" disconnecting. +2017-12-14 12:59:12.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPBI"" received FIN. +2017-12-14 12:59:12.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" disconnecting. +2017-12-14 12:59:12.863 +05:30 [Debug] Connection id ""0HLA2NGMJCPBK"" sending FIN. +2017-12-14 12:59:12.864 +05:30 [Debug] Connection id ""0HLA2NGMJCPBI"" disconnecting. +2017-12-14 12:59:12.864 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" sending FIN. +2017-12-14 12:59:12.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPBI"" sending FIN. +2017-12-14 12:59:12.862 +05:30 [Debug] Connection id ""0HLA2NGMJCPBH"" received FIN. +2017-12-14 12:59:12.865 +05:30 [Debug] Connection id ""0HLA2NGMJCPBI"" sent FIN with status "0". +2017-12-14 12:59:12.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPBL"" received FIN. +2017-12-14 12:59:12.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPBI"" stopped. +2017-12-14 12:59:12.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPBJ"" sending FIN. +2017-12-14 12:59:12.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" sent FIN with status "0". +2017-12-14 12:59:12.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPBJ"" sent FIN with status "0". +2017-12-14 12:59:12.866 +05:30 [Debug] Connection id ""0HLA2NGMJCPBH"" disconnecting. +2017-12-14 12:59:12.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPBG"" stopped. +2017-12-14 12:59:12.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPBL"" disconnecting. +2017-12-14 12:59:12.868 +05:30 [Debug] Connection id ""0HLA2NGMJCPBK"" sent FIN with status "0". +2017-12-14 12:59:12.869 +05:30 [Debug] Connection id ""0HLA2NGMJCPBK"" stopped. +2017-12-14 12:59:12.867 +05:30 [Debug] Connection id ""0HLA2NGMJCPBJ"" stopped. +2017-12-14 12:59:12.870 +05:30 [Debug] Connection id ""0HLA2NGMJCPBH"" sending FIN. +2017-12-14 12:59:12.870 +05:30 [Debug] Connection id ""0HLA2NGMJCPBL"" sending FIN. +2017-12-14 12:59:12.870 +05:30 [Debug] Connection id ""0HLA2NGMJCPBL"" sent FIN with status "0". +2017-12-14 12:59:12.871 +05:30 [Debug] Connection id ""0HLA2NGMJCPBL"" stopped. +2017-12-14 12:59:12.871 +05:30 [Debug] Connection id ""0HLA2NGMJCPBH"" sent FIN with status "0". +2017-12-14 12:59:12.872 +05:30 [Debug] Connection id ""0HLA2NGMJCPBH"" stopped. +2017-12-14 15:32:54.960 +05:30 [Debug] Connection id ""0HLA2NGMJCPBM"" started. +2017-12-14 15:32:55.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 15:32:55.271 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 15:32:55.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 15:33:01.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 15:33:07.566 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:33:07.585 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:33:07.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:33:07.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:33:07.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 12290.9289ms +2017-12-14 15:33:07.623 +05:30 [Information] Request finished in 12474.4732ms 200 application/json; charset=utf-8 +2017-12-14 15:33:07.623 +05:30 [Debug] Connection id ""0HLA2NGMJCPBM"" completed keep alive response. +2017-12-14 15:34:21.117 +05:30 [Debug] Connection id ""0HLA2NGMJCPBM"" received FIN. +2017-12-14 15:34:21.117 +05:30 [Debug] Connection id ""0HLA2NGMJCPBM"" disconnecting. +2017-12-14 15:34:21.118 +05:30 [Debug] Connection id ""0HLA2NGMJCPBM"" sending FIN. +2017-12-14 15:34:21.119 +05:30 [Debug] Connection id ""0HLA2NGMJCPBM"" sent FIN with status "0". +2017-12-14 15:34:21.119 +05:30 [Debug] Connection id ""0HLA2NGMJCPBM"" stopped. +2017-12-14 15:36:36.719 +05:30 [Debug] Connection id ""0HLA2NGMJCPBN"" started. +2017-12-14 15:36:36.754 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-14 15:36:36.755 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-14 15:36:36.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-14 15:36:40.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-14 15:36:46.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:36:46.419 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:36:46.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:36:46.420 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:36:47.120 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 10260.8159ms +2017-12-14 15:36:47.153 +05:30 [Information] Request finished in 10369.6907ms 200 application/json; charset=utf-8 +2017-12-14 15:36:47.153 +05:30 [Debug] Connection id ""0HLA2NGMJCPBN"" completed keep alive response. +2017-12-14 15:38:01.107 +05:30 [Debug] Connection id ""0HLA2NGMJCPBN"" received FIN. +2017-12-14 15:38:01.108 +05:30 [Debug] Connection id ""0HLA2NGMJCPBN"" disconnecting. +2017-12-14 15:38:01.108 +05:30 [Debug] Connection id ""0HLA2NGMJCPBN"" sending FIN. +2017-12-14 15:38:01.108 +05:30 [Debug] Connection id ""0HLA2NGMJCPBN"" sent FIN with status "0". +2017-12-14 15:38:01.109 +05:30 [Debug] Connection id ""0HLA2NGMJCPBN"" stopped. +2017-12-14 15:38:27.250 +05:30 [Debug] Connection id ""0HLA2NGMJCPBO"" started. +2017-12-14 15:38:27.251 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/QuickTopics?networkType=technology&skip=0&count=30 +2017-12-14 15:38:27.252 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/QuickTopics"'. +2017-12-14 15:38:27.272 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" +2017-12-14 15:38:30.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" with arguments (["technology", "0", "30"]) - ModelState is Valid +2017-12-14 15:38:30.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:38:30.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:38:30.520 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:38:30.521 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:38:30.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" in 3279.9152ms +2017-12-14 15:38:30.562 +05:30 [Information] Request finished in 3310.9227ms 200 application/json; charset=utf-8 +2017-12-14 15:38:30.563 +05:30 [Debug] Connection id ""0HLA2NGMJCPBO"" completed keep alive response. +2017-12-14 15:38:40.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/QuickTopics?networkType=sport&skip=30&count=30 +2017-12-14 15:38:40.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/QuickTopics"'. +2017-12-14 15:38:40.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" +2017-12-14 15:38:43.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" with arguments (["sport", "30", "30"]) - ModelState is Valid +2017-12-14 15:38:43.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:38:43.560 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:38:43.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:38:43.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:38:43.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" in 3295.0041ms +2017-12-14 15:38:43.607 +05:30 [Information] Request finished in 3313.3638ms 200 application/json; charset=utf-8 +2017-12-14 15:38:43.608 +05:30 [Debug] Connection id ""0HLA2NGMJCPBO"" completed keep alive response. +2017-12-14 15:39:51.118 +05:30 [Debug] Connection id ""0HLA2NGMJCPBO"" received FIN. +2017-12-14 15:39:51.118 +05:30 [Debug] Connection id ""0HLA2NGMJCPBO"" disconnecting. +2017-12-14 15:39:51.118 +05:30 [Debug] Connection id ""0HLA2NGMJCPBO"" sending FIN. +2017-12-14 15:39:51.119 +05:30 [Debug] Connection id ""0HLA2NGMJCPBO"" sent FIN with status "0". +2017-12-14 15:39:51.119 +05:30 [Debug] Connection id ""0HLA2NGMJCPBO"" stopped. +2017-12-14 15:50:35.558 +05:30 [Debug] Connection id ""0HLA2NGMJCPBP"" started. +2017-12-14 15:50:35.568 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/QuickTopics?networkType=politics&skip=30&count=30 +2017-12-14 15:50:35.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/QuickTopics"'. +2017-12-14 15:50:35.569 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" +2017-12-14 15:50:38.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" with arguments (["politics", "30", "30"]) - ModelState is Valid +2017-12-14 15:50:42.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:50:42.707 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:50:42.708 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:50:42.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:50:42.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" in 7203.2484ms +2017-12-14 15:50:42.777 +05:30 [Information] Request finished in 7209.6645ms 200 application/json; charset=utf-8 +2017-12-14 15:50:42.777 +05:30 [Debug] Connection id ""0HLA2NGMJCPBP"" completed keep alive response. +2017-12-14 15:51:32.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/QuickTopics?networkType=business&skip=30&count=30 +2017-12-14 15:51:32.366 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/QuickTopics"'. +2017-12-14 15:51:32.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" +2017-12-14 15:51:35.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" with arguments (["business", "30", "30"]) - ModelState is Valid +2017-12-14 15:51:35.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:51:35.658 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:51:35.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:51:35.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:51:35.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" in 3313.8857ms +2017-12-14 15:51:35.685 +05:30 [Information] Request finished in 3318.687ms 200 application/json; charset=utf-8 +2017-12-14 15:51:35.687 +05:30 [Debug] Connection id ""0HLA2NGMJCPBP"" completed keep alive response. +2017-12-14 15:52:41.117 +05:30 [Debug] Connection id ""0HLA2NGMJCPBP"" received FIN. +2017-12-14 15:52:41.117 +05:30 [Debug] Connection id ""0HLA2NGMJCPBP"" disconnecting. +2017-12-14 15:52:41.117 +05:30 [Debug] Connection id ""0HLA2NGMJCPBP"" sending FIN. +2017-12-14 15:52:41.118 +05:30 [Debug] Connection id ""0HLA2NGMJCPBP"" sent FIN with status "0". +2017-12-14 15:52:41.118 +05:30 [Debug] Connection id ""0HLA2NGMJCPBP"" stopped. +2017-12-14 15:52:47.700 +05:30 [Debug] Connection id ""0HLA2NGMJCPBQ"" started. +2017-12-14 15:52:47.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetYTAdvanceSearchData?network=youtube&skip=30&count=30 +2017-12-14 15:52:47.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetYTAdvanceSearchData"'. +2017-12-14 15:52:47.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-12-14 15:52:50.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["youtube", "30", "30"]) - ModelState is Valid +2017-12-14 15:52:52.338 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:52:52.338 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:52:52.339 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:52:52.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:52:52.374 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetYTAdvanceSearchData (Api.Socioboard)" in 4670.5838ms +2017-12-14 15:52:52.380 +05:30 [Information] Request finished in 4679.1906ms 200 application/json; charset=utf-8 +2017-12-14 15:52:52.381 +05:30 [Debug] Connection id ""0HLA2NGMJCPBQ"" completed keep alive response. +2017-12-14 15:52:55.533 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=30&count=30 +2017-12-14 15:52:55.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-14 15:52:55.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-14 15:52:57.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "30", "30"]) - ModelState is Valid +2017-12-14 15:53:04.301 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:53:04.301 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:53:04.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:53:04.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:53:04.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 8789.9839ms +2017-12-14 15:53:04.329 +05:30 [Information] Request finished in 8795.9712ms 200 application/json; charset=utf-8 +2017-12-14 15:53:04.330 +05:30 [Debug] Connection id ""0HLA2NGMJCPBQ"" completed keep alive response. +2017-12-14 15:53:09.356 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/QuickTopics?networkType=science_and_nature&skip=30&count=30 +2017-12-14 15:53:09.373 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/QuickTopics"'. +2017-12-14 15:53:09.373 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" +2017-12-14 15:53:12.402 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" with arguments (["science_and_nature", "30", "30"]) - ModelState is Valid +2017-12-14 15:53:12.644 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:53:12.645 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:53:12.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:53:12.647 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:53:12.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" in 3325.8641ms +2017-12-14 15:53:12.703 +05:30 [Information] Request finished in 3347.9183ms 200 application/json; charset=utf-8 +2017-12-14 15:53:12.704 +05:30 [Debug] Connection id ""0HLA2NGMJCPBQ"" completed keep alive response. +2017-12-14 15:54:31.107 +05:30 [Debug] Connection id ""0HLA2NGMJCPBQ"" received FIN. +2017-12-14 15:54:31.107 +05:30 [Debug] Connection id ""0HLA2NGMJCPBQ"" disconnecting. +2017-12-14 15:54:31.107 +05:30 [Debug] Connection id ""0HLA2NGMJCPBQ"" sending FIN. +2017-12-14 15:54:31.108 +05:30 [Debug] Connection id ""0HLA2NGMJCPBQ"" sent FIN with status "0". +2017-12-14 15:54:31.108 +05:30 [Debug] Connection id ""0HLA2NGMJCPBQ"" stopped. +2017-12-14 15:57:17.893 +05:30 [Debug] Hosting starting +2017-12-14 15:57:18.309 +05:30 [Debug] Hosting started +2017-12-14 15:57:18.500 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" started. +2017-12-14 15:57:18.521 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" started. +2017-12-14 15:57:18.819 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-14 15:57:18.822 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-14 15:57:18.965 +05:30 [Information] Request finished in 158.9566ms 200 +2017-12-14 15:57:19.057 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" completed keep alive response. +2017-12-14 15:57:20.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-14 15:57:20.685 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"9d8c4dba-458b-4c84-81d9-65f59f3a2839"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-14 15:57:20.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-14 15:57:21.058 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-14 15:57:21.060 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-14 15:57:21.107 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 15:57:21.113 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:57:21.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:57:21.482 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 15:57:21.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 15:57:21.486 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 15:57:21.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 987.9795ms +2017-12-14 15:57:22.131 +05:30 [Information] Request finished in 3386.3085ms 200 application/json; charset=utf-8 +2017-12-14 15:57:22.134 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" completed keep alive response. +2017-12-14 15:57:22.655 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-14 15:57:22.659 +05:30 [Debug] Request did not match any routes. +2017-12-14 15:57:22.677 +05:30 [Debug] The request path "" does not match the path filter +2017-12-14 15:57:22.679 +05:30 [Information] Request finished in 25.7113ms 404 +2017-12-14 15:57:22.679 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" completed keep alive response. +2017-12-14 15:57:25.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 15:57:34.564 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:57:34.577 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:57:34.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:57:34.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13096.3358ms +2017-12-14 15:57:34.592 +05:30 [Information] Request finished in 13111.9537ms 200 application/json; charset=utf-8 +2017-12-14 15:57:34.593 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" completed keep alive response. +2017-12-14 15:57:47.889 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 15:57:47.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 15:57:47.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 15:57:50.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 15:57:51.461 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:57:51.462 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:57:51.465 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:57:51.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3574.7757ms +2017-12-14 15:57:51.480 +05:30 [Information] Request finished in 3590.8597ms 200 application/json; charset=utf-8 +2017-12-14 15:57:51.481 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" completed keep alive response. +2017-12-14 15:57:51.874 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 15:57:51.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 15:57:51.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 15:57:53.660 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 15:57:53.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 15:57:53.664 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 15:57:54.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 15:57:55.460 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:57:55.461 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:57:55.462 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:57:55.463 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3586.7177ms +2017-12-14 15:57:55.466 +05:30 [Information] Request finished in 3593.7126ms 200 application/json; charset=utf-8 +2017-12-14 15:57:55.467 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" completed keep alive response. +2017-12-14 15:57:55.515 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 15:57:55.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 15:57:55.517 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 15:57:56.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 15:57:57.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:57:57.241 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:57:57.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:57:57.247 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3581.0857ms +2017-12-14 15:57:57.250 +05:30 [Information] Request finished in 3589.8847ms 200 application/json; charset=utf-8 +2017-12-14 15:57:57.250 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" completed keep alive response. +2017-12-14 15:57:58.620 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 15:57:59.145 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:57:59.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:57:59.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:57:59.155 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3636.715ms +2017-12-14 15:57:59.167 +05:30 [Information] Request finished in 3648.8051ms 200 application/json; charset=utf-8 +2017-12-14 15:57:59.168 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" completed keep alive response. +2017-12-14 15:59:03.303 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" received FIN. +2017-12-14 15:59:03.303 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" received FIN. +2017-12-14 15:59:03.304 +05:30 [Debug] Connection id ""0HLA2RL0CFBDI"" started. +2017-12-14 15:59:03.308 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" disconnecting. +2017-12-14 15:59:03.309 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" disconnecting. +2017-12-14 15:59:03.310 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" sending FIN. +2017-12-14 15:59:03.310 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" sending FIN. +2017-12-14 15:59:03.313 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 15:59:03.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 15:59:03.316 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 15:59:03.329 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" sent FIN with status "0". +2017-12-14 15:59:03.329 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" sent FIN with status "0". +2017-12-14 15:59:03.334 +05:30 [Debug] Connection id ""0HLA2RL0CFBDH"" stopped. +2017-12-14 15:59:03.334 +05:30 [Debug] Connection id ""0HLA2RL0CFBDG"" stopped. +2017-12-14 15:59:05.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 15:59:05.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 15:59:05.968 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 15:59:05.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 15:59:05.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2656.6487ms +2017-12-14 15:59:05.987 +05:30 [Information] Request finished in 2679.7501ms 200 application/json; charset=utf-8 +2017-12-14 15:59:05.988 +05:30 [Debug] Connection id ""0HLA2RL0CFBDI"" completed keep alive response. +2017-12-14 16:00:58.667 +05:30 [Debug] Connection id ""0HLA2RL0CFBDI"" received FIN. +2017-12-14 16:00:58.667 +05:30 [Debug] Connection id ""0HLA2RL0CFBDI"" disconnecting. +2017-12-14 16:00:58.668 +05:30 [Debug] Connection id ""0HLA2RL0CFBDI"" sending FIN. +2017-12-14 16:00:58.668 +05:30 [Debug] Connection id ""0HLA2RL0CFBDI"" sent FIN with status "0". +2017-12-14 16:00:58.668 +05:30 [Debug] Connection id ""0HLA2RL0CFBDI"" stopped. +2017-12-14 16:04:15.599 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" started. +2017-12-14 16:04:15.605 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:04:15.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:04:15.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:04:17.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:04:19.728 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:19.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:19.735 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:19.740 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4131.7335ms +2017-12-14 16:04:19.743 +05:30 [Information] Request finished in 4138.3738ms 200 application/json; charset=utf-8 +2017-12-14 16:04:19.744 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:04:21.950 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:04:21.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:04:21.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:04:25.011 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:04:25.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:25.547 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:25.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:25.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3597.877ms +2017-12-14 16:04:25.555 +05:30 [Information] Request finished in 3609.1314ms 200 application/json; charset=utf-8 +2017-12-14 16:04:25.556 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:04:25.576 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-14 16:04:25.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-14 16:04:25.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-14 16:04:28.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-14 16:04:30.850 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:30.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:30.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:31.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5477.5416ms +2017-12-14 16:04:31.061 +05:30 [Information] Request finished in 5484.4675ms 200 application/json; charset=utf-8 +2017-12-14 16:04:31.062 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:04:31.402 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:04:31.402 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:04:31.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:04:33.485 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:04:34.018 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:34.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:34.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:34.020 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2617.4668ms +2017-12-14 16:04:34.023 +05:30 [Information] Request finished in 2620.9584ms 200 application/json; charset=utf-8 +2017-12-14 16:04:34.024 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:04:34.071 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-14 16:04:34.072 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 16:04:34.073 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 16:04:37.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-14 16:04:38.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:38.907 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:38.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:39.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4929.3505ms +2017-12-14 16:04:39.007 +05:30 [Information] Request finished in 4936.7646ms 200 application/json; charset=utf-8 +2017-12-14 16:04:39.007 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:04:41.649 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 16:04:41.649 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 16:04:41.651 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 16:04:41.661 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" started. +2017-12-14 16:04:41.662 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" started. +2017-12-14 16:04:41.663 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" started. +2017-12-14 16:04:41.664 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 16:04:41.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 16:04:41.666 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 16:04:41.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 16:04:41.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 16:04:41.698 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 16:04:41.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 16:04:41.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 16:04:41.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 16:04:41.920 +05:30 [Debug] Connection id ""0HLA2RL0CFBDN"" started. +2017-12-14 16:04:41.920 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" started. +2017-12-14 16:04:41.929 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 16:04:41.931 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 16:04:41.932 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 16:04:41.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 16:04:41.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 16:04:41.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 16:04:44.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:04:44.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:04:44.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:04:44.898 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:04:45.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:04:45.058 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:04:45.413 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:45.414 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:04:45.414 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:45.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:45.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3800.3582ms +2017-12-14 16:04:45.494 +05:30 [Information] Request finished in 3832.9164ms 200 application/json; charset=utf-8 +2017-12-14 16:04:45.494 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:04:45.528 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 16:04:45.528 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 16:04:45.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 16:04:47.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:47.245 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:04:47.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:47.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:47.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5554.9813ms +2017-12-14 16:04:47.278 +05:30 [Information] Request finished in 5610.8756ms 200 application/json; charset=utf-8 +2017-12-14 16:04:47.280 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" completed keep alive response. +2017-12-14 16:04:47.639 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:47.639 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:04:47.639 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:47.640 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:47.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5706.5278ms +2017-12-14 16:04:47.645 +05:30 [Information] Request finished in 5713.8552ms 200 application/json; charset=utf-8 +2017-12-14 16:04:47.647 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" completed keep alive response. +2017-12-14 16:04:47.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:47.858 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:04:47.858 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:47.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:47.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6158.1047ms +2017-12-14 16:04:47.869 +05:30 [Information] Request finished in 6206.3551ms 200 application/json; charset=utf-8 +2017-12-14 16:04:47.870 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" completed keep alive response. +2017-12-14 16:04:47.906 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:47.906 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:04:47.907 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:47.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:47.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5969.5153ms +2017-12-14 16:04:47.916 +05:30 [Information] Request finished in 5994.8192ms 200 application/json; charset=utf-8 +2017-12-14 16:04:47.919 +05:30 [Debug] Connection id ""0HLA2RL0CFBDN"" completed keep alive response. +2017-12-14 16:04:48.579 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:04:51.063 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:04:51.064 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:04:51.064 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:04:51.065 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:04:51.121 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5584.5718ms +2017-12-14 16:04:51.125 +05:30 [Information] Request finished in 5611.738ms 200 application/json; charset=utf-8 +2017-12-14 16:04:51.125 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:04:55.417 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:04:55.531 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:04:56.151 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:04:56.156 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:05:05.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:05.164 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:05.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:05.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:05.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23500.2203ms +2017-12-14 16:05:05.194 +05:30 [Information] Request finished in 23530.8925ms 200 application/json; charset=utf-8 +2017-12-14 16:05:05.194 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" completed keep alive response. +2017-12-14 16:05:06.361 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:05:06.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:05:06.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:05:09.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:05:09.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:09.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:09.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:09.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3617.7921ms +2017-12-14 16:05:09.984 +05:30 [Information] Request finished in 3623.027ms 200 application/json; charset=utf-8 +2017-12-14 16:05:09.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" completed keep alive response. +2017-12-14 16:05:09.997 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 16:05:09.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 16:05:09.998 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 16:05:13.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 16:05:14.827 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:14.828 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:14.829 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:14.831 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4832.0194ms +2017-12-14 16:05:14.837 +05:30 [Information] Request finished in 4840.3507ms 200 application/json; charset=utf-8 +2017-12-14 16:05:14.837 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" completed keep alive response. +2017-12-14 16:05:18.293 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:05:18.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:05:18.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:05:20.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 16:05:20.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 16:05:20.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 16:05:20.166 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 16:05:20.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 16:05:20.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 16:05:20.185 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 16:05:20.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 16:05:20.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 16:05:20.722 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" started. +2017-12-14 16:05:22.764 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 16:05:22.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 16:05:22.764 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 16:05:23.766 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 16:05:23.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 16:05:23.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 16:05:24.764 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 16:05:24.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 16:05:24.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 16:05:25.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:05:26.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:26.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:26.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:26.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8142.555ms +2017-12-14 16:05:26.444 +05:30 [Information] Request finished in 8156.0844ms 200 application/json; charset=utf-8 +2017-12-14 16:05:26.444 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" completed keep alive response. +2017-12-14 16:05:26.452 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 16:05:26.453 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 16:05:26.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 16:05:27.833 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:27.919 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:28.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:28.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:28.075 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:28.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:28.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:28.447 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:28.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:28.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:28.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8264.8584ms +2017-12-14 16:05:28.460 +05:30 [Information] Request finished in 8339.4953ms 200 application/json; charset=utf-8 +2017-12-14 16:05:28.460 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:05:28.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 16:05:28.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 16:05:28.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 16:05:28.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:28.794 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:28.795 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:28.797 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:28.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6033.3446ms +2017-12-14 16:05:28.809 +05:30 [Information] Request finished in 6045.2298ms 200 application/json; charset=utf-8 +2017-12-14 16:05:28.809 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" completed keep alive response. +2017-12-14 16:05:29.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:29.204 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:29.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:29.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:29.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 9038.0433ms +2017-12-14 16:05:29.209 +05:30 [Information] Request finished in 9086.1631ms 200 application/json; charset=utf-8 +2017-12-14 16:05:29.210 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" completed keep alive response. +2017-12-14 16:05:29.213 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:29.214 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:29.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:29.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:29.216 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5447.4053ms +2017-12-14 16:05:29.218 +05:30 [Information] Request finished in 5452.4483ms 200 application/json; charset=utf-8 +2017-12-14 16:05:29.219 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" completed keep alive response. +2017-12-14 16:05:29.301 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:29.301 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:29.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:29.302 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:29.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4537.2265ms +2017-12-14 16:05:29.306 +05:30 [Information] Request finished in 4541.9787ms 200 application/json; charset=utf-8 +2017-12-14 16:05:29.307 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" completed keep alive response. +2017-12-14 16:05:29.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 16:05:31.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:31.204 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:31.204 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:31.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4751.4629ms +2017-12-14 16:05:31.208 +05:30 [Information] Request finished in 4755.8935ms 200 application/json; charset=utf-8 +2017-12-14 16:05:31.209 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" completed keep alive response. +2017-12-14 16:05:31.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:34.123 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:34.124 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:34.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:34.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:34.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5660.6318ms +2017-12-14 16:05:34.152 +05:30 [Information] Request finished in 5684.6099ms 200 application/json; charset=utf-8 +2017-12-14 16:05:34.153 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:05:36.535 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 16:05:36.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 16:05:36.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 16:05:36.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 16:05:36.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 16:05:36.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 16:05:36.660 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:05:36.664 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:05:36.719 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 16:05:36.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 16:05:36.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 16:05:36.851 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 16:05:36.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 16:05:36.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 16:05:36.881 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 16:05:36.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 16:05:36.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 16:05:37.245 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:05:37.246 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:05:39.097 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:39.632 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:39.633 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:39.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:39.634 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:39.635 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2914.5232ms +2017-12-14 16:05:39.637 +05:30 [Information] Request finished in 2928.7074ms 200 application/json; charset=utf-8 +2017-12-14 16:05:39.637 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" completed keep alive response. +2017-12-14 16:05:39.647 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 16:05:39.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 16:05:39.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 16:05:39.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:39.772 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:40.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:40.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:40.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:40.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:40.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:40.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:40.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4336.4832ms +2017-12-14 16:05:40.875 +05:30 [Information] Request finished in 4352.361ms 200 application/json; charset=utf-8 +2017-12-14 16:05:40.876 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" completed keep alive response. +2017-12-14 16:05:40.878 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-14 16:05:40.879 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-14 16:05:40.881 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-14 16:05:40.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:40.992 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:40.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:40.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:40.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4436.7536ms +2017-12-14 16:05:41.001 +05:30 [Information] Request finished in 4478.3487ms 200 application/json; charset=utf-8 +2017-12-14 16:05:41.003 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" completed keep alive response. +2017-12-14 16:05:41.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:41.201 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:41.202 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:41.204 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:41.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4351.9794ms +2017-12-14 16:05:41.209 +05:30 [Information] Request finished in 4493.6683ms 200 application/json; charset=utf-8 +2017-12-14 16:05:41.210 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" completed keep alive response. +2017-12-14 16:05:42.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:05:43.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-14 16:05:43.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:43.361 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:43.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:43.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:43.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3715.075ms +2017-12-14 16:05:43.366 +05:30 [Information] Request finished in 3720.2912ms 200 application/json; charset=utf-8 +2017-12-14 16:05:43.367 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:05:46.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:46.374 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:46.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:46.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:46.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26243.3784ms +2017-12-14 16:05:46.379 +05:30 [Information] Request finished in 26264.8186ms 200 application/json; charset=utf-8 +2017-12-14 16:05:46.380 +05:30 [Debug] Connection id ""0HLA2RL0CFBDN"" completed keep alive response. +2017-12-14 16:05:48.762 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:05:48.764 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:05:48.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:48.777 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:48.778 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:48.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:48.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 7931.4787ms +2017-12-14 16:05:48.816 +05:30 [Information] Request finished in 7937.8497ms 200 application/json; charset=utf-8 +2017-12-14 16:05:48.817 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" completed keep alive response. +2017-12-14 16:05:49.379 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:05:49.408 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:05:58.497 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:05:58.498 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:05:58.498 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:05:58.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:05:58.504 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 21617.0876ms +2017-12-14 16:05:58.535 +05:30 [Information] Request finished in 21815.1588ms 200 application/json; charset=utf-8 +2017-12-14 16:05:58.535 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" completed keep alive response. +2017-12-14 16:06:07.032 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:06:07.032 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 16:06:07.033 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 16:06:10.122 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:06:10.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:06:10.538 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:06:10.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:06:10.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:06:10.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3533.0587ms +2017-12-14 16:06:10.571 +05:30 [Information] Request finished in 3538.4145ms 200 application/json; charset=utf-8 +2017-12-14 16:06:10.571 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" completed keep alive response. +2017-12-14 16:06:10.604 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:06:10.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:06:10.608 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 16:06:10.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:06:10.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 16:06:10.610 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 16:06:10.636 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:06:10.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 16:06:10.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:06:10.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:06:10.638 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 16:06:10.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 16:06:11.162 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 16:06:11.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 16:06:11.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 16:06:14.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:06:14.307 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:06:14.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:06:14.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:06:14.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 16:06:15.850 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:06:15.850 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:06:15.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:06:15.866 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:06:15.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5250.586ms +2017-12-14 16:06:15.984 +05:30 [Information] Request finished in 5376.5151ms 200 application/json; charset=utf-8 +2017-12-14 16:06:15.985 +05:30 [Debug] Connection id ""0HLA2RL0CFBDN"" completed keep alive response. +2017-12-14 16:06:16.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:06:16.810 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:06:16.810 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:06:16.811 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:06:16.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6203.7286ms +2017-12-14 16:06:16.816 +05:30 [Information] Request finished in 6215.132ms 200 application/json; charset=utf-8 +2017-12-14 16:06:16.816 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" completed keep alive response. +2017-12-14 16:06:17.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:06:17.146 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:06:17.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:06:17.148 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:06:17.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 6511.4452ms +2017-12-14 16:06:17.152 +05:30 [Information] Request finished in 6549.6752ms 200 application/json; charset=utf-8 +2017-12-14 16:06:17.153 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" completed keep alive response. +2017-12-14 16:06:17.226 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:06:17.226 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:06:17.226 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:06:17.228 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:06:17.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 6073.3138ms +2017-12-14 16:06:17.242 +05:30 [Information] Request finished in 6079.6353ms 200 application/json; charset=utf-8 +2017-12-14 16:06:17.243 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" completed keep alive response. +2017-12-14 16:06:19.740 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:06:19.740 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:06:19.740 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:06:19.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:06:19.759 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 9115.6771ms +2017-12-14 16:06:19.765 +05:30 [Information] Request finished in 9159.1127ms 200 application/json; charset=utf-8 +2017-12-14 16:06:19.766 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" completed keep alive response. +2017-12-14 16:08:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" received FIN. +2017-12-14 16:08:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDN"" received FIN. +2017-12-14 16:08:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" disconnecting. +2017-12-14 16:08:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" received FIN. +2017-12-14 16:08:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDN"" disconnecting. +2017-12-14 16:08:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" received FIN. +2017-12-14 16:08:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" received FIN. +2017-12-14 16:08:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" sending FIN. +2017-12-14 16:08:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" received FIN. +2017-12-14 16:08:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" sent FIN with status "0". +2017-12-14 16:08:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" disconnecting. +2017-12-14 16:08:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDO"" stopped. +2017-12-14 16:08:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" disconnecting. +2017-12-14 16:08:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" disconnecting. +2017-12-14 16:08:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" sending FIN. +2017-12-14 16:08:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" received FIN. +2017-12-14 16:08:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" disconnecting. +2017-12-14 16:08:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" sent FIN with status "0". +2017-12-14 16:08:18.983 +05:30 [Debug] Connection id ""0HLA2RL0CFBDK"" stopped. +2017-12-14 16:08:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDN"" sending FIN. +2017-12-14 16:08:18.983 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" sending FIN. +2017-12-14 16:08:18.983 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" sending FIN. +2017-12-14 16:08:18.983 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" sent FIN with status "0". +2017-12-14 16:08:18.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" sending FIN. +2017-12-14 16:08:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" disconnecting. +2017-12-14 16:08:18.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDM"" stopped. +2017-12-14 16:08:18.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" sent FIN with status "0". +2017-12-14 16:08:18.985 +05:30 [Debug] Connection id ""0HLA2RL0CFBDP"" stopped. +2017-12-14 16:08:18.985 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" sent FIN with status "0". +2017-12-14 16:08:18.986 +05:30 [Debug] Connection id ""0HLA2RL0CFBDL"" stopped. +2017-12-14 16:08:18.986 +05:30 [Debug] Connection id ""0HLA2RL0CFBDN"" sent FIN with status "0". +2017-12-14 16:08:18.986 +05:30 [Debug] Connection id ""0HLA2RL0CFBDN"" stopped. +2017-12-14 16:08:18.986 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" sending FIN. +2017-12-14 16:08:18.986 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" sent FIN with status "0". +2017-12-14 16:08:18.986 +05:30 [Debug] Connection id ""0HLA2RL0CFBDJ"" stopped. +2017-12-14 16:10:26.516 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" started. +2017-12-14 16:10:26.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:10:26.519 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 16:10:26.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 16:10:28.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:10:28.874 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:10:28.875 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:10:28.875 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:10:28.876 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:10:28.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 2356.8399ms +2017-12-14 16:10:28.879 +05:30 [Information] Request finished in 2361.1352ms 200 application/json; charset=utf-8 +2017-12-14 16:10:28.879 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" completed keep alive response. +2017-12-14 16:10:29.127 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" started. +2017-12-14 16:10:29.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:10:29.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:10:29.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:10:29.147 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 16:10:29.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 16:10:29.148 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 16:10:32.194 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:10:32.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 16:10:32.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:10:32.801 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:10:32.801 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:10:32.803 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:10:32.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3673.1499ms +2017-12-14 16:10:32.809 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" started. +2017-12-14 16:10:32.830 +05:30 [Information] Request finished in 3682.6994ms 200 application/json; charset=utf-8 +2017-12-14 16:10:32.830 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:10:32.831 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" completed keep alive response. +2017-12-14 16:10:32.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:10:32.831 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:10:34.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:10:34.553 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:10:34.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:10:34.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:10:34.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5406.4157ms +2017-12-14 16:10:34.560 +05:30 [Information] Request finished in 5428.8922ms 200 application/json; charset=utf-8 +2017-12-14 16:10:34.560 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" completed keep alive response. +2017-12-14 16:10:35.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:10:36.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:10:36.423 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:10:36.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:10:36.423 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:10:36.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3592.7326ms +2017-12-14 16:10:36.430 +05:30 [Information] Request finished in 3617.8596ms 200 application/json; charset=utf-8 +2017-12-14 16:10:36.431 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" completed keep alive response. +2017-12-14 16:10:47.840 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=48 +2017-12-14 16:10:47.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-12-14 16:10:47.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-12-14 16:10:47.849 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=48 +2017-12-14 16:10:47.849 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-12-14 16:10:47.851 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-12-14 16:10:50.913 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:10:52.263 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:10:52.263 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:10:52.263 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:10:52.264 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:10:52.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 4435.8647ms +2017-12-14 16:10:52.289 +05:30 [Information] Request finished in 4453.0837ms 200 application/json; charset=utf-8 +2017-12-14 16:10:52.290 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" completed keep alive response. +2017-12-14 16:10:52.771 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=48 +2017-12-14 16:10:52.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-12-14 16:10:52.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-12-14 16:10:52.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=48 +2017-12-14 16:10:52.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-12-14 16:10:52.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-12-14 16:10:55.023 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:10:55.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:10:55.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:10:58.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:10:58.272 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:10:58.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:10:58.275 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:10:58.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 10433.2526ms +2017-12-14 16:10:58.292 +05:30 [Information] Request finished in 10451.9908ms 200 application/json; charset=utf-8 +2017-12-14 16:10:58.292 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" completed keep alive response. +2017-12-14 16:10:58.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:10:58.647 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:10:58.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:10:58.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:10:58.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:10:58.776 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:10:58.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:10:58.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:10:58.817 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 6010.5475ms +2017-12-14 16:10:58.830 +05:30 [Information] Request finished in 6051.1389ms 200 application/json; charset=utf-8 +2017-12-14 16:10:58.830 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" completed keep alive response. +2017-12-14 16:10:59.369 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 6589.017ms +2017-12-14 16:10:59.372 +05:30 [Information] Request finished in 6604.731ms 200 application/json; charset=utf-8 +2017-12-14 16:10:59.373 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" completed keep alive response. +2017-12-14 16:11:54.869 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:11:54.870 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 16:11:54.871 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 16:11:57.938 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:11:58.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:11:58.216 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:11:58.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:11:58.217 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:11:58.224 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3346.7993ms +2017-12-14 16:11:58.227 +05:30 [Information] Request finished in 3360.6612ms 200 application/json; charset=utf-8 +2017-12-14 16:11:58.227 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" completed keep alive response. +2017-12-14 16:11:58.504 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 16:11:58.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 16:11:58.506 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 16:11:58.512 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:11:58.513 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:11:58.513 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:12:00.615 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:12:01.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:12:01.201 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:12:01.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:12:01.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:12:01.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2689.809ms +2017-12-14 16:12:01.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:12:01.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:12:01.209 +05:30 [Information] Request finished in 2730.5364ms 200 application/json; charset=utf-8 +2017-12-14 16:12:01.210 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" completed keep alive response. +2017-12-14 16:12:01.210 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:12:01.547 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 16:12:02.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:12:02.394 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:12:02.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:12:02.395 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:12:02.401 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3889.9431ms +2017-12-14 16:12:02.407 +05:30 [Information] Request finished in 3927.8627ms 200 application/json; charset=utf-8 +2017-12-14 16:12:02.412 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" completed keep alive response. +2017-12-14 16:12:04.260 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:12:04.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:12:04.799 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:12:04.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:12:04.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:12:04.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3589.8558ms +2017-12-14 16:12:04.806 +05:30 [Information] Request finished in 3597.9918ms 200 application/json; charset=utf-8 +2017-12-14 16:12:04.806 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" completed keep alive response. +2017-12-14 16:12:35.687 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=48 +2017-12-14 16:12:35.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-12-14 16:12:35.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-12-14 16:12:35.691 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=48 +2017-12-14 16:12:35.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-12-14 16:12:35.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-12-14 16:12:38.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:12:38.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:12:39.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:12:39.972 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:12:39.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:12:39.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:12:39.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 4282.4443ms +2017-12-14 16:12:39.994 +05:30 [Information] Request finished in 4306.1556ms 200 application/json; charset=utf-8 +2017-12-14 16:12:39.995 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" completed keep alive response. +2017-12-14 16:12:40.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:12:40.391 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:12:40.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:12:40.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:12:40.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 4703.7919ms +2017-12-14 16:12:40.397 +05:30 [Information] Request finished in 4716.4981ms 200 application/json; charset=utf-8 +2017-12-14 16:12:40.397 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" completed keep alive response. +2017-12-14 16:12:40.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=48 +2017-12-14 16:12:40.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=48 +2017-12-14 16:12:40.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-12-14 16:12:40.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-12-14 16:12:40.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-12-14 16:12:40.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-12-14 16:12:43.537 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:12:43.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:12:44.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:12:44.954 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:12:44.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:12:44.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:12:44.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 4448.0139ms +2017-12-14 16:12:44.963 +05:30 [Information] Request finished in 4461.3484ms 200 application/json; charset=utf-8 +2017-12-14 16:12:44.964 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" completed keep alive response. +2017-12-14 16:12:51.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:12:51.322 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:12:51.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:12:51.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:12:51.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 11128.3158ms +2017-12-14 16:12:51.636 +05:30 [Information] Request finished in 11135.3906ms 200 application/json; charset=utf-8 +2017-12-14 16:12:51.636 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" completed keep alive response. +2017-12-14 16:13:48.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" received FIN. +2017-12-14 16:13:48.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" received FIN. +2017-12-14 16:13:48.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" disconnecting. +2017-12-14 16:13:48.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" sending FIN. +2017-12-14 16:13:48.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" disconnecting. +2017-12-14 16:13:48.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" sent FIN with status "0". +2017-12-14 16:13:48.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDQ"" stopped. +2017-12-14 16:13:48.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" sending FIN. +2017-12-14 16:13:48.985 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" sent FIN with status "0". +2017-12-14 16:13:48.985 +05:30 [Debug] Connection id ""0HLA2RL0CFBDS"" stopped. +2017-12-14 16:15:38.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" received FIN. +2017-12-14 16:15:38.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" disconnecting. +2017-12-14 16:15:38.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" sending FIN. +2017-12-14 16:15:38.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" sent FIN with status "0". +2017-12-14 16:15:38.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDR"" stopped. +2017-12-14 16:17:15.818 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" started. +2017-12-14 16:17:15.821 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:17:15.821 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:17:15.822 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:17:18.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:17:19.405 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:19.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:19.406 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:19.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3584.179ms +2017-12-14 16:17:19.415 +05:30 [Information] Request finished in 3594.39ms 200 application/json; charset=utf-8 +2017-12-14 16:17:19.416 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" completed keep alive response. +2017-12-14 16:17:19.446 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 16:17:19.447 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 16:17:19.448 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 16:17:22.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 16:17:24.173 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:24.173 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:24.174 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:24.180 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4728.749ms +2017-12-14 16:17:24.183 +05:30 [Information] Request finished in 4746.7302ms 200 application/json; charset=utf-8 +2017-12-14 16:17:24.183 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" completed keep alive response. +2017-12-14 16:17:28.576 +05:30 [Debug] Connection id ""0HLA2RL0CFBDV"" started. +2017-12-14 16:17:28.576 +05:30 [Debug] Connection id ""0HLA2RL0CFBDU"" started. +2017-12-14 16:17:28.578 +05:30 [Debug] Connection id ""0HLA2RL0CFBE0"" started. +2017-12-14 16:17:28.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 16:17:28.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 16:17:28.646 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 16:17:28.650 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 16:17:28.650 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 16:17:28.651 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 16:17:28.864 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 16:17:28.865 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 16:17:28.865 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 16:17:28.954 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 16:17:28.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 16:17:28.955 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 16:17:30.190 +05:30 [Debug] Connection id ""0HLA2RL0CFBE1"" started. +2017-12-14 16:17:30.194 +05:30 [Debug] Connection id ""0HLA2RL0CFBE2"" started. +2017-12-14 16:17:30.243 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 16:17:30.243 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 16:17:30.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 16:17:30.290 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 16:17:30.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 16:17:30.292 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 16:17:31.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:31.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:32.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:32.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:32.619 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:33.060 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:33.060 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:33.060 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:33.062 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:33.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4107.7091ms +2017-12-14 16:17:33.117 +05:30 [Information] Request finished in 4535.2733ms 200 application/json; charset=utf-8 +2017-12-14 16:17:33.117 +05:30 [Debug] Connection id ""0HLA2RL0CFBE0"" completed keep alive response. +2017-12-14 16:17:33.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:33.127 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:33.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:33.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:33.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4482.9628ms +2017-12-14 16:17:33.136 +05:30 [Information] Request finished in 4572.0379ms 200 application/json; charset=utf-8 +2017-12-14 16:17:33.137 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" completed keep alive response. +2017-12-14 16:17:33.161 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=48 +2017-12-14 16:17:33.161 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-12-14 16:17:33.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-12-14 16:17:33.167 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=48 +2017-12-14 16:17:33.167 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-12-14 16:17:33.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-12-14 16:17:33.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:34.448 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:34.448 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:34.449 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:34.449 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:34.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5584.3811ms +2017-12-14 16:17:34.454 +05:30 [Information] Request finished in 5875.8488ms 200 application/json; charset=utf-8 +2017-12-14 16:17:34.455 +05:30 [Debug] Connection id ""0HLA2RL0CFBDV"" completed keep alive response. +2017-12-14 16:17:34.724 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:34.724 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:34.724 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:34.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:34.726 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4433.2666ms +2017-12-14 16:17:34.731 +05:30 [Information] Request finished in 4488.4129ms 200 application/json; charset=utf-8 +2017-12-14 16:17:34.731 +05:30 [Debug] Connection id ""0HLA2RL0CFBE2"" completed keep alive response. +2017-12-14 16:17:35.557 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:35.557 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:35.558 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:35.558 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:35.561 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5315.3844ms +2017-12-14 16:17:35.564 +05:30 [Information] Request finished in 5368.7185ms 200 application/json; charset=utf-8 +2017-12-14 16:17:35.565 +05:30 [Debug] Connection id ""0HLA2RL0CFBE1"" completed keep alive response. +2017-12-14 16:17:36.235 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:36.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:37.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:37.346 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:37.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:37.347 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:37.351 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 4187.7164ms +2017-12-14 16:17:37.358 +05:30 [Information] Request finished in 4194.9697ms 200 application/json; charset=utf-8 +2017-12-14 16:17:37.359 +05:30 [Debug] Connection id ""0HLA2RL0CFBE0"" completed keep alive response. +2017-12-14 16:17:37.418 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=48 +2017-12-14 16:17:37.419 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-12-14 16:17:37.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-12-14 16:17:37.452 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=48 +2017-12-14 16:17:37.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-12-14 16:17:37.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-12-14 16:17:37.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:37.908 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:37.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:37.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:37.910 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 4740.5891ms +2017-12-14 16:17:37.912 +05:30 [Information] Request finished in 4747.0686ms 200 application/json; charset=utf-8 +2017-12-14 16:17:37.913 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" completed keep alive response. +2017-12-14 16:17:40.521 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:17:40.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:40.559 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:17:40.579 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:17:41.384 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:17:41.386 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:17:41.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:41.925 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:41.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:41.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:41.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 4505.5883ms +2017-12-14 16:17:41.929 +05:30 [Information] Request finished in 4517.3973ms 200 application/json; charset=utf-8 +2017-12-14 16:17:41.929 +05:30 [Debug] Connection id ""0HLA2RL0CFBDV"" completed keep alive response. +2017-12-14 16:17:54.073 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:54.073 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:54.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:54.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:54.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25424.3739ms +2017-12-14 16:17:54.081 +05:30 [Information] Request finished in 25499.5697ms 200 application/json; charset=utf-8 +2017-12-14 16:17:54.082 +05:30 [Debug] Connection id ""0HLA2RL0CFBDU"" completed keep alive response. +2017-12-14 16:17:55.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:17:55.220 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:17:55.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:17:55.242 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:17:56.893 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 19404.2101ms +2017-12-14 16:17:56.918 +05:30 [Information] Request finished in 19489.6949ms 200 application/json; charset=utf-8 +2017-12-14 16:17:56.918 +05:30 [Debug] Connection id ""0HLA2RL0CFBE2"" completed keep alive response. +2017-12-14 16:19:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBE0"" received FIN. +2017-12-14 16:19:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBE1"" received FIN. +2017-12-14 16:19:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDV"" received FIN. +2017-12-14 16:19:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" received FIN. +2017-12-14 16:19:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBE0"" disconnecting. +2017-12-14 16:19:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBE1"" disconnecting. +2017-12-14 16:19:18.980 +05:30 [Debug] Connection id ""0HLA2RL0CFBE2"" received FIN. +2017-12-14 16:19:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDU"" received FIN. +2017-12-14 16:19:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" disconnecting. +2017-12-14 16:19:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBE0"" sending FIN. +2017-12-14 16:19:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBE2"" disconnecting. +2017-12-14 16:19:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBE0"" sent FIN with status "0". +2017-12-14 16:19:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBE0"" stopped. +2017-12-14 16:19:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBE2"" sending FIN. +2017-12-14 16:19:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBDV"" disconnecting. +2017-12-14 16:19:18.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBDU"" disconnecting. +2017-12-14 16:19:18.983 +05:30 [Debug] Connection id ""0HLA2RL0CFBE2"" sent FIN with status "0". +2017-12-14 16:19:18.983 +05:30 [Debug] Connection id ""0HLA2RL0CFBE2"" stopped. +2017-12-14 16:19:18.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBE1"" sending FIN. +2017-12-14 16:19:18.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" sending FIN. +2017-12-14 16:19:18.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDV"" sending FIN. +2017-12-14 16:19:18.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDU"" sending FIN. +2017-12-14 16:19:18.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDV"" sent FIN with status "0". +2017-12-14 16:19:18.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDU"" sent FIN with status "0". +2017-12-14 16:19:18.985 +05:30 [Debug] Connection id ""0HLA2RL0CFBDU"" stopped. +2017-12-14 16:19:18.984 +05:30 [Debug] Connection id ""0HLA2RL0CFBDV"" stopped. +2017-12-14 16:19:18.985 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" sent FIN with status "0". +2017-12-14 16:19:18.985 +05:30 [Debug] Connection id ""0HLA2RL0CFBDT"" stopped. +2017-12-14 16:19:18.985 +05:30 [Debug] Connection id ""0HLA2RL0CFBE1"" sent FIN with status "0". +2017-12-14 16:19:18.986 +05:30 [Debug] Connection id ""0HLA2RL0CFBE1"" stopped. +2017-12-14 16:19:44.630 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" started. +2017-12-14 16:19:44.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:19:44.633 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 16:19:44.633 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 16:19:47.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:19:47.937 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:19:47.937 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:19:47.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:19:47.938 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:19:47.939 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3305.9814ms +2017-12-14 16:19:47.942 +05:30 [Information] Request finished in 3311.3802ms 200 application/json; charset=utf-8 +2017-12-14 16:19:47.942 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" completed keep alive response. +2017-12-14 16:19:47.977 +05:30 [Debug] Connection id ""0HLA2RL0CFBE4"" started. +2017-12-14 16:19:47.989 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" started. +2017-12-14 16:19:47.989 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 16:19:47.990 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 16:19:47.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 16:19:47.996 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" started. +2017-12-14 16:19:47.999 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 16:19:47.999 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 16:19:48.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 16:19:48.000 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:19:48.002 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 16:19:48.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 16:19:48.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:19:48.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:19:48.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 16:19:50.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:19:51.098 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:19:51.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 16:19:51.110 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:19:51.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:19:51.549 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:19:51.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:19:51.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:19:51.553 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3544.1772ms +2017-12-14 16:19:51.554 +05:30 [Debug] Connection id ""0HLA2RL0CFBE7"" started. +2017-12-14 16:19:51.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:19:51.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:19:51.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:19:51.563 +05:30 [Information] Request finished in 3559.6738ms 200 application/json; charset=utf-8 +2017-12-14 16:19:51.563 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" completed keep alive response. +2017-12-14 16:19:51.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:19:51.977 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:19:51.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:19:51.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:19:51.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3972.1116ms +2017-12-14 16:19:51.982 +05:30 [Information] Request finished in 3988.9841ms 200 application/json; charset=utf-8 +2017-12-14 16:19:51.982 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" completed keep alive response. +2017-12-14 16:19:53.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:19:53.528 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:19:53.528 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:19:53.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:19:53.531 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5539.1451ms +2017-12-14 16:19:53.535 +05:30 [Information] Request finished in 5560.1446ms 200 application/json; charset=utf-8 +2017-12-14 16:19:53.536 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" completed keep alive response. +2017-12-14 16:19:54.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:19:54.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:19:54.886 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:19:54.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:19:54.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:19:54.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 6887.8867ms +2017-12-14 16:19:54.891 +05:30 [Information] Request finished in 6908.3118ms 200 application/json; charset=utf-8 +2017-12-14 16:19:54.892 +05:30 [Debug] Connection id ""0HLA2RL0CFBE4"" completed keep alive response. +2017-12-14 16:19:54.986 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:19:54.986 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:19:54.987 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:19:54.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:19:54.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3432.1071ms +2017-12-14 16:19:54.996 +05:30 [Information] Request finished in 3440.4048ms 200 application/json; charset=utf-8 +2017-12-14 16:19:54.996 +05:30 [Debug] Connection id ""0HLA2RL0CFBE7"" completed keep alive response. +2017-12-14 16:20:14.662 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:20:14.662 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:20:14.663 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:20:17.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:20:18.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:18.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:18.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:18.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3590.9823ms +2017-12-14 16:20:18.256 +05:30 [Information] Request finished in 3594.3726ms 200 application/json; charset=utf-8 +2017-12-14 16:20:18.256 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" completed keep alive response. +2017-12-14 16:20:18.275 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 16:20:18.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 16:20:18.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 16:20:21.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 16:20:23.025 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:23.026 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:23.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:23.029 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4751.6448ms +2017-12-14 16:20:23.033 +05:30 [Information] Request finished in 4757.5347ms 200 application/json; charset=utf-8 +2017-12-14 16:20:23.034 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" completed keep alive response. +2017-12-14 16:20:27.172 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 16:20:27.172 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 16:20:27.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 16:20:27.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 16:20:27.213 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 16:20:27.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 16:20:27.243 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 16:20:27.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 16:20:27.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 16:20:27.453 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 16:20:27.453 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 16:20:27.454 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 16:20:27.951 +05:30 [Debug] Connection id ""0HLA2RL0CFBE8"" started. +2017-12-14 16:20:29.788 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 16:20:29.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 16:20:29.789 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 16:20:30.789 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 16:20:30.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 16:20:30.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 16:20:33.818 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:20:33.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:20:33.966 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:20:33.988 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:20:34.029 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:20:34.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:20:34.563 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:34.563 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:34.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:34.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:34.566 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7392.0605ms +2017-12-14 16:20:34.567 +05:30 [Information] Request finished in 7415.1566ms 200 application/json; charset=utf-8 +2017-12-14 16:20:34.568 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" completed keep alive response. +2017-12-14 16:20:34.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:20:34.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 16:20:34.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 16:20:34.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:34.689 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:34.689 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:34.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:34.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7454.9836ms +2017-12-14 16:20:34.694 +05:30 [Information] Request finished in 7528.9493ms 200 application/json; charset=utf-8 +2017-12-14 16:20:34.694 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" completed keep alive response. +2017-12-14 16:20:35.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:35.003 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:35.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:35.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:35.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7550.0801ms +2017-12-14 16:20:35.013 +05:30 [Information] Request finished in 7841.9141ms 200 application/json; charset=utf-8 +2017-12-14 16:20:35.014 +05:30 [Debug] Connection id ""0HLA2RL0CFBE7"" completed keep alive response. +2017-12-14 16:20:35.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:35.288 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:35.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:35.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:35.290 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4499.5491ms +2017-12-14 16:20:35.292 +05:30 [Information] Request finished in 4503.5857ms 200 application/json; charset=utf-8 +2017-12-14 16:20:35.293 +05:30 [Debug] Connection id ""0HLA2RL0CFBE8"" completed keep alive response. +2017-12-14 16:20:36.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:36.546 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:36.547 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:36.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:36.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6760.023ms +2017-12-14 16:20:36.553 +05:30 [Information] Request finished in 6764.829ms 200 application/json; charset=utf-8 +2017-12-14 16:20:36.554 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" completed keep alive response. +2017-12-14 16:20:37.621 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:20:37.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:37.863 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:37.863 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:37.864 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:37.866 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3289.4672ms +2017-12-14 16:20:37.868 +05:30 [Information] Request finished in 3295.0933ms 200 application/json; charset=utf-8 +2017-12-14 16:20:37.869 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" completed keep alive response. +2017-12-14 16:20:37.913 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 16:20:37.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 16:20:37.916 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 16:20:37.920 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:20:37.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:20:37.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:20:37.930 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 16:20:37.931 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 16:20:37.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 16:20:37.945 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 16:20:37.947 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 16:20:37.948 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 16:20:37.949 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:20:37.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:20:37.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:20:40.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:20:40.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:40.514 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:40.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:40.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:40.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2587.9077ms +2017-12-14 16:20:40.520 +05:30 [Information] Request finished in 2626.7746ms 200 application/json; charset=utf-8 +2017-12-14 16:20:40.520 +05:30 [Debug] Connection id ""0HLA2RL0CFBE7"" completed keep alive response. +2017-12-14 16:20:40.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:20:41.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:20:41.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 16:20:41.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:20:41.457 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:41.460 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:41.460 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:41.470 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:41.502 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3509.3341ms +2017-12-14 16:20:41.510 +05:30 [Information] Request finished in 3558.7193ms 200 application/json; charset=utf-8 +2017-12-14 16:20:41.510 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" completed keep alive response. +2017-12-14 16:20:41.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:41.958 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:41.958 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:41.959 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:41.960 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4010.8936ms +2017-12-14 16:20:41.964 +05:30 [Information] Request finished in 4069.2981ms 200 application/json; charset=utf-8 +2017-12-14 16:20:41.964 +05:30 [Debug] Connection id ""0HLA2RL0CFBE8"" completed keep alive response. +2017-12-14 16:20:42.114 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:42.115 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:42.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:42.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:42.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4199.6889ms +2017-12-14 16:20:42.124 +05:30 [Information] Request finished in 4229.4104ms 200 application/json; charset=utf-8 +2017-12-14 16:20:42.124 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" completed keep alive response. +2017-12-14 16:20:42.442 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:20:42.443 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:20:43.030 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:20:43.031 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:20:43.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:43.248 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:43.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:43.249 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:43.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 5317.7061ms +2017-12-14 16:20:43.253 +05:30 [Information] Request finished in 5338.6929ms 200 application/json; charset=utf-8 +2017-12-14 16:20:43.254 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" completed keep alive response. +2017-12-14 16:20:52.001 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:20:52.002 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:20:52.002 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:20:52.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:20:52.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24753.5478ms +2017-12-14 16:20:52.010 +05:30 [Information] Request finished in 24846.5976ms 200 application/json; charset=utf-8 +2017-12-14 16:20:52.011 +05:30 [Debug] Connection id ""0HLA2RL0CFBE4"" completed keep alive response. +2017-12-14 16:22:58.657 +05:30 [Debug] Connection id ""0HLA2RL0CFBE7"" received FIN. +2017-12-14 16:22:58.657 +05:30 [Debug] Connection id ""0HLA2RL0CFBE8"" received FIN. +2017-12-14 16:22:58.657 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" received FIN. +2017-12-14 16:22:58.657 +05:30 [Debug] Connection id ""0HLA2RL0CFBE7"" disconnecting. +2017-12-14 16:22:58.658 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" received FIN. +2017-12-14 16:22:58.658 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" received FIN. +2017-12-14 16:22:58.658 +05:30 [Debug] Connection id ""0HLA2RL0CFBE4"" received FIN. +2017-12-14 16:22:58.659 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" disconnecting. +2017-12-14 16:22:58.680 +05:30 [Debug] Connection id ""0HLA2RL0CFBE8"" disconnecting. +2017-12-14 16:22:58.681 +05:30 [Debug] Connection id ""0HLA2RL0CFBE8"" sending FIN. +2017-12-14 16:22:58.659 +05:30 [Debug] Connection id ""0HLA2RL0CFBE7"" sending FIN. +2017-12-14 16:22:58.681 +05:30 [Debug] Connection id ""0HLA2RL0CFBE4"" disconnecting. +2017-12-14 16:22:58.682 +05:30 [Debug] Connection id ""0HLA2RL0CFBE8"" sent FIN with status "0". +2017-12-14 16:22:58.681 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" disconnecting. +2017-12-14 16:22:58.680 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" disconnecting. +2017-12-14 16:22:58.682 +05:30 [Debug] Connection id ""0HLA2RL0CFBE8"" stopped. +2017-12-14 16:22:58.683 +05:30 [Debug] Connection id ""0HLA2RL0CFBE4"" sending FIN. +2017-12-14 16:22:58.682 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" sending FIN. +2017-12-14 16:22:58.683 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" sending FIN. +2017-12-14 16:22:58.683 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" sending FIN. +2017-12-14 16:22:58.683 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" sent FIN with status "0". +2017-12-14 16:22:58.683 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" sent FIN with status "0". +2017-12-14 16:22:58.683 +05:30 [Debug] Connection id ""0HLA2RL0CFBE6"" stopped. +2017-12-14 16:22:58.684 +05:30 [Debug] Connection id ""0HLA2RL0CFBE5"" stopped. +2017-12-14 16:22:58.684 +05:30 [Debug] Connection id ""0HLA2RL0CFBE4"" sent FIN with status "0". +2017-12-14 16:22:58.684 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" sent FIN with status "0". +2017-12-14 16:22:58.684 +05:30 [Debug] Connection id ""0HLA2RL0CFBE3"" stopped. +2017-12-14 16:22:58.684 +05:30 [Debug] Connection id ""0HLA2RL0CFBE4"" stopped. +2017-12-14 16:22:58.685 +05:30 [Debug] Connection id ""0HLA2RL0CFBE7"" sent FIN with status "0". +2017-12-14 16:22:58.685 +05:30 [Debug] Connection id ""0HLA2RL0CFBE7"" stopped. +2017-12-14 16:23:51.453 +05:30 [Debug] Connection id ""0HLA2RL0CFBE9"" started. +2017-12-14 16:23:51.454 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:23:51.455 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:23:51.456 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:23:54.514 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:23:55.088 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:23:55.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:23:55.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:23:55.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3635.0937ms +2017-12-14 16:23:55.103 +05:30 [Information] Request finished in 3642.6798ms 200 application/json; charset=utf-8 +2017-12-14 16:23:55.103 +05:30 [Debug] Connection id ""0HLA2RL0CFBE9"" completed keep alive response. +2017-12-14 16:23:55.158 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 16:23:55.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 16:23:55.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 16:23:58.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 16:23:59.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:23:59.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:23:59.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:23:59.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4720.1867ms +2017-12-14 16:23:59.883 +05:30 [Information] Request finished in 4739.3681ms 200 application/json; charset=utf-8 +2017-12-14 16:23:59.884 +05:30 [Debug] Connection id ""0HLA2RL0CFBE9"" completed keep alive response. +2017-12-14 16:24:03.489 +05:30 [Debug] Connection id ""0HLA2RL0CFBEA"" started. +2017-12-14 16:24:03.489 +05:30 [Debug] Connection id ""0HLA2RL0CFBEB"" started. +2017-12-14 16:24:03.489 +05:30 [Debug] Connection id ""0HLA2RL0CFBEC"" started. +2017-12-14 16:24:03.549 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 16:24:03.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 16:24:03.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 16:24:03.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 16:24:03.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 16:24:03.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 16:24:03.662 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 16:24:03.662 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 16:24:03.663 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 16:24:03.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 16:24:03.717 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 16:24:03.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 16:24:05.036 +05:30 [Debug] Connection id ""0HLA2RL0CFBED"" started. +2017-12-14 16:24:05.036 +05:30 [Debug] Connection id ""0HLA2RL0CFBEE"" started. +2017-12-14 16:24:05.037 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 16:24:05.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 16:24:05.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 16:24:05.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 16:24:05.041 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 16:24:05.042 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 16:24:06.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:06.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:06.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:06.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:07.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:07.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:07.485 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:07.485 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:07.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:07.489 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3825.0068ms +2017-12-14 16:24:07.491 +05:30 [Information] Request finished in 4001.3793ms 200 application/json; charset=utf-8 +2017-12-14 16:24:07.492 +05:30 [Debug] Connection id ""0HLA2RL0CFBEB"" completed keep alive response. +2017-12-14 16:24:07.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:24:07.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 16:24:07.497 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 16:24:07.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:07.775 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:07.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:07.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:07.806 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4245.4338ms +2017-12-14 16:24:07.869 +05:30 [Information] Request finished in 4427.1923ms 200 application/json; charset=utf-8 +2017-12-14 16:24:07.870 +05:30 [Debug] Connection id ""0HLA2RL0CFBE9"" completed keep alive response. +2017-12-14 16:24:07.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:07.976 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:07.976 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:07.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:07.979 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4369.7681ms +2017-12-14 16:24:07.981 +05:30 [Information] Request finished in 4489.832ms 200 application/json; charset=utf-8 +2017-12-14 16:24:07.981 +05:30 [Debug] Connection id ""0HLA2RL0CFBEC"" completed keep alive response. +2017-12-14 16:24:08.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:08.363 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:08.363 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:08.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:08.364 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:08.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3322.3547ms +2017-12-14 16:24:08.367 +05:30 [Information] Request finished in 3329.1798ms 200 application/json; charset=utf-8 +2017-12-14 16:24:08.368 +05:30 [Debug] Connection id ""0HLA2RL0CFBEE"" completed keep alive response. +2017-12-14 16:24:09.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:09.885 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:09.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:09.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:09.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4848.2733ms +2017-12-14 16:24:09.890 +05:30 [Information] Request finished in 4852.6529ms 200 application/json; charset=utf-8 +2017-12-14 16:24:09.890 +05:30 [Debug] Connection id ""0HLA2RL0CFBED"" completed keep alive response. +2017-12-14 16:24:10.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:24:10.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:10.878 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:10.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:10.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:10.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3382.1494ms +2017-12-14 16:24:10.885 +05:30 [Information] Request finished in 3389.528ms 200 application/json; charset=utf-8 +2017-12-14 16:24:10.885 +05:30 [Debug] Connection id ""0HLA2RL0CFBEB"" completed keep alive response. +2017-12-14 16:24:10.926 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:24:10.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:24:10.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:24:10.937 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 16:24:10.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 16:24:10.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 16:24:10.947 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 16:24:10.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 16:24:10.948 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 16:24:10.956 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 16:24:10.956 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 16:24:10.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 16:24:14.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:24:14.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 16:24:14.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:14.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:14.498 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:14.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:14.499 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:14.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:14.502 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3572.1635ms +2017-12-14 16:24:14.546 +05:30 [Information] Request finished in 3613.1466ms 200 application/json; charset=utf-8 +2017-12-14 16:24:14.547 +05:30 [Debug] Connection id ""0HLA2RL0CFBE9"" completed keep alive response. +2017-12-14 16:24:14.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:24:14.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:24:14.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:24:17.257 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:17.258 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:17.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:17.259 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:17.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 6321.5063ms +2017-12-14 16:24:17.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:17.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:17.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:17.316 +05:30 [Information] Request finished in 6376.5661ms 200 application/json; charset=utf-8 +2017-12-14 16:24:17.316 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:17.316 +05:30 [Debug] Connection id ""0HLA2RL0CFBEC"" completed keep alive response. +2017-12-14 16:24:17.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 6369.0845ms +2017-12-14 16:24:17.330 +05:30 [Information] Request finished in 6409.6965ms 200 application/json; charset=utf-8 +2017-12-14 16:24:17.331 +05:30 [Debug] Connection id ""0HLA2RL0CFBEE"" completed keep alive response. +2017-12-14 16:24:17.786 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:24:17.788 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:24:18.467 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:24:18.475 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:24:19.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:24:19.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:19.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:19.500 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:19.503 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:19.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4956.8517ms +2017-12-14 16:24:19.517 +05:30 [Information] Request finished in 4989.579ms 200 application/json; charset=utf-8 +2017-12-14 16:24:19.518 +05:30 [Debug] Connection id ""0HLA2RL0CFBEB"" completed keep alive response. +2017-12-14 16:24:19.609 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:19.609 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:19.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:19.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:19.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 8657.7594ms +2017-12-14 16:24:19.622 +05:30 [Information] Request finished in 8703.1711ms 200 application/json; charset=utf-8 +2017-12-14 16:24:19.623 +05:30 [Debug] Connection id ""0HLA2RL0CFBED"" completed keep alive response. +2017-12-14 16:24:21.401 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:24:21.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:24:21.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:24:24.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:24:25.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:25.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:25.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:25.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3603.2304ms +2017-12-14 16:24:25.008 +05:30 [Information] Request finished in 3607.5298ms 200 application/json; charset=utf-8 +2017-12-14 16:24:25.009 +05:30 [Debug] Connection id ""0HLA2RL0CFBE9"" completed keep alive response. +2017-12-14 16:24:25.036 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 16:24:25.037 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 16:24:25.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 16:24:27.474 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:27.474 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:27.474 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:27.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:27.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23758.8599ms +2017-12-14 16:24:27.483 +05:30 [Information] Request finished in 23992.2745ms 200 application/json; charset=utf-8 +2017-12-14 16:24:27.484 +05:30 [Debug] Connection id ""0HLA2RL0CFBEA"" completed keep alive response. +2017-12-14 16:24:28.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 16:24:29.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:29.674 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:29.675 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:29.677 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4638.1513ms +2017-12-14 16:24:29.686 +05:30 [Information] Request finished in 4647.3126ms 200 application/json; charset=utf-8 +2017-12-14 16:24:29.686 +05:30 [Debug] Connection id ""0HLA2RL0CFBEC"" completed keep alive response. +2017-12-14 16:24:30.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 16:24:30.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 16:24:30.843 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 16:24:30.844 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 16:24:30.845 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 16:24:30.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 16:24:30.854 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 16:24:30.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 16:24:30.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 16:24:30.855 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 16:24:30.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 16:24:30.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 16:24:30.942 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 16:24:30.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 16:24:30.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 16:24:31.550 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 16:24:31.551 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 16:24:31.551 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 16:24:34.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:34.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:34.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:34.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:34.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:34.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:35.366 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:35.366 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:35.366 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:35.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:35.373 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4515.7691ms +2017-12-14 16:24:35.375 +05:30 [Information] Request finished in 4534.9906ms 200 application/json; charset=utf-8 +2017-12-14 16:24:35.376 +05:30 [Debug] Connection id ""0HLA2RL0CFBED"" completed keep alive response. +2017-12-14 16:24:35.379 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:24:35.379 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 16:24:35.380 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 16:24:35.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:35.527 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:35.528 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:35.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:35.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4685.8555ms +2017-12-14 16:24:35.533 +05:30 [Information] Request finished in 4693.6565ms 200 application/json; charset=utf-8 +2017-12-14 16:24:35.534 +05:30 [Debug] Connection id ""0HLA2RL0CFBEE"" completed keep alive response. +2017-12-14 16:24:35.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:35.870 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:35.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:35.871 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:35.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5013.0365ms +2017-12-14 16:24:35.876 +05:30 [Information] Request finished in 5035.16ms 200 application/json; charset=utf-8 +2017-12-14 16:24:35.876 +05:30 [Debug] Connection id ""0HLA2RL0CFBEB"" completed keep alive response. +2017-12-14 16:24:35.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:35.912 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:35.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:35.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:35.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4971.33ms +2017-12-14 16:24:35.917 +05:30 [Information] Request finished in 4975.5261ms 200 application/json; charset=utf-8 +2017-12-14 16:24:35.917 +05:30 [Debug] Connection id ""0HLA2RL0CFBEA"" completed keep alive response. +2017-12-14 16:24:36.009 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:36.010 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:36.010 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:36.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:36.014 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4460.4331ms +2017-12-14 16:24:36.020 +05:30 [Information] Request finished in 4468.9824ms 200 application/json; charset=utf-8 +2017-12-14 16:24:36.021 +05:30 [Debug] Connection id ""0HLA2RL0CFBEC"" completed keep alive response. +2017-12-14 16:24:38.446 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:24:38.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:38.697 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:38.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:38.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:38.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3319.5612ms +2017-12-14 16:24:38.703 +05:30 [Information] Request finished in 3324.4117ms 200 application/json; charset=utf-8 +2017-12-14 16:24:38.703 +05:30 [Debug] Connection id ""0HLA2RL0CFBED"" completed keep alive response. +2017-12-14 16:24:38.730 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 16:24:38.731 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 16:24:38.731 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 16:24:38.731 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 16:24:38.733 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 16:24:38.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 16:24:38.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 16:24:38.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 16:24:38.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 16:24:38.745 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:24:38.747 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:24:38.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:24:40.844 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 16:24:43.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:43.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:24:43.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:24:44.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:44.656 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:44.656 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:44.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:45.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6485.6571ms +2017-12-14 16:24:46.070 +05:30 [Information] Request finished in 7322.8144ms 200 application/json; charset=utf-8 +2017-12-14 16:24:46.073 +05:30 [Debug] Connection id ""0HLA2RL0CFBEA"" completed keep alive response. +2017-12-14 16:24:46.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:24:46.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:24:46.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:24:48.827 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:48.851 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:48.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:48.875 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:49.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 10525.0508ms +2017-12-14 16:24:49.346 +05:30 [Information] Request finished in 10617.4444ms 200 application/json; charset=utf-8 +2017-12-14 16:24:49.359 +05:30 [Debug] Connection id ""0HLA2RL0CFBEC"" completed keep alive response. +2017-12-14 16:24:49.820 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:24:49.844 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:24:51.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:24:52.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:24:53.099 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:24:53.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:24:53.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:24:53.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6294.712ms +2017-12-14 16:24:59.031 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:24:59.040 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:24:59.091 +05:30 [Information] Request finished in 12190.9618ms 200 application/json; charset=utf-8 +2017-12-14 16:24:59.607 +05:30 [Debug] Connection id ""0HLA2RL0CFBED"" completed keep alive response. +2017-12-14 16:24:59.609 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:25:30.640 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:25:30.640 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:25:31.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:25:32.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 52354.3577ms +2017-12-14 16:25:33.863 +05:30 [Information] Request finished in 53536.904ms 200 application/json; charset=utf-8 +2017-12-14 16:25:35.506 +05:30 [Debug] Connection id ""0HLA2RL0CFBEE"" completed keep alive response. +2017-12-14 16:28:52.975 +05:30 [Debug] Hosting starting +2017-12-14 16:28:53.342 +05:30 [Debug] Hosting started +2017-12-14 16:28:53.566 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" started. +2017-12-14 16:28:53.577 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" started. +2017-12-14 16:28:53.834 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-14 16:28:53.836 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-14 16:28:53.914 +05:30 [Information] Request finished in 136.2994ms 200 +2017-12-14 16:28:54.004 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" completed keep alive response. +2017-12-14 16:28:55.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-14 16:28:55.595 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"340685ce-d6a9-4b16-adb6-db92edacf43c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-14 16:28:55.854 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-14 16:28:56.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-14 16:28:56.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-14 16:28:56.046 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:28:56.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:28:56.051 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:28:56.107 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:28:56.114 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:28:56.117 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:28:56.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 605.534ms +2017-12-14 16:28:56.566 +05:30 [Information] Request finished in 2807.448ms 200 application/json; charset=utf-8 +2017-12-14 16:28:56.569 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" completed keep alive response. +2017-12-14 16:28:56.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-14 16:28:56.641 +05:30 [Debug] Request did not match any routes. +2017-12-14 16:28:56.660 +05:30 [Debug] The request path "" does not match the path filter +2017-12-14 16:28:56.663 +05:30 [Information] Request finished in 25.1409ms 404 +2017-12-14 16:28:56.664 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" completed keep alive response. +2017-12-14 16:28:59.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:29:08.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:29:08.394 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:29:08.395 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:29:08.397 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12345.563ms +2017-12-14 16:29:08.400 +05:30 [Information] Request finished in 12353.8921ms 200 application/json; charset=utf-8 +2017-12-14 16:29:08.401 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" completed keep alive response. +2017-12-14 16:29:20.296 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:29:20.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:29:20.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:29:23.346 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:29:23.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:29:23.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:29:23.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:29:23.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3584.457ms +2017-12-14 16:29:23.889 +05:30 [Information] Request finished in 3592.8816ms 200 application/json; charset=utf-8 +2017-12-14 16:29:23.890 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" completed keep alive response. +2017-12-14 16:29:23.964 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:29:23.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:29:23.965 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:29:27.044 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:29:27.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:29:27.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:29:27.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:29:27.584 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3615.8414ms +2017-12-14 16:29:27.588 +05:30 [Information] Request finished in 3627.048ms 200 application/json; charset=utf-8 +2017-12-14 16:29:27.589 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" completed keep alive response. +2017-12-14 16:29:27.627 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:29:27.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:29:27.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:29:30.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:29:31.213 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:29:31.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:29:31.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:29:31.215 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3585.7642ms +2017-12-14 16:29:31.217 +05:30 [Information] Request finished in 3589.8962ms 200 application/json; charset=utf-8 +2017-12-14 16:29:31.218 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" completed keep alive response. +2017-12-14 16:29:33.417 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:29:33.418 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:29:33.418 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:29:36.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:29:36.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:29:36.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:29:37.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:29:37.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3581.1831ms +2017-12-14 16:29:37.005 +05:30 [Information] Request finished in 3597.3536ms 200 application/json; charset=utf-8 +2017-12-14 16:29:37.005 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" completed keep alive response. +2017-12-14 16:29:43.514 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:29:43.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:29:43.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:29:46.571 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:29:47.105 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:29:47.106 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:29:47.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:29:47.107 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3589.3859ms +2017-12-14 16:29:47.111 +05:30 [Information] Request finished in 3596.6283ms 200 application/json; charset=utf-8 +2017-12-14 16:29:47.111 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" completed keep alive response. +2017-12-14 16:29:47.127 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-14 16:29:47.128 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-14 16:29:47.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-14 16:29:50.267 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-14 16:29:52.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:29:52.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:29:52.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:29:52.492 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5348.7496ms +2017-12-14 16:29:52.493 +05:30 [Information] Request finished in 5368.0595ms 200 application/json; charset=utf-8 +2017-12-14 16:29:52.494 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" completed keep alive response. +2017-12-14 16:29:52.882 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:29:52.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:29:52.883 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:29:55.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:29:56.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:29:56.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:29:56.449 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:29:56.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3565.0959ms +2017-12-14 16:29:56.451 +05:30 [Information] Request finished in 3572.6891ms 200 application/json; charset=utf-8 +2017-12-14 16:29:56.452 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" completed keep alive response. +2017-12-14 16:29:56.491 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-14 16:29:56.492 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 16:29:56.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 16:29:59.543 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-14 16:30:01.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:30:01.236 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:30:01.237 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:30:01.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4785.3111ms +2017-12-14 16:30:01.283 +05:30 [Information] Request finished in 4791.7057ms 200 application/json; charset=utf-8 +2017-12-14 16:30:01.283 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" completed keep alive response. +2017-12-14 16:30:02.902 +05:30 [Debug] Connection id ""0HLA2S6L576VE"" started. +2017-12-14 16:30:02.902 +05:30 [Debug] Connection id ""0HLA2S6L576VD"" started. +2017-12-14 16:30:02.924 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 16:30:02.925 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 16:30:02.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 16:30:02.926 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 16:30:02.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 16:30:02.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 16:30:02.931 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 16:30:02.931 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 16:30:02.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 16:30:02.934 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 16:30:02.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 16:30:02.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 16:30:03.001 +05:30 [Debug] Connection id ""0HLA2S6L576VG"" started. +2017-12-14 16:30:03.001 +05:30 [Debug] Connection id ""0HLA2S6L576VF"" started. +2017-12-14 16:30:04.554 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 16:30:04.555 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 16:30:04.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 16:30:05.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 16:30:05.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 16:30:05.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 16:30:07.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:30:08.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:30:08.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:30:08.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:30:08.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:30:08.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:30:08.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:30:08.855 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:30:08.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:30:08.856 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:30:08.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3302.9211ms +2017-12-14 16:30:08.866 +05:30 [Information] Request finished in 3310.3022ms 200 application/json; charset=utf-8 +2017-12-14 16:30:08.867 +05:30 [Debug] Connection id ""0HLA2S6L576VF"" completed keep alive response. +2017-12-14 16:30:08.876 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 16:30:08.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 16:30:08.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 16:30:10.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:30:10.886 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:30:10.887 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:30:10.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:30:10.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7950.6014ms +2017-12-14 16:30:10.891 +05:30 [Information] Request finished in 7960.4109ms 200 application/json; charset=utf-8 +2017-12-14 16:30:10.892 +05:30 [Debug] Connection id ""0HLA2S6L576VD"" completed keep alive response. +2017-12-14 16:30:10.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:30:10.961 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:30:10.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:30:10.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:30:10.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8034.3423ms +2017-12-14 16:30:10.968 +05:30 [Information] Request finished in 8064.6255ms 200 application/json; charset=utf-8 +2017-12-14 16:30:10.968 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" completed keep alive response. +2017-12-14 16:30:11.346 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:30:11.347 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:30:11.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:30:11.349 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:30:11.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8425.5875ms +2017-12-14 16:30:11.357 +05:30 [Information] Request finished in 8454.425ms 200 application/json; charset=utf-8 +2017-12-14 16:30:11.358 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" completed keep alive response. +2017-12-14 16:30:11.485 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:30:11.485 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:30:11.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:30:11.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:30:11.489 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6931.0791ms +2017-12-14 16:30:11.492 +05:30 [Information] Request finished in 6938.9124ms 200 application/json; charset=utf-8 +2017-12-14 16:30:11.492 +05:30 [Debug] Connection id ""0HLA2S6L576VG"" completed keep alive response. +2017-12-14 16:30:11.924 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:30:14.448 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:30:14.449 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:30:14.449 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:30:14.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:30:14.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5623.2459ms +2017-12-14 16:30:14.507 +05:30 [Information] Request finished in 5633.5098ms 200 application/json; charset=utf-8 +2017-12-14 16:30:14.507 +05:30 [Debug] Connection id ""0HLA2S6L576VF"" completed keep alive response. +2017-12-14 16:30:18.979 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:30:19.028 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:30:19.608 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:30:19.609 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:30:28.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:30:28.700 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:30:28.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:30:28.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:30:28.728 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25793.5254ms +2017-12-14 16:30:28.732 +05:30 [Information] Request finished in 25827.8563ms 200 application/json; charset=utf-8 +2017-12-14 16:30:28.733 +05:30 [Debug] Connection id ""0HLA2S6L576VE"" completed keep alive response. +2017-12-14 16:32:34.354 +05:30 [Debug] Connection id ""0HLA2S6L576VD"" received FIN. +2017-12-14 16:32:34.354 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" received FIN. +2017-12-14 16:32:34.355 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" received FIN. +2017-12-14 16:32:34.355 +05:30 [Debug] Connection id ""0HLA2S6L576VG"" received FIN. +2017-12-14 16:32:34.355 +05:30 [Debug] Connection id ""0HLA2S6L576VD"" disconnecting. +2017-12-14 16:32:34.357 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" disconnecting. +2017-12-14 16:32:34.355 +05:30 [Debug] Connection id ""0HLA2S6L576VF"" received FIN. +2017-12-14 16:32:34.381 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" disconnecting. +2017-12-14 16:32:34.381 +05:30 [Debug] Connection id ""0HLA2S6L576VG"" disconnecting. +2017-12-14 16:32:34.381 +05:30 [Debug] Connection id ""0HLA2S6L576VF"" disconnecting. +2017-12-14 16:32:34.381 +05:30 [Debug] Connection id ""0HLA2S6L576VD"" sending FIN. +2017-12-14 16:32:34.357 +05:30 [Debug] Connection id ""0HLA2S6L576VE"" received FIN. +2017-12-14 16:32:34.382 +05:30 [Debug] Connection id ""0HLA2S6L576VE"" disconnecting. +2017-12-14 16:32:34.382 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" sending FIN. +2017-12-14 16:32:34.383 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" sending FIN. +2017-12-14 16:32:34.384 +05:30 [Debug] Connection id ""0HLA2S6L576VF"" sending FIN. +2017-12-14 16:32:34.383 +05:30 [Debug] Connection id ""0HLA2S6L576VG"" sending FIN. +2017-12-14 16:32:34.384 +05:30 [Debug] Connection id ""0HLA2S6L576VE"" sending FIN. +2017-12-14 16:32:34.388 +05:30 [Debug] Connection id ""0HLA2S6L576VF"" sent FIN with status "0". +2017-12-14 16:32:34.388 +05:30 [Debug] Connection id ""0HLA2S6L576VE"" sent FIN with status "0". +2017-12-14 16:32:34.390 +05:30 [Debug] Connection id ""0HLA2S6L576VF"" stopped. +2017-12-14 16:32:34.390 +05:30 [Debug] Connection id ""0HLA2S6L576VE"" stopped. +2017-12-14 16:32:34.390 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" sent FIN with status "0". +2017-12-14 16:32:34.391 +05:30 [Debug] Connection id ""0HLA2S6L576VC"" stopped. +2017-12-14 16:32:34.391 +05:30 [Debug] Connection id ""0HLA2S6L576VG"" sent FIN with status "0". +2017-12-14 16:32:34.391 +05:30 [Debug] Connection id ""0HLA2S6L576VD"" sent FIN with status "0". +2017-12-14 16:32:34.391 +05:30 [Debug] Connection id ""0HLA2S6L576VG"" stopped. +2017-12-14 16:32:34.391 +05:30 [Debug] Connection id ""0HLA2S6L576VD"" stopped. +2017-12-14 16:32:34.392 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" sent FIN with status "0". +2017-12-14 16:32:34.392 +05:30 [Debug] Connection id ""0HLA2S6L576VB"" stopped. +2017-12-14 16:35:16.773 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" started. +2017-12-14 16:35:16.775 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:35:16.776 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 16:35:16.777 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 16:35:19.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:35:23.913 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:35:23.913 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:35:23.913 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:35:23.914 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:35:23.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7175.1427ms +2017-12-14 16:35:23.956 +05:30 [Information] Request finished in 7182.2302ms 200 application/json; charset=utf-8 +2017-12-14 16:35:23.957 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" completed keep alive response. +2017-12-14 16:35:23.977 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" started. +2017-12-14 16:35:23.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:35:23.978 +05:30 [Debug] Connection id ""0HLA2S6L576VJ"" started. +2017-12-14 16:35:23.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:35:23.982 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 16:35:23.983 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" started. +2017-12-14 16:35:23.992 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 16:35:23.991 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 16:35:23.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 16:35:23.992 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:35:23.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 16:35:24.004 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 16:35:24.008 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 16:35:24.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 16:35:24.010 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 16:35:27.030 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:35:27.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:35:27.092 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:35:27.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 16:35:28.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:35:28.781 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:35:28.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:35:28.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:35:28.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4805.6289ms +2017-12-14 16:35:28.805 +05:30 [Debug] Connection id ""0HLA2S6L576VL"" started. +2017-12-14 16:35:28.829 +05:30 [Information] Request finished in 4833.1683ms 200 application/json; charset=utf-8 +2017-12-14 16:35:28.829 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:35:28.829 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" completed keep alive response. +2017-12-14 16:35:28.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:35:28.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:35:33.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:35:33.082 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:35:33.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:35:33.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:35:33.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 9079.259ms +2017-12-14 16:35:33.091 +05:30 [Information] Request finished in 9110.394ms 200 application/json; charset=utf-8 +2017-12-14 16:35:33.091 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" completed keep alive response. +2017-12-14 16:35:33.294 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:35:33.503 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:35:33.504 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:35:33.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:35:33.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:35:33.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:35:33.756 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:35:33.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:35:33.760 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 9708.1031ms +2017-12-14 16:35:33.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:35:33.815 +05:30 [Information] Request finished in 9822.9868ms 200 application/json; charset=utf-8 +2017-12-14 16:35:33.834 +05:30 [Debug] Connection id ""0HLA2S6L576VJ"" completed keep alive response. +2017-12-14 16:35:33.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4975.992ms +2017-12-14 16:35:33.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:35:33.878 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:35:33.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:35:33.882 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:35:33.886 +05:30 [Information] Request finished in 5071.253ms 200 application/json; charset=utf-8 +2017-12-14 16:35:33.887 +05:30 [Debug] Connection id ""0HLA2S6L576VL"" completed keep alive response. +2017-12-14 16:35:33.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 9885.2913ms +2017-12-14 16:35:33.971 +05:30 [Information] Request finished in 9976.7269ms 200 application/json; charset=utf-8 +2017-12-14 16:35:33.972 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" completed keep alive response. +2017-12-14 16:36:00.385 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 16:36:00.386 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 16:36:00.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 16:36:03.415 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 16:36:03.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:03.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:03.963 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:03.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3578.0176ms +2017-12-14 16:36:03.969 +05:30 [Information] Request finished in 3583.3614ms 200 application/json; charset=utf-8 +2017-12-14 16:36:03.969 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" completed keep alive response. +2017-12-14 16:36:03.987 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 16:36:03.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 16:36:03.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 16:36:07.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 16:36:08.769 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:08.769 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:08.770 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:08.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4782.7527ms +2017-12-14 16:36:08.776 +05:30 [Information] Request finished in 4790.3945ms 200 application/json; charset=utf-8 +2017-12-14 16:36:08.777 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" completed keep alive response. +2017-12-14 16:36:09.782 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 16:36:09.782 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 16:36:09.783 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 16:36:09.786 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 16:36:09.788 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 16:36:09.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 16:36:09.788 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 16:36:09.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 16:36:09.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 16:36:09.813 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 16:36:09.813 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 16:36:09.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 16:36:09.888 +05:30 [Debug] Connection id ""0HLA2S6L576VM"" started. +2017-12-14 16:36:10.829 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 16:36:10.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 16:36:10.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 16:36:11.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 16:36:11.781 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 16:36:11.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 16:36:15.412 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:36:15.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:36:15.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:36:15.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:36:15.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:36:15.527 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:36:16.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:16.623 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:16.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:16.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:16.625 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6833.8671ms +2017-12-14 16:36:16.628 +05:30 [Information] Request finished in 6847.0069ms 200 application/json; charset=utf-8 +2017-12-14 16:36:16.628 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" completed keep alive response. +2017-12-14 16:36:16.631 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:16.632 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:16.632 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:16.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:16.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5810.6339ms +2017-12-14 16:36:16.659 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:36:16.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 16:36:16.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 16:36:16.663 +05:30 [Information] Request finished in 5822.7051ms 200 application/json; charset=utf-8 +2017-12-14 16:36:16.663 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" completed keep alive response. +2017-12-14 16:36:16.712 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:16.712 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:16.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:16.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:16.715 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4931.4769ms +2017-12-14 16:36:16.717 +05:30 [Information] Request finished in 4939.8035ms 200 application/json; charset=utf-8 +2017-12-14 16:36:16.717 +05:30 [Debug] Connection id ""0HLA2S6L576VM"" completed keep alive response. +2017-12-14 16:36:17.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:17.460 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:17.460 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:17.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:17.462 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7678.0461ms +2017-12-14 16:36:17.464 +05:30 [Information] Request finished in 7685.3837ms 200 application/json; charset=utf-8 +2017-12-14 16:36:17.464 +05:30 [Debug] Connection id ""0HLA2S6L576VL"" completed keep alive response. +2017-12-14 16:36:17.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:17.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:17.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:17.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:17.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8084.5835ms +2017-12-14 16:36:17.875 +05:30 [Information] Request finished in 8096.0867ms 200 application/json; charset=utf-8 +2017-12-14 16:36:17.875 +05:30 [Debug] Connection id ""0HLA2S6L576VJ"" completed keep alive response. +2017-12-14 16:36:19.724 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:36:19.954 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:19.954 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:19.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:19.956 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:19.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3294.5951ms +2017-12-14 16:36:19.960 +05:30 [Information] Request finished in 3314.3108ms 200 application/json; charset=utf-8 +2017-12-14 16:36:19.961 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" completed keep alive response. +2017-12-14 16:36:19.992 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 16:36:19.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:36:19.994 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 16:36:19.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:36:19.995 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 16:36:19.995 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:36:20.010 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 16:36:20.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 16:36:20.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 16:36:20.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 16:36:20.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 16:36:20.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 16:36:23.051 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:36:23.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:36:23.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 16:36:23.163 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 16:36:23.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:23.470 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:23.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:23.471 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:23.474 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3476.2802ms +2017-12-14 16:36:23.500 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 16:36:23.500 +05:30 [Information] Request finished in 3485.1445ms 200 application/json; charset=utf-8 +2017-12-14 16:36:23.500 +05:30 [Debug] Connection id ""0HLA2S6L576VJ"" completed keep alive response. +2017-12-14 16:36:23.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 16:36:23.501 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 16:36:28.982 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:28.993 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:29.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:29.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:31.311 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 10373.8946ms +2017-12-14 16:36:31.998 +05:30 [Information] Request finished in 11327.2574ms 200 application/json; charset=utf-8 +2017-12-14 16:36:32.012 +05:30 [Debug] Connection id ""0HLA2S6L576VM"" completed keep alive response. +2017-12-14 16:36:32.151 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 16:36:34.640 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:34.640 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:34.640 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:34.642 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:34.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 11161.068ms +2017-12-14 16:36:34.795 +05:30 [Information] Request finished in 11261.6964ms 200 application/json; charset=utf-8 +2017-12-14 16:36:44.761 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" completed keep alive response. +2017-12-14 16:36:45.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:36:45.299 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:36:45.299 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:36:45.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:36:45.397 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 25379.5447ms +2017-12-14 16:36:45.432 +05:30 [Information] Request finished in 25430.9216ms 200 application/json; charset=utf-8 +2017-12-14 16:36:45.448 +05:30 [Debug] Connection id ""0HLA2S6L576VL"" completed keep alive response. +2017-12-14 16:37:13.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:37:13.204 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:37:13.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:37:13.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:37:13.212 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 53213.9667ms +2017-12-14 16:37:13.214 +05:30 [Information] Request finished in 53227.3537ms 200 application/json; charset=utf-8 +2017-12-14 16:37:13.215 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" completed keep alive response. +2017-12-14 16:37:13.333 +05:30 [Fatal] could not execute query +[ select scheduledm0_.id as id29_, scheduledm0_.shareMessage as shareMes2_29_, scheduledm0_.clientTime as clientTime29_, scheduledm0_.scheduleTime as schedule4_29_, scheduledm0_.localscheduletime as localsch5_29_, scheduledm0_.createTime as createTime29_, scheduledm0_.userId as userId29_, scheduledm0_.profileId as profileId29_, scheduledm0_.profileType as profileT9_29_, scheduledm0_.picUrl as picUrl29_, scheduledm0_.status as status29_, scheduledm0_.socialprofileName as socialp12_29_, scheduledm0_.url as url29_, scheduledm0_.link as link29_, scheduledm0_.calendertime as calende15_29_, scheduledm0_.mediaType as mediaType29_ from ScheduledMessage scheduledm0_ where scheduledm0_.id=? and scheduledm0_.userId=? ] + Name:p1 - Value:20005 Name:p2 - Value:48 +[SQL: select scheduledm0_.id as id29_, scheduledm0_.shareMessage as shareMes2_29_, scheduledm0_.clientTime as clientTime29_, scheduledm0_.scheduleTime as schedule4_29_, scheduledm0_.localscheduletime as localsch5_29_, scheduledm0_.createTime as createTime29_, scheduledm0_.userId as userId29_, scheduledm0_.profileId as profileId29_, scheduledm0_.profileType as profileT9_29_, scheduledm0_.picUrl as picUrl29_, scheduledm0_.status as status29_, scheduledm0_.socialprofileName as socialp12_29_, scheduledm0_.url as url29_, scheduledm0_.link as link29_, scheduledm0_.calendertime as calende15_29_, scheduledm0_.mediaType as mediaType29_ from ScheduledMessage scheduledm0_ where scheduledm0_.id=? and scheduledm0_.userId=?] +2017-12-14 16:37:13.345 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:37:14.506 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:37:14.510 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:37:15.164 +05:30 [Fatal] Sequence contains no elements +2017-12-14 16:37:15.166 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 16:37:25.791 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 16:37:25.791 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 16:37:25.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 16:37:25.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 16:37:25.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 75981.7659ms +2017-12-14 16:37:25.821 +05:30 [Information] Request finished in 76038.266ms 200 application/json; charset=utf-8 +2017-12-14 16:37:25.822 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" completed keep alive response. +2017-12-14 16:38:04.353 +05:30 [Debug] Connection id ""0HLA2S6L576VM"" received FIN. +2017-12-14 16:38:04.353 +05:30 [Debug] Connection id ""0HLA2S6L576VJ"" received FIN. +2017-12-14 16:38:04.353 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" received FIN. +2017-12-14 16:38:04.353 +05:30 [Debug] Connection id ""0HLA2S6L576VM"" disconnecting. +2017-12-14 16:38:04.353 +05:30 [Debug] Connection id ""0HLA2S6L576VL"" received FIN. +2017-12-14 16:38:04.354 +05:30 [Debug] Connection id ""0HLA2S6L576VJ"" disconnecting. +2017-12-14 16:38:04.354 +05:30 [Debug] Connection id ""0HLA2S6L576VM"" sending FIN. +2017-12-14 16:38:04.354 +05:30 [Debug] Connection id ""0HLA2S6L576VJ"" sending FIN. +2017-12-14 16:38:04.355 +05:30 [Debug] Connection id ""0HLA2S6L576VM"" sent FIN with status "0". +2017-12-14 16:38:04.355 +05:30 [Debug] Connection id ""0HLA2S6L576VM"" stopped. +2017-12-14 16:38:04.355 +05:30 [Debug] Connection id ""0HLA2S6L576VJ"" sent FIN with status "0". +2017-12-14 16:38:04.356 +05:30 [Debug] Connection id ""0HLA2S6L576VJ"" stopped. +2017-12-14 16:38:04.356 +05:30 [Debug] Connection id ""0HLA2S6L576VL"" disconnecting. +2017-12-14 16:38:04.354 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" disconnecting. +2017-12-14 16:38:04.357 +05:30 [Debug] Connection id ""0HLA2S6L576VL"" sending FIN. +2017-12-14 16:38:04.379 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" sending FIN. +2017-12-14 16:38:04.379 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" sent FIN with status "0". +2017-12-14 16:38:04.380 +05:30 [Debug] Connection id ""0HLA2S6L576VK"" stopped. +2017-12-14 16:38:04.379 +05:30 [Debug] Connection id ""0HLA2S6L576VL"" sent FIN with status "0". +2017-12-14 16:38:04.380 +05:30 [Debug] Connection id ""0HLA2S6L576VL"" stopped. +2017-12-14 16:39:54.019 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" received FIN. +2017-12-14 16:39:54.019 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" received FIN. +2017-12-14 16:39:54.020 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" disconnecting. +2017-12-14 16:39:54.021 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" sending FIN. +2017-12-14 16:39:54.021 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" disconnecting. +2017-12-14 16:39:54.022 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" sent FIN with status "0". +2017-12-14 16:39:54.022 +05:30 [Debug] Connection id ""0HLA2S6L576VI"" stopped. +2017-12-14 16:39:54.022 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" sending FIN. +2017-12-14 16:39:54.023 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" sent FIN with status "0". +2017-12-14 16:39:54.023 +05:30 [Debug] Connection id ""0HLA2S6L576VH"" stopped. +2017-12-14 17:07:54.003 +05:30 [Debug] Hosting starting +2017-12-14 17:07:55.678 +05:30 [Debug] Hosting started +2017-12-14 17:07:55.757 +05:30 [Debug] Connection id ""0HLA2SSF63LQ9"" started. +2017-12-14 17:07:55.780 +05:30 [Debug] Connection id ""0HLA2SSF63LQA"" started. +2017-12-14 17:07:56.235 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-14 17:07:56.265 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-14 17:07:56.388 +05:30 [Information] Request finished in 190.2001ms 200 +2017-12-14 17:07:56.568 +05:30 [Debug] Connection id ""0HLA2SSF63LQ9"" completed keep alive response. +2017-12-14 17:07:59.106 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:07:59.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:07:59.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-14 17:07:59.643 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"64899a11-165b-4502-9749-0578c124085e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-14 17:08:00.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:08:00.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-14 17:08:01.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-14 17:08:01.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-14 17:08:01.622 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:08:01.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:08:01.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:08:02.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 2521.7448ms +2017-12-14 17:08:02.831 +05:30 [Information] Request finished in 6691.9736ms 200 application/json; charset=utf-8 +2017-12-14 17:08:02.834 +05:30 [Debug] Connection id ""0HLA2SSF63LQA"" completed keep alive response. +2017-12-14 17:08:06.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:08:15.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:08:15.976 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:08:16.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:08:16.031 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15976.1379ms +2017-12-14 17:08:16.066 +05:30 [Information] Request finished in 16947.8804ms 200 application/json; charset=utf-8 +2017-12-14 17:08:16.067 +05:30 [Debug] Connection id ""0HLA2SSF63LQ9"" completed keep alive response. +2017-12-14 17:08:26.742 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:08:26.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:08:26.744 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:08:28.429 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:08:28.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:08:28.437 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:08:29.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:08:30.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:08:30.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:08:30.410 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:08:30.412 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3666.3475ms +2017-12-14 17:08:30.414 +05:30 [Information] Request finished in 3671.6782ms 200 application/json; charset=utf-8 +2017-12-14 17:08:30.414 +05:30 [Debug] Connection id ""0HLA2SSF63LQA"" completed keep alive response. +2017-12-14 17:08:30.466 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:08:30.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:08:30.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:08:31.486 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:08:32.088 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:08:32.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:08:32.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:08:32.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3652.6517ms +2017-12-14 17:08:32.100 +05:30 [Information] Request finished in 3673.6388ms 200 application/json; charset=utf-8 +2017-12-14 17:08:32.101 +05:30 [Debug] Connection id ""0HLA2SSF63LQ9"" completed keep alive response. +2017-12-14 17:08:33.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:36:01.398 +05:30 [Debug] Hosting starting +2017-12-14 17:36:01.632 +05:30 [Debug] Hosting started +2017-12-14 17:36:01.741 +05:30 [Debug] Connection id ""0HLA2TC5KT9HN"" started. +2017-12-14 17:36:01.747 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" started. +2017-12-14 17:36:01.925 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-14 17:36:01.924 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-14 17:36:01.998 +05:30 [Information] Request finished in 103.4787ms 200 +2017-12-14 17:36:02.043 +05:30 [Debug] Connection id ""0HLA2TC5KT9HN"" completed keep alive response. +2017-12-14 17:36:03.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-14 17:36:03.978 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"8010c046-a2ba-4f55-8005-f1f349855a61"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-14 17:36:04.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-14 17:36:04.379 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-14 17:36:04.384 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-14 17:36:04.446 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:36:04.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:36:04.570 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:36:04.975 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 727.6845ms +2017-12-14 17:36:05.072 +05:30 [Information] Request finished in 3193.4738ms 200 application/json; charset=utf-8 +2017-12-14 17:36:05.075 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" completed keep alive response. +2017-12-14 17:36:05.087 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:36:05.088 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:36:05.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:36:05.237 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-14 17:36:05.242 +05:30 [Debug] Request did not match any routes. +2017-12-14 17:36:05.279 +05:30 [Debug] The request path "" does not match the path filter +2017-12-14 17:36:05.283 +05:30 [Information] Request finished in 52.1335ms 404 +2017-12-14 17:36:05.284 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" completed keep alive response. +2017-12-14 17:36:08.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:36:16.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:36:16.104 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:36:16.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:36:16.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11014.5557ms +2017-12-14 17:36:16.113 +05:30 [Information] Request finished in 11023.1402ms 200 application/json; charset=utf-8 +2017-12-14 17:36:16.114 +05:30 [Debug] Connection id ""0HLA2TC5KT9HN"" completed keep alive response. +2017-12-14 17:36:28.008 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:36:28.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:36:28.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:36:30.129 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:36:30.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:36:30.663 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:36:30.664 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:36:30.666 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2651.8701ms +2017-12-14 17:36:30.669 +05:30 [Information] Request finished in 2711.8955ms 200 application/json; charset=utf-8 +2017-12-14 17:36:30.670 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" completed keep alive response. +2017-12-14 17:36:30.729 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:36:30.731 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:36:30.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:36:33.783 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:36:34.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:36:34.313 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:36:34.314 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:36:34.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3583.3449ms +2017-12-14 17:36:34.320 +05:30 [Information] Request finished in 3592.6225ms 200 application/json; charset=utf-8 +2017-12-14 17:36:34.320 +05:30 [Debug] Connection id ""0HLA2TC5KT9HN"" completed keep alive response. +2017-12-14 17:36:34.347 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:36:34.348 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:36:34.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:36:37.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:36:37.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:36:37.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:36:37.924 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:36:37.925 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3575.863ms +2017-12-14 17:36:37.926 +05:30 [Information] Request finished in 3580.1776ms 200 application/json; charset=utf-8 +2017-12-14 17:36:37.927 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" completed keep alive response. +2017-12-14 17:37:51.772 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" received FIN. +2017-12-14 17:37:51.772 +05:30 [Debug] Connection id ""0HLA2TC5KT9HN"" received FIN. +2017-12-14 17:37:51.776 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" disconnecting. +2017-12-14 17:37:51.777 +05:30 [Debug] Connection id ""0HLA2TC5KT9HN"" disconnecting. +2017-12-14 17:37:51.780 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" sending FIN. +2017-12-14 17:37:51.780 +05:30 [Debug] Connection id ""0HLA2TC5KT9HN"" sending FIN. +2017-12-14 17:37:51.793 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" sent FIN with status "0". +2017-12-14 17:37:51.793 +05:30 [Debug] Connection id ""0HLA2TC5KT9HN"" sent FIN with status "0". +2017-12-14 17:37:51.798 +05:30 [Debug] Connection id ""0HLA2TC5KT9HN"" stopped. +2017-12-14 17:37:51.798 +05:30 [Debug] Connection id ""0HLA2TC5KT9HO"" stopped. +2017-12-14 17:40:12.508 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" started. +2017-12-14 17:40:12.533 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:40:12.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:40:12.534 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:40:14.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:40:15.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:40:15.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:40:15.217 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:40:15.218 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2682.6614ms +2017-12-14 17:40:15.220 +05:30 [Information] Request finished in 2710.8854ms 200 application/json; charset=utf-8 +2017-12-14 17:40:15.220 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:40:28.629 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:40:28.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:40:28.630 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:40:31.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:40:31.997 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" started. +2017-12-14 17:40:32.031 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:40:32.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:40:32.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:40:32.215 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:40:32.215 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:40:32.227 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:40:32.230 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3596.7465ms +2017-12-14 17:40:32.248 +05:30 [Information] Request finished in 3618.4757ms 200 application/json; charset=utf-8 +2017-12-14 17:40:32.255 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:40:35.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:40:35.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:40:35.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:40:35.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:40:35.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3646.0421ms +2017-12-14 17:40:35.702 +05:30 [Information] Request finished in 3692.3325ms 200 application/json; charset=utf-8 +2017-12-14 17:40:35.703 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" completed keep alive response. +2017-12-14 17:40:35.735 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-14 17:40:35.736 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-14 17:40:35.754 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-14 17:40:37.117 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:40:37.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:40:37.118 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:40:38.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-14 17:40:40.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:40:40.913 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:40:40.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:40:40.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:40:41.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5290.139ms +2017-12-14 17:40:41.047 +05:30 [Information] Request finished in 5321.6493ms 200 application/json; charset=utf-8 +2017-12-14 17:40:41.047 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:40:42.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:40:42.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:40:42.206 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:40:42.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5088.2558ms +2017-12-14 17:40:42.210 +05:30 [Information] Request finished in 5099.1081ms 200 application/json; charset=utf-8 +2017-12-14 17:40:42.211 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" completed keep alive response. +2017-12-14 17:40:42.220 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-14 17:40:42.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-14 17:40:42.222 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-14 17:40:49.371 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-14 17:40:51.043 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:40:51.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:40:51.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:40:51.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8821.7223ms +2017-12-14 17:40:51.049 +05:30 [Information] Request finished in 8831.3047ms 200 application/json; charset=utf-8 +2017-12-14 17:40:51.049 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:40:51.130 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:40:51.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:40:51.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:40:54.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:40:54.696 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:40:54.697 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:40:54.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:40:54.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3566.3172ms +2017-12-14 17:40:54.701 +05:30 [Information] Request finished in 3570.8141ms 200 application/json; charset=utf-8 +2017-12-14 17:40:54.701 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" completed keep alive response. +2017-12-14 17:40:54.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-14 17:40:54.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:40:54.760 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:40:56.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-14 17:40:58.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:40:58.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:40:58.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:40:58.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3883.2044ms +2017-12-14 17:40:58.646 +05:30 [Information] Request finished in 3889.4936ms 200 application/json; charset=utf-8 +2017-12-14 17:40:58.647 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:41:00.769 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:41:00.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:41:00.770 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:41:00.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:41:00.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:41:00.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:41:00.775 +05:30 [Debug] Connection id ""0HLA2TC5KT9HR"" started. +2017-12-14 17:41:00.775 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:41:00.776 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:41:00.777 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:41:00.787 +05:30 [Debug] Connection id ""0HLA2TC5KT9HS"" started. +2017-12-14 17:41:00.788 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:41:00.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:41:00.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:41:00.932 +05:30 [Debug] Connection id ""0HLA2TC5KT9HT"" started. +2017-12-14 17:41:00.934 +05:30 [Debug] Connection id ""0HLA2TC5KT9HU"" started. +2017-12-14 17:41:00.958 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:41:00.961 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:41:00.962 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:41:00.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:41:00.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:41:00.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:41:03.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:41:03.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:41:03.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:41:03.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:41:03.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:41:04.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:41:04.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:41:04.228 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:41:04.228 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:41:04.229 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:41:04.230 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3253.0588ms +2017-12-14 17:41:04.232 +05:30 [Information] Request finished in 3259.8472ms 200 application/json; charset=utf-8 +2017-12-14 17:41:04.233 +05:30 [Debug] Connection id ""0HLA2TC5KT9HU"" completed keep alive response. +2017-12-14 17:41:04.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 17:41:04.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 17:41:04.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 17:41:04.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:41:04.467 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:41:04.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:41:04.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:41:04.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3699.737ms +2017-12-14 17:41:04.475 +05:30 [Information] Request finished in 3706.0333ms 200 application/json; charset=utf-8 +2017-12-14 17:41:04.475 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" completed keep alive response. +2017-12-14 17:41:06.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:41:06.118 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:41:06.118 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:41:06.120 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:41:06.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5340.2041ms +2017-12-14 17:41:06.138 +05:30 [Information] Request finished in 5350.0151ms 200 application/json; charset=utf-8 +2017-12-14 17:41:06.139 +05:30 [Debug] Connection id ""0HLA2TC5KT9HS"" completed keep alive response. +2017-12-14 17:41:06.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:41:06.588 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:41:06.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:41:06.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:41:06.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:41:06.590 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:41:06.590 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:41:06.591 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:41:06.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5814.4534ms +2017-12-14 17:41:06.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5628.9137ms +2017-12-14 17:41:06.615 +05:30 [Information] Request finished in 5838.7276ms 200 application/json; charset=utf-8 +2017-12-14 17:41:06.615 +05:30 [Debug] Connection id ""0HLA2TC5KT9HR"" completed keep alive response. +2017-12-14 17:41:06.615 +05:30 [Information] Request finished in 5680.392ms 200 application/json; charset=utf-8 +2017-12-14 17:41:06.616 +05:30 [Debug] Connection id ""0HLA2TC5KT9HT"" completed keep alive response. +2017-12-14 17:41:07.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:41:09.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:41:09.858 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:41:09.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:41:09.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:41:09.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5679.5803ms +2017-12-14 17:41:09.921 +05:30 [Information] Request finished in 5685.6477ms 200 application/json; charset=utf-8 +2017-12-14 17:41:09.922 +05:30 [Debug] Connection id ""0HLA2TC5KT9HU"" completed keep alive response. +2017-12-14 17:41:13.937 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:41:14.109 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:41:14.716 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:41:14.717 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:41:25.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:41:25.083 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:41:25.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:41:25.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:41:25.099 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24322.0518ms +2017-12-14 17:41:25.103 +05:30 [Information] Request finished in 24331.294ms 200 application/json; charset=utf-8 +2017-12-14 17:41:25.104 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:42:12.529 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" received FIN. +2017-12-14 17:42:12.529 +05:30 [Debug] Connection id ""0HLA2TC5KT9HR"" received FIN. +2017-12-14 17:42:12.530 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" disconnecting. +2017-12-14 17:42:12.530 +05:30 [Debug] Connection id ""0HLA2TC5KT9HT"" received FIN. +2017-12-14 17:42:12.530 +05:30 [Debug] Connection id ""0HLA2TC5KT9HS"" received FIN. +2017-12-14 17:42:12.531 +05:30 [Debug] Connection id ""0HLA2TC5KT9HR"" disconnecting. +2017-12-14 17:42:12.554 +05:30 [Debug] Connection id ""0HLA2TC5KT9HT"" disconnecting. +2017-12-14 17:42:12.554 +05:30 [Debug] Connection id ""0HLA2TC5KT9HR"" sending FIN. +2017-12-14 17:42:12.554 +05:30 [Debug] Connection id ""0HLA2TC5KT9HS"" disconnecting. +2017-12-14 17:42:12.574 +05:30 [Debug] Connection id ""0HLA2TC5KT9HT"" sending FIN. +2017-12-14 17:42:12.574 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:42:12.575 +05:30 [Debug] Connection id ""0HLA2TC5KT9HT"" sent FIN with status "0". +2017-12-14 17:42:12.575 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 17:42:12.575 +05:30 [Debug] Connection id ""0HLA2TC5KT9HT"" stopped. +2017-12-14 17:42:12.575 +05:30 [Debug] Connection id ""0HLA2TC5KT9HR"" sent FIN with status "0". +2017-12-14 17:42:12.576 +05:30 [Debug] Connection id ""0HLA2TC5KT9HR"" stopped. +2017-12-14 17:42:12.531 +05:30 [Debug] Connection id ""0HLA2TC5KT9HU"" received FIN. +2017-12-14 17:42:12.576 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" sending FIN. +2017-12-14 17:42:12.577 +05:30 [Debug] Connection id ""0HLA2TC5KT9HS"" sending FIN. +2017-12-14 17:42:12.577 +05:30 [Debug] Connection id ""0HLA2TC5KT9HU"" disconnecting. +2017-12-14 17:42:12.577 +05:30 [Debug] Connection id ""0HLA2TC5KT9HS"" sent FIN with status "0". +2017-12-14 17:42:12.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 17:42:12.577 +05:30 [Debug] Connection id ""0HLA2TC5KT9HS"" stopped. +2017-12-14 17:42:12.578 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" sent FIN with status "0". +2017-12-14 17:42:12.578 +05:30 [Debug] Connection id ""0HLA2TC5KT9HQ"" stopped. +2017-12-14 17:42:12.578 +05:30 [Debug] Connection id ""0HLA2TC5KT9HU"" sending FIN. +2017-12-14 17:42:12.578 +05:30 [Debug] Connection id ""0HLA2TC5KT9HU"" sent FIN with status "0". +2017-12-14 17:42:12.579 +05:30 [Debug] Connection id ""0HLA2TC5KT9HU"" stopped. +2017-12-14 17:42:15.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:42:19.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:42:19.889 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:42:19.890 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:42:19.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:42:19.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7375.8642ms +2017-12-14 17:42:19.956 +05:30 [Information] Request finished in 7401.602ms 200 application/json; charset=utf-8 +2017-12-14 17:42:19.956 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:42:19.999 +05:30 [Debug] Connection id ""0HLA2TC5KT9HV"" started. +2017-12-14 17:42:20.000 +05:30 [Debug] Connection id ""0HLA2TC5KT9I0"" started. +2017-12-14 17:42:20.002 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" started. +2017-12-14 17:42:20.007 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 17:42:20.015 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 17:42:20.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 17:42:20.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 17:42:20.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 17:42:20.021 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:42:20.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:42:20.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 17:42:20.022 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 17:42:20.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:42:20.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 17:42:20.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 17:42:23.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:42:23.144 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 17:42:23.176 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:42:23.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:42:50.211 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" started. +2017-12-14 17:42:50.263 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:42:51.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:42:51.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:42:51.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:42:51.548 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:42:51.550 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:42:51.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:42:57.272 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 37205.107ms +2017-12-14 17:42:57.365 +05:30 [Information] Request finished in 37358.7846ms 200 application/json; charset=utf-8 +2017-12-14 17:42:57.365 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" completed keep alive response. +2017-12-14 17:42:59.517 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:43:00.008 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:00.008 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:00.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:00.009 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:01.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 8504.8325ms +2017-12-14 17:43:02.927 +05:30 [Information] Request finished in 12640.0307ms 200 application/json; charset=utf-8 +2017-12-14 17:43:12.607 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" completed keep alive response. +2017-12-14 17:43:17.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:17.269 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:17.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:17.270 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:17.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 57260.5304ms +2017-12-14 17:43:17.281 +05:30 [Information] Request finished in 57289.5067ms 200 application/json; charset=utf-8 +2017-12-14 17:43:17.281 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:43:18.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:18.122 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:18.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:18.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:18.125 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 58101.7959ms +2017-12-14 17:43:18.130 +05:30 [Information] Request finished in 58124.2826ms 200 application/json; charset=utf-8 +2017-12-14 17:43:18.130 +05:30 [Debug] Connection id ""0HLA2TC5KT9I0"" completed keep alive response. +2017-12-14 17:43:19.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:19.794 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:19.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:19.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:19.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 59849.4542ms +2017-12-14 17:43:19.967 +05:30 [Information] Request finished in 59900.3914ms 200 application/json; charset=utf-8 +2017-12-14 17:43:19.967 +05:30 [Debug] Connection id ""0HLA2TC5KT9HV"" completed keep alive response. +2017-12-14 17:43:24.694 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:43:24.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:43:24.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:43:27.724 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:43:28.268 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:28.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:28.270 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:28.272 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3574.5234ms +2017-12-14 17:43:28.274 +05:30 [Information] Request finished in 3579.09ms 200 application/json; charset=utf-8 +2017-12-14 17:43:28.274 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" completed keep alive response. +2017-12-14 17:43:28.279 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 17:43:28.280 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:43:28.280 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:43:31.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 17:43:33.452 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:33.452 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:33.459 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:33.466 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5178.7827ms +2017-12-14 17:43:33.480 +05:30 [Information] Request finished in 5199.7751ms 200 application/json; charset=utf-8 +2017-12-14 17:43:33.480 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" completed keep alive response. +2017-12-14 17:43:37.604 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:43:37.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:43:37.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:43:37.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:43:37.654 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:43:37.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:43:37.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:43:37.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:43:37.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:43:37.708 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:43:37.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:43:37.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:43:37.908 +05:30 [Debug] Connection id ""0HLA2TC5KT9I3"" started. +2017-12-14 17:43:37.914 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:43:37.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:43:37.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:43:39.393 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:43:39.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:43:39.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:43:43.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:43:43.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:43:43.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:43:43.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:43:43.600 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:43:43.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:43:44.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:44.067 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:44.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:44.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:44.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6462.8257ms +2017-12-14 17:43:44.072 +05:30 [Information] Request finished in 6495.5051ms 200 application/json; charset=utf-8 +2017-12-14 17:43:44.073 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:43:44.079 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:43:44.080 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 17:43:44.080 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 17:43:44.272 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:44.273 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:44.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:44.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:44.275 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6619.7859ms +2017-12-14 17:43:44.277 +05:30 [Information] Request finished in 6690.4142ms 200 application/json; charset=utf-8 +2017-12-14 17:43:44.277 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" completed keep alive response. +2017-12-14 17:43:44.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:44.658 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:44.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:44.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:44.662 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6743.1344ms +2017-12-14 17:43:44.670 +05:30 [Information] Request finished in 6760.5688ms 200 application/json; charset=utf-8 +2017-12-14 17:43:44.670 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" completed keep alive response. +2017-12-14 17:43:44.737 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:44.737 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:44.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:44.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:44.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7062.979ms +2017-12-14 17:43:44.746 +05:30 [Information] Request finished in 7152.1947ms 200 application/json; charset=utf-8 +2017-12-14 17:43:44.746 +05:30 [Debug] Connection id ""0HLA2TC5KT9I0"" completed keep alive response. +2017-12-14 17:43:44.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:44.781 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:44.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:44.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:44.783 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5388.2221ms +2017-12-14 17:43:44.785 +05:30 [Information] Request finished in 5391.9738ms 200 application/json; charset=utf-8 +2017-12-14 17:43:44.785 +05:30 [Debug] Connection id ""0HLA2TC5KT9I3"" completed keep alive response. +2017-12-14 17:43:47.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:43:47.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:43:47.446 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:43:47.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:43:47.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:43:47.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3367.1799ms +2017-12-14 17:43:47.454 +05:30 [Information] Request finished in 3374.576ms 200 application/json; charset=utf-8 +2017-12-14 17:43:47.454 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:43:47.480 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:43:47.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:43:47.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:43:47.482 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 17:43:47.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 17:43:47.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 17:43:47.506 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:43:47.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:43:47.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:43:47.511 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 17:43:47.513 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 17:43:47.513 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 17:43:47.515 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 17:43:47.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 17:43:47.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 17:43:50.200 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 17:43:50.617 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:43:50.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:43:50.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:43:50.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:44:16.050 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:44:16.051 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:44:16.051 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:44:16.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:44:16.073 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:44:16.074 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:44:16.074 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:44:16.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 28591.6251ms +2017-12-14 17:44:16.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:44:16.124 +05:30 [Information] Request finished in 28610.8314ms 200 application/json; charset=utf-8 +2017-12-14 17:44:17.043 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" completed keep alive response. +2017-12-14 17:44:17.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 28595.8987ms +2017-12-14 17:44:17.144 +05:30 [Information] Request finished in 29570.0182ms 200 application/json; charset=utf-8 +2017-12-14 17:44:17.144 +05:30 [Debug] Connection id ""0HLA2TC5KT9I3"" completed keep alive response. +2017-12-14 17:44:29.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:44:29.379 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:44:29.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:44:29.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:44:29.417 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 41869.9801ms +2017-12-14 17:44:30.991 +05:30 [Information] Request finished in 42916.8667ms 200 application/json; charset=utf-8 +2017-12-14 17:44:30.991 +05:30 [Debug] Connection id ""0HLA2TC5KT9I0"" completed keep alive response. +2017-12-14 17:44:32.507 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:44:34.033 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:44:34.783 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:44:34.787 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:44:34.787 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:44:34.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:44:34.790 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 47284.1076ms +2017-12-14 17:44:34.792 +05:30 [Information] Request finished in 47314.3407ms 200 application/json; charset=utf-8 +2017-12-14 17:44:34.793 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" completed keep alive response. +2017-12-14 17:44:35.403 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:44:35.404 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:44:35.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:44:35.823 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:44:35.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:44:35.829 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:44:35.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 48309.8186ms +2017-12-14 17:44:35.841 +05:30 [Information] Request finished in 48360.1381ms 200 application/json; charset=utf-8 +2017-12-14 17:44:35.842 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" completed keep alive response. +2017-12-14 17:44:46.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:44:46.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:44:46.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:44:46.140 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:44:46.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 68432.6281ms +2017-12-14 17:44:46.145 +05:30 [Information] Request finished in 68557.1422ms 200 application/json; charset=utf-8 +2017-12-14 17:44:46.146 +05:30 [Debug] Connection id ""0HLA2TC5KT9HV"" completed keep alive response. +2017-12-14 17:46:15.292 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" received FIN. +2017-12-14 17:46:15.293 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" received FIN. +2017-12-14 17:46:15.293 +05:30 [Debug] Connection id ""0HLA2TC5KT9I3"" received FIN. +2017-12-14 17:46:15.293 +05:30 [Debug] Connection id ""0HLA2TC5KT9HV"" received FIN. +2017-12-14 17:46:15.293 +05:30 [Debug] Connection id ""0HLA2TC5KT9I0"" received FIN. +2017-12-14 17:46:15.293 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" started. +2017-12-14 17:46:15.293 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" received FIN. +2017-12-14 17:46:15.296 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" disconnecting. +2017-12-14 17:46:15.318 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" disconnecting. +2017-12-14 17:46:15.318 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" sending FIN. +2017-12-14 17:46:15.319 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" sending FIN. +2017-12-14 17:46:15.318 +05:30 [Debug] Connection id ""0HLA2TC5KT9I0"" disconnecting. +2017-12-14 17:46:15.319 +05:30 [Debug] Connection id ""0HLA2TC5KT9HV"" disconnecting. +2017-12-14 17:46:15.319 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" disconnecting. +2017-12-14 17:46:15.319 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" sent FIN with status "0". +2017-12-14 17:46:15.320 +05:30 [Debug] Connection id ""0HLA2TC5KT9I3"" disconnecting. +2017-12-14 17:46:15.320 +05:30 [Debug] Connection id ""0HLA2TC5KT9I2"" stopped. +2017-12-14 17:46:15.319 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" sent FIN with status "0". +2017-12-14 17:46:15.321 +05:30 [Debug] Connection id ""0HLA2TC5KT9HV"" sending FIN. +2017-12-14 17:46:15.321 +05:30 [Debug] Connection id ""0HLA2TC5KT9I1"" stopped. +2017-12-14 17:46:15.321 +05:30 [Debug] Connection id ""0HLA2TC5KT9I0"" sending FIN. +2017-12-14 17:46:15.321 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" sending FIN. +2017-12-14 17:46:15.321 +05:30 [Debug] Connection id ""0HLA2TC5KT9HV"" sent FIN with status "0". +2017-12-14 17:46:15.321 +05:30 [Debug] Connection id ""0HLA2TC5KT9HV"" stopped. +2017-12-14 17:46:15.321 +05:30 [Debug] Connection id ""0HLA2TC5KT9I3"" sending FIN. +2017-12-14 17:46:15.322 +05:30 [Debug] Connection id ""0HLA2TC5KT9I3"" sent FIN with status "0". +2017-12-14 17:46:15.322 +05:30 [Debug] Connection id ""0HLA2TC5KT9I3"" stopped. +2017-12-14 17:46:15.322 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" sent FIN with status "0". +2017-12-14 17:46:15.323 +05:30 [Debug] Connection id ""0HLA2TC5KT9HP"" stopped. +2017-12-14 17:46:15.323 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 17:46:15.323 +05:30 [Debug] Connection id ""0HLA2TC5KT9I0"" sent FIN with status "0". +2017-12-14 17:46:15.323 +05:30 [Debug] Connection id ""0HLA2TC5KT9I0"" stopped. +2017-12-14 17:46:15.323 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 17:46:15.324 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 17:46:18.407 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:46:20.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:46:20.898 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:46:20.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:46:20.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:46:20.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5576.4374ms +2017-12-14 17:46:20.907 +05:30 [Information] Request finished in 5586.7526ms 200 application/json; charset=utf-8 +2017-12-14 17:46:20.908 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:46:32.776 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 17:46:32.778 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 17:46:32.778 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 17:46:35.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:46:38.317 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:46:38.321 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:46:38.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:46:38.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:46:38.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5555.8387ms +2017-12-14 17:46:38.341 +05:30 [Information] Request finished in 5564.1927ms 200 application/json; charset=utf-8 +2017-12-14 17:46:38.342 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:46:43.862 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" started. +2017-12-14 17:46:43.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=133524017182208 +2017-12-14 17:46:43.865 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-14 17:46:43.866 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=133524017182208&userId=48&skip=0&count=10&type=undefined +2017-12-14 17:46:43.866 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-14 17:46:43.866 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-14 17:46:43.867 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-14 17:46:45.101 +05:30 [Debug] Connection id ""0HLA2TC5KT9I6"" started. +2017-12-14 17:46:45.110 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-14 17:46:45.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-14 17:46:45.112 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-14 17:46:46.925 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["133524017182208"]) - ModelState is Valid +2017-12-14 17:46:46.925 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["133524017182208", "48", "0", "10"]) - ModelState is Valid +2017-12-14 17:46:47.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:46:47.336 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:46:47.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:46:47.342 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:46:47.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 3523.173ms +2017-12-14 17:46:47.421 +05:30 [Information] Request finished in 3555.4061ms 200 application/json; charset=utf-8 +2017-12-14 17:46:47.422 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:46:47.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:46:47.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:46:47.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:46:47.502 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:46:47.508 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3638.2374ms +2017-12-14 17:46:47.514 +05:30 [Information] Request finished in 3650.098ms 200 application/json; charset=utf-8 +2017-12-14 17:46:47.515 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:46:48.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:46:51.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:46:51.252 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:46:51.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:46:51.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:46:51.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 6140.469ms +2017-12-14 17:46:51.258 +05:30 [Information] Request finished in 6153.7491ms 200 application/json; charset=utf-8 +2017-12-14 17:46:51.258 +05:30 [Debug] Connection id ""0HLA2TC5KT9I6"" completed keep alive response. +2017-12-14 17:46:52.283 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPagesDet application/x-www-form-urlencoded 227 +2017-12-14 17:46:52.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPagesDet"'. +2017-12-14 17:46:52.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" +2017-12-14 17:46:55.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAEZACC28TSPsZBKHBrd06apdTlmaDdXIO2mSGwuGSuVgkEcMsCOsuettE0AorABRdB88Nnyue3V94K8PMQ6ZCTdlg4Vfc6KHqKI82egjF9l3Anr95ZBXSOCWXbioRY0YOZBB1ZCMyBEhCozMjfc2KYRZAPYf8tXVQZDZD", "48"]) - ModelState is Valid +2017-12-14 17:47:00.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:00.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:00.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:00.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" in 8114.0287ms +2017-12-14 17:47:00.407 +05:30 [Information] Request finished in 8124.6257ms 200 application/json; charset=utf-8 +2017-12-14 17:47:00.408 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:47:00.661 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:47:00.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:47:00.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:47:03.695 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:47:04.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:04.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:04.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:04.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3635.6657ms +2017-12-14 17:47:04.303 +05:30 [Information] Request finished in 3641.9225ms 200 application/json; charset=utf-8 +2017-12-14 17:47:04.304 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:47:04.318 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 17:47:04.318 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:47:04.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:47:07.362 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 17:47:09.050 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:09.051 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:09.052 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:09.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4733.5684ms +2017-12-14 17:47:09.056 +05:30 [Information] Request finished in 4736.9422ms 200 application/json; charset=utf-8 +2017-12-14 17:47:09.057 +05:30 [Debug] Connection id ""0HLA2TC5KT9I6"" completed keep alive response. +2017-12-14 17:47:10.017 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" started. +2017-12-14 17:47:10.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:47:10.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:47:10.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:47:10.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:47:10.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:47:10.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:47:10.021 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:47:10.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:47:10.025 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:47:10.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:47:10.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:47:10.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:47:10.084 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" started. +2017-12-14 17:47:10.084 +05:30 [Debug] Connection id ""0HLA2TC5KT9I9"" started. +2017-12-14 17:47:11.051 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:47:11.052 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:47:11.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:47:12.019 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:47:12.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:47:12.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:47:15.068 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:16.149 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:16.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:16.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:16.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:16.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:16.259 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:16.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:16.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:16.262 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5207.6598ms +2017-12-14 17:47:16.266 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:16.267 +05:30 [Information] Request finished in 5216.5054ms 200 application/json; charset=utf-8 +2017-12-14 17:47:16.268 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" completed keep alive response. +2017-12-14 17:47:16.286 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 17:47:16.286 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 17:47:16.287 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 17:47:16.861 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:16.861 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:16.862 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:16.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:16.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6836.7477ms +2017-12-14 17:47:16.868 +05:30 [Information] Request finished in 6849.7885ms 200 application/json; charset=utf-8 +2017-12-14 17:47:16.868 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:47:16.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:16.913 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/ReconnFacebookPages?userId=48&groupId=48&accessToken=EAAKYvwDVmnUBANAlCfl5c5Wh6vy3MCZB5bxXOA16PgLU18Y4nEkBXFavVLoNhg3PqZCEXcWyBi4MH62PfugEhM3EMfLlixxRiaJmHoA0E9wTWTqylCcrGHVi66mpFbk1odgBrRcMeyQ3NddnGeTWBUZBbPzGcDZCq0bJOxBzXgZDZD 0 +2017-12-14 17:47:16.913 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/ReconnFacebookPages"'. +2017-12-14 17:47:16.913 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:16.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:16.916 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" +2017-12-14 17:47:16.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:16.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6897.1491ms +2017-12-14 17:47:16.922 +05:30 [Information] Request finished in 6903.5375ms 200 application/json; charset=utf-8 +2017-12-14 17:47:16.922 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" completed keep alive response. +2017-12-14 17:47:17.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:17.350 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:17.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:17.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:17.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5331.5425ms +2017-12-14 17:47:17.360 +05:30 [Information] Request finished in 5338.8686ms 200 application/json; charset=utf-8 +2017-12-14 17:47:17.361 +05:30 [Debug] Connection id ""0HLA2TC5KT9I9"" completed keep alive response. +2017-12-14 17:47:17.398 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:17.398 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:17.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:17.400 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:17.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7379.0492ms +2017-12-14 17:47:17.409 +05:30 [Information] Request finished in 7391.4018ms 200 application/json; charset=utf-8 +2017-12-14 17:47:17.409 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:47:19.360 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:19.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" with arguments (["48", "48", "EAAKYvwDVmnUBANAlCfl5c5Wh6vy3MCZB5bxXOA16PgLU18Y4nEkBXFavVLoNhg3PqZCEXcWyBi4MH62PfugEhM3EMfLlixxRiaJmHoA0E9wTWTqylCcrGHVi66mpFbk1odgBrRcMeyQ3NddnGeTWBUZBbPzGcDZCq0bJOxBzXgZDZD"]) - ModelState is Valid +2017-12-14 17:47:20.472 +05:30 [Error] {"id":"133524017182208","name":"QuickNews","fan_count":30,"cover":{"cover_id":"134326607101949","offset_x":0,"offset_y":46,"source":"https://scontent.xx.fbcdn.net/v/t31.0-8/s720x720/17758619_134326607101949_6049698260959437180_o.jpg?oh=64b76b8dba5eb490045575f23c9fb3c4&oe=5AD56886","id":"134326607101949"} +2017-12-14 17:47:21.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:21.900 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:21.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:21.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:21.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5615.3423ms +2017-12-14 17:47:21.907 +05:30 [Information] Request finished in 5620.7233ms 200 application/json; charset=utf-8 +2017-12-14 17:47:21.907 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" completed keep alive response. +2017-12-14 17:47:22.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:22.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:22.294 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-14 17:47:22.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:22.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" in 5379.8784ms +2017-12-14 17:47:22.300 +05:30 [Information] Request finished in 5408.7732ms 200 text/plain; charset=utf-8 +2017-12-14 17:47:22.301 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:47:22.526 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:47:22.528 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:47:22.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:47:24.902 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:47:24.903 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:47:25.535 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:47:25.536 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:47:25.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:47:26.254 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:26.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:26.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:26.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3724.5937ms +2017-12-14 17:47:26.259 +05:30 [Information] Request finished in 3830.6137ms 200 application/json; charset=utf-8 +2017-12-14 17:47:26.259 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" completed keep alive response. +2017-12-14 17:47:26.267 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 17:47:26.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:47:26.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:47:29.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 17:47:31.008 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:31.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:31.012 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:31.015 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4744.4061ms +2017-12-14 17:47:31.022 +05:30 [Information] Request finished in 4756.1249ms 200 application/json; charset=utf-8 +2017-12-14 17:47:31.023 +05:30 [Debug] Connection id ""0HLA2TC5KT9I9"" completed keep alive response. +2017-12-14 17:47:32.054 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:47:32.055 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:47:32.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:47:32.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:47:32.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:47:32.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:47:32.059 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:47:32.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:47:32.071 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:47:32.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:47:32.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:47:32.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:47:32.163 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" started. +2017-12-14 17:47:32.164 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:47:32.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:47:32.165 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:47:32.167 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:47:32.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:47:32.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:47:34.175 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:34.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:34.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:34.731 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:34.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:34.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:34.734 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2677.1672ms +2017-12-14 17:47:34.736 +05:30 [Information] Request finished in 2687.5607ms 200 application/json; charset=utf-8 +2017-12-14 17:47:34.737 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:47:34.741 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 17:47:34.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 17:47:34.742 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 17:47:35.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:35.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:35.232 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:35.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:35.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:35.884 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:35.884 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:35.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:35.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3811.2006ms +2017-12-14 17:47:35.890 +05:30 [Information] Request finished in 3839.2883ms 200 application/json; charset=utf-8 +2017-12-14 17:47:35.890 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" completed keep alive response. +2017-12-14 17:47:36.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:36.313 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:36.313 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:36.314 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:36.315 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4230.2467ms +2017-12-14 17:47:36.318 +05:30 [Information] Request finished in 4264.5916ms 200 application/json; charset=utf-8 +2017-12-14 17:47:36.318 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:47:36.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:36.344 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:36.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:36.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:36.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26320.8743ms +2017-12-14 17:47:36.358 +05:30 [Information] Request finished in 26340.6286ms 200 application/json; charset=utf-8 +2017-12-14 17:47:36.359 +05:30 [Debug] Connection id ""0HLA2TC5KT9I6"" completed keep alive response. +2017-12-14 17:47:36.371 +05:30 [Debug] Connection id ""0HLA2TC5KT9I6"" received FIN. +2017-12-14 17:47:36.371 +05:30 [Debug] Connection id ""0HLA2TC5KT9I6"" disconnecting. +2017-12-14 17:47:36.374 +05:30 [Information] Connection id ""0HLA2TC5KT9I6"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:47:36.375 +05:30 [Debug] Connection id ""0HLA2TC5KT9I6"" sending FIN. +2017-12-14 17:47:36.376 +05:30 [Debug] Connection id ""0HLA2TC5KT9I6"" sent FIN with status "0". +2017-12-14 17:47:36.377 +05:30 [Debug] Connection id ""0HLA2TC5KT9I6"" stopped. +2017-12-14 17:47:36.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:36.426 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:36.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:36.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:36.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4261.6099ms +2017-12-14 17:47:36.432 +05:30 [Information] Request finished in 4268.8595ms 200 application/json; charset=utf-8 +2017-12-14 17:47:36.432 +05:30 [Debug] Connection id ""0HLA2TC5KT9I9"" completed keep alive response. +2017-12-14 17:47:36.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:36.504 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:36.505 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:36.506 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:36.507 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4334.7154ms +2017-12-14 17:47:36.508 +05:30 [Information] Request finished in 4344.0344ms 200 application/json; charset=utf-8 +2017-12-14 17:47:36.509 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" completed keep alive response. +2017-12-14 17:47:36.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:47:39.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:39.275 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:39.275 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:39.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:39.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4534.9717ms +2017-12-14 17:47:39.281 +05:30 [Information] Request finished in 4540.53ms 200 application/json; charset=utf-8 +2017-12-14 17:47:39.282 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:47:42.791 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:47:42.793 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:47:43.376 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:47:43.380 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:47:54.159 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:47:54.159 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:47:54.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:47:54.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:47:54.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 22107.3763ms +2017-12-14 17:47:54.170 +05:30 [Information] Request finished in 22116.7715ms 200 application/json; charset=utf-8 +2017-12-14 17:47:54.171 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" completed keep alive response. +2017-12-14 17:48:17.943 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=790900144392091&userId=48&skip=0&count=10&type=undefined +2017-12-14 17:48:17.943 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=790900144392091 +2017-12-14 17:48:17.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-14 17:48:17.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-14 17:48:17.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-14 17:48:17.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-14 17:48:20.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["790900144392091", "48", "0", "10"]) - ModelState is Valid +2017-12-14 17:48:20.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:20.275 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:20.275 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:20.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:20.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 2332.9442ms +2017-12-14 17:48:20.281 +05:30 [Information] Request finished in 2337.59ms 200 application/json; charset=utf-8 +2017-12-14 17:48:20.281 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:48:20.671 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-14 17:48:20.672 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-14 17:48:20.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-14 17:48:20.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["790900144392091"]) - ModelState is Valid +2017-12-14 17:48:21.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:21.554 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:21.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:21.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:21.572 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3612.7668ms +2017-12-14 17:48:21.576 +05:30 [Information] Request finished in 3632.7431ms 200 application/json; charset=utf-8 +2017-12-14 17:48:21.576 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" completed keep alive response. +2017-12-14 17:48:23.722 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:48:26.785 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:26.785 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:26.785 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:26.786 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:26.787 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 6113.9189ms +2017-12-14 17:48:26.790 +05:30 [Information] Request finished in 6118.1754ms 200 application/json; charset=utf-8 +2017-12-14 17:48:26.790 +05:30 [Debug] Connection id ""0HLA2TC5KT9I9"" completed keep alive response. +2017-12-14 17:48:27.315 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPagesDet application/x-www-form-urlencoded 227 +2017-12-14 17:48:27.315 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPagesDet"'. +2017-12-14 17:48:27.316 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" +2017-12-14 17:48:30.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAHmnLtLijl1KVFFqCuVDYtCTpFUCBnljzVkRZCtMnOkq42QZANe41ScQW0K9ch7KMsUMAPqc5fnwE5QSCcEoF0XWLjEg0ZB9VUYXtWwtqYZA51YqZC4roqEIkQ228506aq9KIjsWa7AjZBZCtgl2x8sfp4LYIdqaQZDZD", "48"]) - ModelState is Valid +2017-12-14 17:48:35.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:35.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:35.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:35.266 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" in 7950.3028ms +2017-12-14 17:48:35.272 +05:30 [Information] Request finished in 7954.9598ms 200 application/json; charset=utf-8 +2017-12-14 17:48:35.273 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" completed keep alive response. +2017-12-14 17:48:35.328 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:48:35.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:48:35.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:48:38.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:48:38.960 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:38.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:38.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:38.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3632.2779ms +2017-12-14 17:48:38.964 +05:30 [Information] Request finished in 3649.4383ms 200 application/json; charset=utf-8 +2017-12-14 17:48:38.965 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:48:38.980 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 17:48:38.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:48:38.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:48:42.017 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 17:48:43.655 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:43.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:43.656 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:43.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4676.5784ms +2017-12-14 17:48:43.681 +05:30 [Information] Request finished in 4683.5668ms 200 application/json; charset=utf-8 +2017-12-14 17:48:43.681 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" completed keep alive response. +2017-12-14 17:48:44.517 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:48:44.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:48:44.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:48:44.532 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:48:44.532 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:48:44.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:48:44.539 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:48:44.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:48:44.541 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:48:44.551 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:48:44.551 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:48:44.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:48:44.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:48:44.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:48:44.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:48:44.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:48:44.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:48:44.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:48:47.706 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:48:47.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:48:47.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:48:47.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:48:48.310 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:48.311 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:48.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:48.311 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:48.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3785.3182ms +2017-12-14 17:48:48.315 +05:30 [Information] Request finished in 3798.3071ms 200 application/json; charset=utf-8 +2017-12-14 17:48:48.315 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:48:48.323 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 17:48:48.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 17:48:48.324 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 17:48:48.506 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:48.506 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:48.506 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:48.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:48:48.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:48.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3956.987ms +2017-12-14 17:48:48.513 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:48:48.515 +05:30 [Information] Request finished in 3993.2977ms 200 application/json; charset=utf-8 +2017-12-14 17:48:48.516 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" completed keep alive response. +2017-12-14 17:48:48.817 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/ReconnFacebookPages?userId=48&groupId=48&accessToken=EAAKYvwDVmnUBADfHYodMfoYVZAWRnCd4WJZCWEw61OJBPMPy5JvwhF7TW2NYAAZBX5T2zTBuvBvXUut2J1nmwuSq79mWWZBUNtr7m4ZBE50m2JP8lIJSg8pAUMebi1vZCDcYSXz8ckIUb5YkNbF9ZB5RdkNL5TJko1HTqwAriObf82gpo9rbEKf 0 +2017-12-14 17:48:48.818 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/ReconnFacebookPages"'. +2017-12-14 17:48:48.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" +2017-12-14 17:48:48.864 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:48.864 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:48.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:48.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:48.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4324.0248ms +2017-12-14 17:48:48.870 +05:30 [Information] Request finished in 4353.5612ms 200 application/json; charset=utf-8 +2017-12-14 17:48:48.871 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" completed keep alive response. +2017-12-14 17:48:49.638 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:49.638 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:49.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:49.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:49.640 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4957.9757ms +2017-12-14 17:48:49.643 +05:30 [Information] Request finished in 4984.2614ms 200 application/json; charset=utf-8 +2017-12-14 17:48:49.643 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:48:49.737 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:49.737 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:49.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:49.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:49.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5056.1113ms +2017-12-14 17:48:49.743 +05:30 [Information] Request finished in 5081.279ms 200 application/json; charset=utf-8 +2017-12-14 17:48:49.744 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" completed keep alive response. +2017-12-14 17:48:51.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:48:51.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" with arguments (["48", "48", "EAAKYvwDVmnUBADfHYodMfoYVZAWRnCd4WJZCWEw61OJBPMPy5JvwhF7TW2NYAAZBX5T2zTBuvBvXUut2J1nmwuSq79mWWZBUNtr7m4ZBE50m2JP8lIJSg8pAUMebi1vZCDcYSXz8ckIUb5YkNbF9ZB5RdkNL5TJko1HTqwAriObf82gpo9rbEKf"]) - ModelState is Valid +2017-12-14 17:48:52.318 +05:30 [Error] {"id":"790900144392091","name":"Jolly LLB","fan_count":164,"cover":{"cover_id":"790900577725381","offset_x":0,"offset_y":29,"source":"https://scontent.xx.fbcdn.net/v/t1.0-9/16640891_790900577725381_791012941494452421_n.jpg?oh=e3121ff5b8c2219faccd11738a49e773&oe=5AD46AD2","id":"790900577725381"} +2017-12-14 17:48:53.831 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:53.831 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:53.832 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:53.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:53.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5508.8775ms +2017-12-14 17:48:53.838 +05:30 [Information] Request finished in 5514.2371ms 200 application/json; charset=utf-8 +2017-12-14 17:48:53.839 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:48:54.100 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:54.100 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:48:54.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-14 17:48:54.102 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:54.103 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" in 5284.0905ms +2017-12-14 17:48:54.107 +05:30 [Information] Request finished in 5289.748ms 200 text/plain; charset=utf-8 +2017-12-14 17:48:54.108 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" completed keep alive response. +2017-12-14 17:48:54.179 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:48:54.180 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:48:54.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:48:56.297 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:48:56.298 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:48:56.872 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:48:56.874 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:48:57.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:48:57.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:48:57.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:48:57.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:48:57.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3635.8346ms +2017-12-14 17:48:57.827 +05:30 [Information] Request finished in 3649.0639ms 200 application/json; charset=utf-8 +2017-12-14 17:48:57.828 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" completed keep alive response. +2017-12-14 17:48:57.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 17:48:57.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:48:57.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:49:00.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 17:49:02.615 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:02.616 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:02.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:02.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4779.4168ms +2017-12-14 17:49:02.622 +05:30 [Information] Request finished in 4785.0962ms 200 application/json; charset=utf-8 +2017-12-14 17:49:02.622 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:49:03.111 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:49:03.117 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:49:03.118 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:49:03.123 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:49:03.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:49:03.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:49:03.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:49:03.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:49:03.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:49:03.142 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:49:03.143 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:49:03.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:49:03.264 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:49:03.264 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:49:03.264 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:49:03.265 +05:30 [Debug] Connection id ""0HLA2TC5KT9IB"" started. +2017-12-14 17:49:03.270 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:49:03.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:49:03.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:49:05.341 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:49:06.061 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:06.061 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:06.062 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:06.062 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:06.064 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2919.6412ms +2017-12-14 17:49:06.067 +05:30 [Information] Request finished in 2957.2376ms 200 application/json; charset=utf-8 +2017-12-14 17:49:06.067 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:49:06.070 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 17:49:06.070 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 17:49:06.070 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 17:49:06.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:49:06.198 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:49:06.262 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:49:06.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:49:06.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:49:06.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:06.809 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:06.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:06.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:06.811 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3683.7111ms +2017-12-14 17:49:06.813 +05:30 [Information] Request finished in 3703.3792ms 200 application/json; charset=utf-8 +2017-12-14 17:49:06.813 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" completed keep alive response. +2017-12-14 17:49:07.273 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:07.274 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:07.274 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:07.275 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:07.276 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4157.0377ms +2017-12-14 17:49:07.278 +05:30 [Information] Request finished in 4168.3792ms 200 application/json; charset=utf-8 +2017-12-14 17:49:07.278 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" completed keep alive response. +2017-12-14 17:49:07.468 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:07.468 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:07.468 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:07.470 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:07.472 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4193.3254ms +2017-12-14 17:49:07.477 +05:30 [Information] Request finished in 4206.6216ms 200 application/json; charset=utf-8 +2017-12-14 17:49:07.477 +05:30 [Debug] Connection id ""0HLA2TC5KT9IB"" completed keep alive response. +2017-12-14 17:49:07.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:07.552 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:07.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:07.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:07.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4296.9889ms +2017-12-14 17:49:07.584 +05:30 [Information] Request finished in 4319.7799ms 200 application/json; charset=utf-8 +2017-12-14 17:49:07.587 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:49:07.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:07.638 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:07.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:07.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:07.678 +05:30 [Debug] Connection id ""0HLA2TC5KT9I9"" received FIN. +2017-12-14 17:49:07.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23113.9752ms +2017-12-14 17:49:07.683 +05:30 [Information] Request finished in 23165.3593ms 200 application/json; charset=utf-8 +2017-12-14 17:49:07.684 +05:30 [Debug] Connection id ""0HLA2TC5KT9I9"" completed keep alive response. +2017-12-14 17:49:07.689 +05:30 [Information] Connection id ""0HLA2TC5KT9I9"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:49:07.687 +05:30 [Debug] Connection id ""0HLA2TC5KT9I9"" disconnecting. +2017-12-14 17:49:07.694 +05:30 [Debug] Connection id ""0HLA2TC5KT9I9"" stopped. +2017-12-14 17:49:09.118 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:49:11.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:11.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:11.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:11.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:11.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5527.1788ms +2017-12-14 17:49:11.619 +05:30 [Information] Request finished in 5545.5114ms 200 application/json; charset=utf-8 +2017-12-14 17:49:11.620 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:49:11.672 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:49:11.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 17:49:11.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 17:49:14.664 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:49:14.665 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:49:14.706 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:49:14.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:14.939 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:14.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:14.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:14.941 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3267.2382ms +2017-12-14 17:49:14.943 +05:30 [Information] Request finished in 3271.3249ms 200 application/json; charset=utf-8 +2017-12-14 17:49:14.944 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" completed keep alive response. +2017-12-14 17:49:14.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 17:49:14.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 17:49:14.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 17:49:14.975 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 17:49:14.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 17:49:14.983 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 17:49:14.983 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:49:14.985 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:49:14.985 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:49:14.993 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 17:49:14.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 17:49:14.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 17:49:15.298 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:49:15.300 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:49:17.105 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 17:49:18.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:49:18.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:49:18.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:49:19.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:19.067 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:19.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:19.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:19.071 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4069.6392ms +2017-12-14 17:49:19.073 +05:30 [Information] Request finished in 4102.9146ms 200 application/json; charset=utf-8 +2017-12-14 17:49:19.074 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" completed keep alive response. +2017-12-14 17:49:19.838 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:19.838 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:19.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:19.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:19.841 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4856.9193ms +2017-12-14 17:49:19.851 +05:30 [Information] Request finished in 4878.8043ms 200 application/json; charset=utf-8 +2017-12-14 17:49:19.852 +05:30 [Debug] Connection id ""0HLA2TC5KT9IB"" completed keep alive response. +2017-12-14 17:49:20.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:20.248 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:20.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:20.249 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:20.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5264.191ms +2017-12-14 17:49:20.255 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:49:20.256 +05:30 [Information] Request finished in 5282.2319ms 200 application/json; charset=utf-8 +2017-12-14 17:49:20.256 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:49:20.256 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" completed keep alive response. +2017-12-14 17:49:20.257 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:49:21.337 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:21.337 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:21.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:21.339 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:21.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 6366.6581ms +2017-12-14 17:49:21.344 +05:30 [Information] Request finished in 6375.76ms 200 application/json; charset=utf-8 +2017-12-14 17:49:21.345 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" completed keep alive response. +2017-12-14 17:49:23.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:49:23.950 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:23.951 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:23.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:23.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:23.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3695.8015ms +2017-12-14 17:49:23.960 +05:30 [Information] Request finished in 3703.9524ms 200 application/json; charset=utf-8 +2017-12-14 17:49:23.961 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" completed keep alive response. +2017-12-14 17:49:27.018 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:49:27.019 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:49:27.019 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:49:27.020 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:49:27.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23891.0686ms +2017-12-14 17:49:27.028 +05:30 [Information] Request finished in 23917.3372ms 200 application/json; charset=utf-8 +2017-12-14 17:49:27.029 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" completed keep alive response. +2017-12-14 17:50:36.393 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" received FIN. +2017-12-14 17:50:36.393 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" received FIN. +2017-12-14 17:50:36.394 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" disconnecting. +2017-12-14 17:50:36.394 +05:30 [Debug] Connection id ""0HLA2TC5KT9IB"" received FIN. +2017-12-14 17:50:36.394 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" disconnecting. +2017-12-14 17:50:36.394 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" received FIN. +2017-12-14 17:50:36.394 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" received FIN. +2017-12-14 17:50:36.395 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" sending FIN. +2017-12-14 17:50:36.395 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" received FIN. +2017-12-14 17:50:36.395 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" sent FIN with status "0". +2017-12-14 17:50:36.395 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" started. +2017-12-14 17:50:36.395 +05:30 [Debug] Connection id ""0HLA2TC5KT9I5"" stopped. +2017-12-14 17:50:36.395 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" sending FIN. +2017-12-14 17:50:36.396 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" sent FIN with status "0". +2017-12-14 17:50:36.396 +05:30 [Debug] Connection id ""0HLA2TC5KT9I4"" stopped. +2017-12-14 17:50:36.394 +05:30 [Debug] Connection id ""0HLA2TC5KT9IB"" disconnecting. +2017-12-14 17:50:36.399 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" disconnecting. +2017-12-14 17:50:36.401 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" disconnecting. +2017-12-14 17:50:36.400 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" disconnecting. +2017-12-14 17:50:36.403 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" sending FIN. +2017-12-14 17:50:36.403 +05:30 [Debug] Connection id ""0HLA2TC5KT9IB"" sending FIN. +2017-12-14 17:50:36.405 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" sending FIN. +2017-12-14 17:50:36.404 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:50:36.406 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" sent FIN with status "0". +2017-12-14 17:50:36.406 +05:30 [Debug] Connection id ""0HLA2TC5KT9I7"" stopped. +2017-12-14 17:50:36.407 +05:30 [Debug] Connection id ""0HLA2TC5KT9IB"" sent FIN with status "0". +2017-12-14 17:50:36.407 +05:30 [Debug] Connection id ""0HLA2TC5KT9IB"" stopped. +2017-12-14 17:50:36.405 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" sending FIN. +2017-12-14 17:50:36.408 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" sent FIN with status "0". +2017-12-14 17:50:36.408 +05:30 [Debug] Connection id ""0HLA2TC5KT9IA"" stopped. +2017-12-14 17:50:36.409 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" sent FIN with status "0". +2017-12-14 17:50:36.409 +05:30 [Debug] Connection id ""0HLA2TC5KT9I8"" stopped. +2017-12-14 17:50:36.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:50:36.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:50:38.547 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:50:39.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:50:39.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:50:39.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:50:39.227 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2728.9649ms +2017-12-14 17:50:39.268 +05:30 [Information] Request finished in 2863.3954ms 200 application/json; charset=utf-8 +2017-12-14 17:50:39.268 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" completed keep alive response. +2017-12-14 17:50:39.302 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 17:50:39.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:50:39.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:50:42.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 17:50:44.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:50:44.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:50:44.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:50:44.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4770.7189ms +2017-12-14 17:50:44.083 +05:30 [Information] Request finished in 4785.7521ms 200 application/json; charset=utf-8 +2017-12-14 17:50:44.084 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" completed keep alive response. +2017-12-14 17:50:45.123 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" started. +2017-12-14 17:50:45.123 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" started. +2017-12-14 17:50:45.123 +05:30 [Debug] Connection id ""0HLA2TC5KT9IF"" started. +2017-12-14 17:50:45.125 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:50:45.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:50:45.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:50:45.131 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:50:45.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:50:45.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:50:45.138 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:50:45.141 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:50:45.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:50:45.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:50:45.142 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:50:45.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:50:45.232 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" started. +2017-12-14 17:50:45.233 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" started. +2017-12-14 17:50:45.233 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:50:45.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:50:45.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:50:46.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:50:46.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:50:46.653 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:50:49.701 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:50:50.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:50:50.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:50:50.806 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:50:50.806 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:50:50.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:50:50.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:50:50.831 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:50:50.844 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:50:50.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:50:50.868 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5728.4844ms +2017-12-14 17:50:50.873 +05:30 [Information] Request finished in 5746.5539ms 200 application/json; charset=utf-8 +2017-12-14 17:50:50.874 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" completed keep alive response. +2017-12-14 17:50:50.883 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:50:50.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 17:50:50.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 17:50:51.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:50:51.393 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:50:51.394 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:50:51.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:50:51.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6251.6872ms +2017-12-14 17:50:51.397 +05:30 [Information] Request finished in 6271.1286ms 200 application/json; charset=utf-8 +2017-12-14 17:50:51.398 +05:30 [Debug] Connection id ""0HLA2TC5KT9IF"" completed keep alive response. +2017-12-14 17:50:51.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:50:51.508 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:50:51.508 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:50:51.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:50:51.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6365.9888ms +2017-12-14 17:50:51.512 +05:30 [Information] Request finished in 6387.0726ms 200 application/json; charset=utf-8 +2017-12-14 17:50:51.512 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:50:51.986 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:50:51.986 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:50:51.987 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:50:51.989 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:50:51.993 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5336.4623ms +2017-12-14 17:50:52.000 +05:30 [Information] Request finished in 5342.9157ms 200 application/json; charset=utf-8 +2017-12-14 17:50:52.000 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" completed keep alive response. +2017-12-14 17:50:52.086 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:50:52.087 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:50:52.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:50:52.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:50:52.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6850.1798ms +2017-12-14 17:50:52.092 +05:30 [Information] Request finished in 6858.3341ms 200 application/json; charset=utf-8 +2017-12-14 17:50:52.092 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:50:53.929 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:50:54.170 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:50:54.170 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:50:54.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:50:54.171 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:50:54.173 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3288.0216ms +2017-12-14 17:50:54.175 +05:30 [Information] Request finished in 3296.0108ms 200 application/json; charset=utf-8 +2017-12-14 17:50:54.176 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" completed keep alive response. +2017-12-14 17:50:54.203 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:50:54.203 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:50:54.204 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:50:54.227 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 17:50:54.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 17:50:54.228 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 17:50:54.239 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 17:50:54.240 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 17:50:54.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 17:50:54.254 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 17:50:54.255 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 17:50:54.255 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 17:50:57.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:50:57.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:50:57.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 17:50:57.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:50:57.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:50:57.833 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:50:57.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:50:57.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:50:57.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3638.5052ms +2017-12-14 17:50:57.865 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:50:57.865 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:50:57.866 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:50:57.884 +05:30 [Information] Request finished in 3663.8666ms 200 application/json; charset=utf-8 +2017-12-14 17:50:57.884 +05:30 [Debug] Connection id ""0HLA2TC5KT9IF"" completed keep alive response. +2017-12-14 17:51:14.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:51:18.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:51:18.299 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:51:18.299 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:51:18.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:51:18.358 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:51:18.358 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:51:18.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:51:20.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:51:20.790 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 25797.9616ms +2017-12-14 17:51:20.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 20518.4298ms +2017-12-14 17:51:20.825 +05:30 [Information] Request finished in 26569.5831ms 200 application/json; charset=utf-8 +2017-12-14 17:51:20.841 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:51:21.025 +05:30 [Information] Request finished in 23093.7744ms 200 application/json; charset=utf-8 +2017-12-14 17:51:21.062 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" completed keep alive response. +2017-12-14 17:51:21.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:51:21.115 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:51:21.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:51:21.117 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:51:21.898 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:51:21.914 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:51:21.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 27676.4658ms +2017-12-14 17:51:27.191 +05:30 [Information] Request finished in 32950.0241ms 200 application/json; charset=utf-8 +2017-12-14 17:51:27.195 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:51:31.876 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:51:33.101 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:51:49.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:51:49.252 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:51:49.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:51:49.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:51:49.255 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 55026.3184ms +2017-12-14 17:51:49.257 +05:30 [Information] Request finished in 55036.316ms 200 application/json; charset=utf-8 +2017-12-14 17:51:49.258 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" completed keep alive response. +2017-12-14 17:51:59.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:51:59.972 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:51:59.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:51:59.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:51:59.975 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 74845.6067ms +2017-12-14 17:51:59.977 +05:30 [Information] Request finished in 74856.7337ms 200 application/json; charset=utf-8 +2017-12-14 17:51:59.978 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" completed keep alive response. +2017-12-14 17:52:15.031 +05:30 [Debug] Connection id ""0HLA2TC5KT9IF"" received FIN. +2017-12-14 17:52:15.032 +05:30 [Debug] Connection id ""0HLA2TC5KT9IF"" disconnecting. +2017-12-14 17:52:15.032 +05:30 [Debug] Connection id ""0HLA2TC5KT9IF"" sending FIN. +2017-12-14 17:52:15.033 +05:30 [Debug] Connection id ""0HLA2TC5KT9IF"" sent FIN with status "0". +2017-12-14 17:52:15.033 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:52:15.033 +05:30 [Debug] Connection id ""0HLA2TC5KT9IF"" stopped. +2017-12-14 17:52:15.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:52:15.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:52:18.096 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:52:18.675 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:18.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:18.677 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:18.680 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3643.1588ms +2017-12-14 17:52:18.686 +05:30 [Information] Request finished in 3653.0998ms 200 application/json; charset=utf-8 +2017-12-14 17:52:18.687 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:52:18.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 17:52:18.730 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:52:18.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:52:21.774 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 17:52:23.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:23.411 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:23.412 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:23.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4680.578ms +2017-12-14 17:52:23.415 +05:30 [Information] Request finished in 4699.2431ms 200 application/json; charset=utf-8 +2017-12-14 17:52:23.415 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" completed keep alive response. +2017-12-14 17:52:26.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:52:26.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:52:26.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:52:26.902 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:52:26.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:52:26.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:52:26.947 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:52:26.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:52:26.948 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:52:27.056 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:52:27.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:52:27.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:52:27.835 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" started. +2017-12-14 17:52:27.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:52:27.836 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:52:27.836 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:52:27.962 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:52:27.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:52:27.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:52:30.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:52:30.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:52:30.607 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:52:30.622 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:52:30.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:30.934 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:30.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:30.936 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:30.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4032.6007ms +2017-12-14 17:52:30.939 +05:30 [Information] Request finished in 4191.1344ms 200 application/json; charset=utf-8 +2017-12-14 17:52:30.939 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" completed keep alive response. +2017-12-14 17:52:30.944 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:52:30.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 17:52:30.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 17:52:31.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:31.244 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:31.244 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:31.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:31.246 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4454.6014ms +2017-12-14 17:52:31.251 +05:30 [Information] Request finished in 4505.9646ms 200 application/json; charset=utf-8 +2017-12-14 17:52:31.252 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:52:31.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:52:31.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:31.762 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:31.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:31.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:31.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4706.3279ms +2017-12-14 17:52:31.771 +05:30 [Information] Request finished in 5017.2248ms 200 application/json; charset=utf-8 +2017-12-14 17:52:31.771 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:52:32.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:32.734 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:32.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:32.735 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:32.738 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4898.9928ms +2017-12-14 17:52:32.743 +05:30 [Information] Request finished in 4957.2594ms 200 application/json; charset=utf-8 +2017-12-14 17:52:32.744 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" completed keep alive response. +2017-12-14 17:52:33.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:52:34.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:34.225 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:34.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:34.226 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:34.228 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3282.5041ms +2017-12-14 17:52:34.231 +05:30 [Information] Request finished in 3287.956ms 200 application/json; charset=utf-8 +2017-12-14 17:52:34.232 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" completed keep alive response. +2017-12-14 17:52:34.275 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 17:52:34.277 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 17:52:34.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 17:52:34.278 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 17:52:34.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 17:52:34.280 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 17:52:34.281 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 17:52:34.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 17:52:34.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:52:34.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 17:52:34.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:52:34.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:52:35.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:52:36.405 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:52:36.531 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:36.532 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:36.532 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:36.533 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:36.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 8571.0203ms +2017-12-14 17:52:36.538 +05:30 [Information] Request finished in 8691.0397ms 200 application/json; charset=utf-8 +2017-12-14 17:52:36.538 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" completed keep alive response. +2017-12-14 17:52:37.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:37.216 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:37.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:37.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:37.228 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 2939.662ms +2017-12-14 17:52:37.230 +05:30 [Information] Request finished in 2976.3553ms 200 application/json; charset=utf-8 +2017-12-14 17:52:37.231 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:52:37.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:52:38.285 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 17:52:40.800 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:52:40.802 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:52:40.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:40.883 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:40.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:40.885 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:40.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 6604.4629ms +2017-12-14 17:52:40.890 +05:30 [Information] Request finished in 6635.3388ms 200 application/json; charset=utf-8 +2017-12-14 17:52:40.891 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:52:41.424 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:52:41.425 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:52:41.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:52:41.733 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:41.734 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:41.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:41.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:41.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 7475.8143ms +2017-12-14 17:52:41.792 +05:30 [Information] Request finished in 7523.966ms 200 application/json; charset=utf-8 +2017-12-14 17:52:41.792 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" completed keep alive response. +2017-12-14 17:52:42.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:42.290 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:42.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:42.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:42.295 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 8003.5663ms +2017-12-14 17:52:42.301 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:52:42.303 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:52:42.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:52:42.306 +05:30 [Information] Request finished in 8045.6559ms 200 application/json; charset=utf-8 +2017-12-14 17:52:42.306 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" completed keep alive response. +2017-12-14 17:52:45.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:52:45.962 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:45.962 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:45.963 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:45.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:45.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3662.612ms +2017-12-14 17:52:45.973 +05:30 [Information] Request finished in 3674.262ms 200 application/json; charset=utf-8 +2017-12-14 17:52:45.973 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" completed keep alive response. +2017-12-14 17:52:52.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:52:52.322 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:52:52.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:52:52.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:52:52.331 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25378.4592ms +2017-12-14 17:52:52.337 +05:30 [Information] Request finished in 25587.3146ms 200 application/json; charset=utf-8 +2017-12-14 17:52:52.338 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" completed keep alive response. +2017-12-14 17:53:15.777 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:53:15.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:53:15.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:53:18.823 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:53:19.424 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:19.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:19.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:19.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3644.9107ms +2017-12-14 17:53:19.429 +05:30 [Information] Request finished in 3651.3675ms 200 application/json; charset=utf-8 +2017-12-14 17:53:19.429 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:53:19.438 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 17:53:19.438 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:53:19.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:53:21.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 17:53:23.212 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:23.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:23.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:23.216 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3776.9593ms +2017-12-14 17:53:23.218 +05:30 [Information] Request finished in 3780.5315ms 200 application/json; charset=utf-8 +2017-12-14 17:53:23.219 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:53:29.542 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:53:29.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:53:29.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:53:29.728 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:53:29.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:53:29.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:53:29.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:53:29.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:53:29.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:53:30.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:53:30.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:53:30.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:53:30.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:53:30.019 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:53:30.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:53:30.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:53:30.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:53:30.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:53:33.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:53:33.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:53:33.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:53:33.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:53:33.622 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:53:33.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:53:34.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:34.165 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:34.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:34.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:34.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4158.8222ms +2017-12-14 17:53:34.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:34.201 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:34.202 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:34.210 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:34.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4191.53ms +2017-12-14 17:53:34.228 +05:30 [Information] Request finished in 4500.7658ms 200 application/json; charset=utf-8 +2017-12-14 17:53:34.228 +05:30 [Information] Request finished in 4313.4067ms 200 application/json; charset=utf-8 +2017-12-14 17:53:34.229 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:53:34.229 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" completed keep alive response. +2017-12-14 17:53:34.244 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:53:34.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 17:53:34.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 17:53:34.344 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:34.344 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:34.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:34.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:34.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4801.5481ms +2017-12-14 17:53:34.350 +05:30 [Information] Request finished in 4887.0283ms 200 application/json; charset=utf-8 +2017-12-14 17:53:34.350 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" completed keep alive response. +2017-12-14 17:53:34.403 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:34.403 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:34.404 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:34.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:34.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4677.6651ms +2017-12-14 17:53:34.414 +05:30 [Information] Request finished in 4877.1302ms 200 application/json; charset=utf-8 +2017-12-14 17:53:34.414 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" completed keep alive response. +2017-12-14 17:53:34.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:34.969 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:34.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:34.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:34.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5080.9963ms +2017-12-14 17:53:34.976 +05:30 [Information] Request finished in 5256.7498ms 200 application/json; charset=utf-8 +2017-12-14 17:53:34.977 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" completed keep alive response. +2017-12-14 17:53:37.478 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:53:37.792 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:37.792 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:37.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:37.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:37.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3548.5431ms +2017-12-14 17:53:37.814 +05:30 [Information] Request finished in 3577.7337ms 200 application/json; charset=utf-8 +2017-12-14 17:53:37.814 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" completed keep alive response. +2017-12-14 17:53:37.880 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:53:37.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:53:37.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:53:37.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 17:53:37.902 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 17:53:37.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 17:53:37.906 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 17:53:37.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 17:53:37.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 17:53:37.912 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 17:53:37.913 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 17:53:37.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 17:53:41.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:53:41.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:53:41.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:53:41.175 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 17:53:42.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:42.043 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:42.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:42.045 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:42.055 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4138.84ms +2017-12-14 17:53:42.058 +05:30 [Information] Request finished in 4181.4857ms 200 application/json; charset=utf-8 +2017-12-14 17:53:42.059 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:53:42.286 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:53:42.288 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:53:42.879 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:53:42.881 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:53:42.968 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:42.968 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:42.969 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:42.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:43.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5090.2519ms +2017-12-14 17:53:43.134 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:53:43.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:53:43.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:53:43.154 +05:30 [Information] Request finished in 5269.5002ms 200 application/json; charset=utf-8 +2017-12-14 17:53:43.155 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" completed keep alive response. +2017-12-14 17:53:43.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:43.496 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:43.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:43.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:43.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 5596.9894ms +2017-12-14 17:53:43.670 +05:30 [Information] Request finished in 5794.1281ms 200 application/json; charset=utf-8 +2017-12-14 17:53:43.671 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" completed keep alive response. +2017-12-14 17:53:43.693 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:43.694 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:43.695 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:43.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:43.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5812.5385ms +2017-12-14 17:53:43.729 +05:30 [Information] Request finished in 5852.2558ms 200 application/json; charset=utf-8 +2017-12-14 17:53:43.729 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" completed keep alive response. +2017-12-14 17:53:46.200 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:53:46.825 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:46.826 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:46.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:46.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:46.844 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3693.3417ms +2017-12-14 17:53:46.858 +05:30 [Information] Request finished in 3846.1784ms 200 application/json; charset=utf-8 +2017-12-14 17:53:46.858 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" completed keep alive response. +2017-12-14 17:53:53.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:53:53.767 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:53:53.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:53:53.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:53:53.772 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23754.4491ms +2017-12-14 17:53:53.778 +05:30 [Information] Request finished in 23862.1772ms 200 application/json; charset=utf-8 +2017-12-14 17:53:53.778 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:54:40.279 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 17:54:40.280 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 17:54:40.280 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 17:54:43.324 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 17:54:43.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:54:43.866 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:54:43.866 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:54:43.868 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3587.531ms +2017-12-14 17:54:43.872 +05:30 [Information] Request finished in 3593.5528ms 200 application/json; charset=utf-8 +2017-12-14 17:54:43.873 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:54:43.881 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" received FIN. +2017-12-14 17:54:43.882 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" received FIN. +2017-12-14 17:54:43.882 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" received FIN. +2017-12-14 17:54:43.883 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" disconnecting. +2017-12-14 17:54:43.883 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" sending FIN. +2017-12-14 17:54:43.883 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" disconnecting. +2017-12-14 17:54:43.883 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" sent FIN with status "0". +2017-12-14 17:54:43.883 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" disconnecting. +2017-12-14 17:54:43.884 +05:30 [Debug] Connection id ""0HLA2TC5KT9IC"" stopped. +2017-12-14 17:54:43.884 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" sending FIN. +2017-12-14 17:54:43.884 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" sending FIN. +2017-12-14 17:54:43.884 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" sent FIN with status "0". +2017-12-14 17:54:43.884 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" sent FIN with status "0". +2017-12-14 17:54:43.884 +05:30 [Debug] Connection id ""0HLA2TC5KT9IE"" stopped. +2017-12-14 17:54:43.884 +05:30 [Debug] Connection id ""0HLA2TC5KT9II"" stopped. +2017-12-14 17:54:43.889 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 17:54:43.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 17:54:43.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 17:54:46.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 17:54:48.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:54:48.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:54:48.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:54:48.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4728.5913ms +2017-12-14 17:54:48.623 +05:30 [Information] Request finished in 4736.2306ms 200 application/json; charset=utf-8 +2017-12-14 17:54:48.623 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" completed keep alive response. +2017-12-14 17:54:49.744 +05:30 [Debug] Connection id ""0HLA2TC5KT9IJ"" started. +2017-12-14 17:54:49.746 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 17:54:49.748 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 17:54:49.748 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 17:54:49.748 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 17:54:49.748 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 17:54:49.748 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 17:54:49.759 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 17:54:49.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 17:54:49.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 17:54:49.764 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 17:54:49.765 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 17:54:49.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 17:54:49.844 +05:30 [Debug] Connection id ""0HLA2TC5KT9IK"" started. +2017-12-14 17:54:49.845 +05:30 [Debug] Connection id ""0HLA2TC5KT9IL"" started. +2017-12-14 17:54:51.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 17:54:51.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 17:54:51.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 17:54:52.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 17:54:52.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 17:54:52.384 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 17:54:55.919 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:54:56.631 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:54:56.632 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:54:56.632 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:54:56.633 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:54:56.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6885.0994ms +2017-12-14 17:54:56.636 +05:30 [Information] Request finished in 6902.1856ms 200 application/json; charset=utf-8 +2017-12-14 17:54:56.637 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:54:56.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:54:56.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:54:56.792 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:54:56.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:54:56.833 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:54:56.833 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:54:56.834 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 17:54:56.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 17:54:57.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:54:57.391 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:54:57.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:54:57.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:54:57.397 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7631.1044ms +2017-12-14 17:54:57.399 +05:30 [Information] Request finished in 7655.2113ms 200 application/json; charset=utf-8 +2017-12-14 17:54:57.400 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:54:57.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:54:57.897 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:54:57.897 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:54:57.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:54:57.901 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8146.1393ms +2017-12-14 17:54:57.905 +05:30 [Information] Request finished in 8157.4706ms 200 application/json; charset=utf-8 +2017-12-14 17:54:57.906 +05:30 [Debug] Connection id ""0HLA2TC5KT9IJ"" completed keep alive response. +2017-12-14 17:54:57.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:54:57.953 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:54:57.953 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:54:57.954 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:54:57.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5569.4857ms +2017-12-14 17:54:57.960 +05:30 [Information] Request finished in 5574.2955ms 200 application/json; charset=utf-8 +2017-12-14 17:54:57.960 +05:30 [Debug] Connection id ""0HLA2TC5KT9IL"" completed keep alive response. +2017-12-14 17:54:58.090 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:54:58.090 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:54:58.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:54:58.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:54:58.095 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6707.1175ms +2017-12-14 17:54:58.102 +05:30 [Information] Request finished in 6718.3443ms 200 application/json; charset=utf-8 +2017-12-14 17:54:58.103 +05:30 [Debug] Connection id ""0HLA2TC5KT9IK"" completed keep alive response. +2017-12-14 17:54:59.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:55:00.145 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:55:00.146 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:55:00.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:55:00.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:55:00.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3313.3548ms +2017-12-14 17:55:00.150 +05:30 [Information] Request finished in 3318.3237ms 200 application/json; charset=utf-8 +2017-12-14 17:55:00.151 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:55:00.241 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 17:55:00.242 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 17:55:00.242 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 17:55:00.268 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 17:55:00.274 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 17:55:00.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 17:55:00.275 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 17:55:00.280 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 17:55:00.280 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 17:55:00.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:55:00.345 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:55:00.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:55:03.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 17:55:03.561 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:55:03.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:55:06.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 17:55:07.096 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:55:07.096 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:55:07.096 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:55:07.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:55:08.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6778.3006ms +2017-12-14 17:55:08.810 +05:30 [Information] Request finished in 8482.9124ms 200 application/json; charset=utf-8 +2017-12-14 17:55:08.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 17:55:08.825 +05:30 [Debug] Connection id ""0HLA2TC5KT9IK"" completed keep alive response. +2017-12-14 17:55:08.826 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 17:55:08.826 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 17:55:09.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:55:09.112 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:55:09.112 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:55:09.126 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:55:09.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 8896.1847ms +2017-12-14 17:55:09.212 +05:30 [Information] Request finished in 9012.3557ms 200 application/json; charset=utf-8 +2017-12-14 17:55:09.212 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" completed keep alive response. +2017-12-14 17:55:21.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 17:55:23.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:55:24.345 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:55:23.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:55:24.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:55:24.346 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:55:24.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:55:24.386 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:55:24.422 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:55:24.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:55:24.473 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:55:24.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 15625.3791ms +2017-12-14 17:55:24.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 24174.5816ms +2017-12-14 17:55:24.545 +05:30 [Information] Request finished in 15772.0624ms 200 application/json; charset=utf-8 +2017-12-14 17:55:24.930 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" completed keep alive response. +2017-12-14 17:55:24.981 +05:30 [Information] Request finished in 24718.604ms 200 application/json; charset=utf-8 +2017-12-14 17:55:24.982 +05:30 [Debug] Connection id ""0HLA2TC5KT9IL"" completed keep alive response. +2017-12-14 17:55:25.981 +05:30 [Fatal] Sequence contains no elements +2017-12-14 17:55:25.998 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 17:56:46.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:56:46.361 +05:30 [Debug] Connection id ""0HLA2TC5KT9IK"" received FIN. +2017-12-14 17:56:46.362 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:56:46.362 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" received FIN. +2017-12-14 17:56:46.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:56:46.362 +05:30 [Debug] Connection id ""0HLA2TC5KT9IK"" disconnecting. +2017-12-14 17:56:46.383 +05:30 [Debug] Connection id ""0HLA2TC5KT9IK"" sending FIN. +2017-12-14 17:56:46.383 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" disconnecting. +2017-12-14 17:56:46.383 +05:30 [Debug] Connection id ""0HLA2TC5KT9IK"" sent FIN with status "0". +2017-12-14 17:56:46.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:56:46.384 +05:30 [Debug] Connection id ""0HLA2TC5KT9IK"" stopped. +2017-12-14 17:56:46.386 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" sending FIN. +2017-12-14 17:56:46.386 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" sent FIN with status "0". +2017-12-14 17:56:46.387 +05:30 [Debug] Connection id ""0HLA2TC5KT9ID"" stopped. +2017-12-14 17:56:46.387 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 106104.7175ms +2017-12-14 17:56:46.411 +05:30 [Information] Request finished in 106198.3012ms 200 application/json; charset=utf-8 +2017-12-14 17:56:46.412 +05:30 [Debug] Connection id ""0HLA2TC5KT9IJ"" completed keep alive response. +2017-12-14 17:56:49.768 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" received FIN. +2017-12-14 17:56:58.019 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 17:56:58.020 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 17:56:58.020 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 17:56:58.021 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 17:56:58.022 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" disconnecting. +2017-12-14 17:56:58.042 +05:30 [Information] Connection id ""0HLA2TC5KT9IH"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.063 +05:30 [Information] Connection id ""0HLA2TC5KT9IH"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.064 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" stopped. +2017-12-14 17:56:58.085 +05:30 [Information] Connection id ""0HLA2TC5KT9IH"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.085 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.086 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.086 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.086 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.087 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.088 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.088 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.088 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.088 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.089 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.089 +05:30 [Debug] Connection id ""0HLA2TC5KT9IH"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 17:56:58.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 128323.8357ms +2017-12-14 17:56:58.092 +05:30 [Information] Request finished in 128348.15ms 200 application/json; charset=utf-8 +2017-12-14 17:58:01.767 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" received FIN. +2017-12-14 17:58:01.767 +05:30 [Debug] Connection id ""0HLA2TC5KT9IL"" received FIN. +2017-12-14 17:58:01.767 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" disconnecting. +2017-12-14 17:58:01.767 +05:30 [Debug] Connection id ""0HLA2TC5KT9IJ"" received FIN. +2017-12-14 17:58:01.767 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" sending FIN. +2017-12-14 17:58:01.768 +05:30 [Debug] Connection id ""0HLA2TC5KT9IJ"" disconnecting. +2017-12-14 17:58:01.768 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" sent FIN with status "0". +2017-12-14 17:58:01.768 +05:30 [Debug] Connection id ""0HLA2TC5KT9IJ"" sending FIN. +2017-12-14 17:58:01.768 +05:30 [Debug] Connection id ""0HLA2TC5KT9IG"" stopped. +2017-12-14 17:58:01.768 +05:30 [Debug] Connection id ""0HLA2TC5KT9IJ"" sent FIN with status "0". +2017-12-14 17:58:01.767 +05:30 [Debug] Connection id ""0HLA2TC5KT9IL"" disconnecting. +2017-12-14 17:58:01.768 +05:30 [Debug] Connection id ""0HLA2TC5KT9IJ"" stopped. +2017-12-14 17:58:01.769 +05:30 [Debug] Connection id ""0HLA2TC5KT9IL"" sending FIN. +2017-12-14 17:58:01.769 +05:30 [Debug] Connection id ""0HLA2TC5KT9IL"" sent FIN with status "0". +2017-12-14 17:58:01.769 +05:30 [Debug] Connection id ""0HLA2TC5KT9IL"" stopped. +2017-12-14 18:43:42.474 +05:30 [Debug] Hosting starting +2017-12-14 18:43:42.977 +05:30 [Debug] Hosting started +2017-12-14 18:43:43.425 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" started. +2017-12-14 18:43:43.482 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" started. +2017-12-14 18:43:43.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-14 18:43:43.826 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-14 18:43:43.913 +05:30 [Information] Request finished in 191.7648ms 200 +2017-12-14 18:43:44.045 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" completed keep alive response. +2017-12-14 18:43:45.216 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" started. +2017-12-14 18:43:45.220 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:43:45.235 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:43:45.878 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-14 18:43:45.891 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:43:45.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:43:46.080 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b74baf6c-ce3c-47a3-bfdf-6537ebceac0b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-14 18:43:46.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:43:46.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-14 18:43:46.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:43:46.466 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-14 18:43:46.523 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-14 18:43:46.605 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:43:46.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:43:46.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:43:47.809 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1574.7331ms +2017-12-14 18:43:47.933 +05:30 [Information] Request finished in 4229.2356ms 200 application/json; charset=utf-8 +2017-12-14 18:43:47.935 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" completed keep alive response. +2017-12-14 18:43:48.184 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-14 18:43:48.193 +05:30 [Debug] Request did not match any routes. +2017-12-14 18:43:48.232 +05:30 [Debug] The request path "" does not match the path filter +2017-12-14 18:43:48.240 +05:30 [Information] Request finished in 60.2434ms 404 +2017-12-14 18:43:48.240 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" completed keep alive response. +2017-12-14 18:43:51.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:43:51.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:43:59.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:43:59.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:43:59.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:43:59.299 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:43:59.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:43:59.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:43:59.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13073.9047ms +2017-12-14 18:43:59.342 +05:30 [Information] Request finished in 14121.6711ms 200 application/json; charset=utf-8 +2017-12-14 18:43:59.342 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" completed keep alive response. +2017-12-14 18:43:59.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13142.062ms +2017-12-14 18:43:59.496 +05:30 [Information] Request finished in 14265.6854ms 200 application/json; charset=utf-8 +2017-12-14 18:43:59.496 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" completed keep alive response. +2017-12-14 18:44:11.223 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:44:11.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:44:11.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:44:14.275 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:44:14.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:44:14.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:44:14.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:44:14.987 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:44:14.988 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:44:14.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:44:15.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3768.381ms +2017-12-14 18:44:15.026 +05:30 [Information] Request finished in 3804.9677ms 200 application/json; charset=utf-8 +2017-12-14 18:44:15.028 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" completed keep alive response. +2017-12-14 18:44:17.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:44:18.281 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:44:18.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:44:18.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:44:18.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4048.8409ms +2017-12-14 18:44:18.376 +05:30 [Information] Request finished in 4074.6181ms 200 application/json; charset=utf-8 +2017-12-14 18:44:18.380 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" completed keep alive response. +2017-12-14 18:44:18.474 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:44:18.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:44:18.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:44:18.623 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:44:18.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:44:18.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:44:21.644 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:44:21.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:44:22.194 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:44:22.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:44:22.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:44:22.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3721.3415ms +2017-12-14 18:44:22.203 +05:30 [Information] Request finished in 3739.9882ms 200 application/json; charset=utf-8 +2017-12-14 18:44:22.203 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" completed keep alive response. +2017-12-14 18:44:22.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:44:22.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:44:22.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:44:22.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3768.0467ms +2017-12-14 18:44:22.396 +05:30 [Information] Request finished in 3771.8861ms 200 application/json; charset=utf-8 +2017-12-14 18:44:22.396 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" completed keep alive response. +2017-12-14 18:44:22.414 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:44:22.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:44:22.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:44:24.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:44:25.129 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:44:25.130 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:44:25.130 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:44:25.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2716.0717ms +2017-12-14 18:44:25.133 +05:30 [Information] Request finished in 2720.4072ms 200 application/json; charset=utf-8 +2017-12-14 18:44:25.133 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" completed keep alive response. +2017-12-14 18:44:25.436 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:44:25.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:44:25.437 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:44:28.525 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:44:29.065 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:44:29.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:44:29.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:44:29.067 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3627.9539ms +2017-12-14 18:44:29.068 +05:30 [Information] Request finished in 3632.1625ms 200 application/json; charset=utf-8 +2017-12-14 18:44:29.069 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" completed keep alive response. +2017-12-14 18:44:29.072 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:44:29.073 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:44:29.073 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:44:31.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:44:31.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:44:31.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:44:31.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:44:31.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2634.1461ms +2017-12-14 18:44:31.718 +05:30 [Information] Request finished in 2646.2085ms 200 application/json; charset=utf-8 +2017-12-14 18:44:31.719 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" completed keep alive response. +2017-12-14 18:44:58.048 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:44:58.048 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:44:58.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:45:01.082 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:45:01.620 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:01.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:01.630 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:01.635 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3580.8739ms +2017-12-14 18:45:01.642 +05:30 [Information] Request finished in 3595.6312ms 200 application/json; charset=utf-8 +2017-12-14 18:45:01.643 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" completed keep alive response. +2017-12-14 18:45:04.021 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:45:04.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:45:04.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:45:07.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:45:07.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:07.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:07.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:07.640 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3613.6939ms +2017-12-14 18:45:07.652 +05:30 [Information] Request finished in 3630.0958ms 200 application/json; charset=utf-8 +2017-12-14 18:45:07.652 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" completed keep alive response. +2017-12-14 18:45:07.686 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-14 18:45:07.687 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-14 18:45:07.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-14 18:45:10.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-14 18:45:13.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:13.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:13.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:13.173 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5471.9345ms +2017-12-14 18:45:13.175 +05:30 [Information] Request finished in 5490.1931ms 200 application/json; charset=utf-8 +2017-12-14 18:45:13.175 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" completed keep alive response. +2017-12-14 18:45:13.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:45:13.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:45:13.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:45:17.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:45:18.377 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:18.377 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:18.382 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:18.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4671.2238ms +2017-12-14 18:45:18.401 +05:30 [Information] Request finished in 4690.0376ms 200 application/json; charset=utf-8 +2017-12-14 18:45:18.402 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" completed keep alive response. +2017-12-14 18:45:18.489 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-14 18:45:18.490 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 18:45:18.493 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 18:45:23.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-14 18:45:24.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:24.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:24.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:24.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6436.5897ms +2017-12-14 18:45:24.975 +05:30 [Information] Request finished in 6511.9736ms 200 application/json; charset=utf-8 +2017-12-14 18:45:24.975 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" completed keep alive response. +2017-12-14 18:45:28.239 +05:30 [Debug] Connection id ""0HLA2UI043T9Q"" started. +2017-12-14 18:45:28.241 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 18:45:28.243 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 18:45:28.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 18:45:28.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 18:45:28.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 18:45:28.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 18:45:28.269 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 18:45:28.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 18:45:28.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 18:45:28.313 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 18:45:28.316 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 18:45:28.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 18:45:28.438 +05:30 [Debug] Connection id ""0HLA2UI043T9R"" started. +2017-12-14 18:45:28.440 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" started. +2017-12-14 18:45:28.461 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 18:45:28.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 18:45:28.469 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 18:45:28.469 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 18:45:28.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 18:45:28.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 18:45:31.012 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:32.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:32.686 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:32.708 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:32.709 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:32.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:32.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:32.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:32.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:32.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:32.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4546.4034ms +2017-12-14 18:45:32.801 +05:30 [Information] Request finished in 4561.3115ms 200 application/json; charset=utf-8 +2017-12-14 18:45:32.802 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" completed keep alive response. +2017-12-14 18:45:32.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 18:45:32.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 18:45:32.817 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 18:45:33.226 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:33.226 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:33.227 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:33.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:33.343 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4985.2308ms +2017-12-14 18:45:33.527 +05:30 [Debug] Connection id ""0HLA2UI043T9T"" started. +2017-12-14 18:45:33.624 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:45:33.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:45:33.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:45:33.694 +05:30 [Information] Request finished in 5320.8609ms 200 application/json; charset=utf-8 +2017-12-14 18:45:33.724 +05:30 [Debug] Connection id ""0HLA2UI043T9Q"" completed keep alive response. +2017-12-14 18:45:33.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:33.858 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:33.858 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:33.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:33.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5395.2338ms +2017-12-14 18:45:33.882 +05:30 [Information] Request finished in 5427.3677ms 200 application/json; charset=utf-8 +2017-12-14 18:45:33.882 +05:30 [Debug] Connection id ""0HLA2UI043T9R"" completed keep alive response. +2017-12-14 18:45:35.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:35.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:35.802 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:35.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:35.837 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7342.6259ms +2017-12-14 18:45:35.887 +05:30 [Information] Request finished in 7415.2564ms 200 application/json; charset=utf-8 +2017-12-14 18:45:35.888 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" completed keep alive response. +2017-12-14 18:45:36.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:36.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:36.075 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:36.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:36.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:36.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7765.5313ms +2017-12-14 18:45:36.129 +05:30 [Information] Request finished in 7884.8634ms 200 application/json; charset=utf-8 +2017-12-14 18:45:36.130 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" completed keep alive response. +2017-12-14 18:45:37.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:45:37.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:37.670 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:37.673 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:37.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4049.2262ms +2017-12-14 18:45:37.693 +05:30 [Information] Request finished in 4162.0209ms 200 application/json; charset=utf-8 +2017-12-14 18:45:37.693 +05:30 [Debug] Connection id ""0HLA2UI043T9T"" completed keep alive response. +2017-12-14 18:45:37.758 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:45:37.758 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:45:37.759 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:45:38.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:38.998 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:38.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:39.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:39.114 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6296.231ms +2017-12-14 18:45:39.122 +05:30 [Information] Request finished in 6309.3944ms 200 application/json; charset=utf-8 +2017-12-14 18:45:39.122 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" completed keep alive response. +2017-12-14 18:45:40.929 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:45:41.467 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:41.468 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:41.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:41.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3710.4002ms +2017-12-14 18:45:41.474 +05:30 [Information] Request finished in 3715.8285ms 200 application/json; charset=utf-8 +2017-12-14 18:45:41.474 +05:30 [Debug] Connection id ""0HLA2UI043T9Q"" completed keep alive response. +2017-12-14 18:45:41.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 18:45:41.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 18:45:41.486 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 18:45:43.586 +05:30 [Fatal] Sequence contains no elements +2017-12-14 18:45:43.714 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 18:45:44.295 +05:30 [Fatal] Sequence contains no elements +2017-12-14 18:45:44.296 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 18:45:44.626 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 18:45:46.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:46.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:46.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:46.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4861.7906ms +2017-12-14 18:45:46.382 +05:30 [Information] Request finished in 4891.1016ms 200 application/json; charset=utf-8 +2017-12-14 18:45:46.384 +05:30 [Debug] Connection id ""0HLA2UI043T9R"" completed keep alive response. +2017-12-14 18:45:47.717 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 18:45:47.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 18:45:47.718 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 18:45:47.746 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 18:45:47.746 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 18:45:47.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 18:45:47.759 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 18:45:47.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 18:45:47.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 18:45:47.819 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 18:45:47.819 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 18:45:47.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 18:45:47.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 18:45:47.819 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 18:45:47.819 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 18:45:50.913 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:50.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:51.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:51.061 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:51.101 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:51.603 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:51.604 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:51.604 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:51.607 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:51.610 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3889.6802ms +2017-12-14 18:45:51.619 +05:30 [Information] Request finished in 3925.3251ms 200 application/json; charset=utf-8 +2017-12-14 18:45:51.619 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" completed keep alive response. +2017-12-14 18:45:51.625 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 18:45:51.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 18:45:51.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 18:45:51.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:51.638 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:51.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:51.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:51.670 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3901.9231ms +2017-12-14 18:45:51.674 +05:30 [Information] Request finished in 3980.7554ms 200 application/json; charset=utf-8 +2017-12-14 18:45:51.675 +05:30 [Debug] Connection id ""0HLA2UI043T9T"" completed keep alive response. +2017-12-14 18:45:52.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:52.146 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:52.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:52.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:52.212 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4434.4388ms +2017-12-14 18:45:52.246 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:52.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:52.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:52.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:52.259 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4435.6442ms +2017-12-14 18:45:52.262 +05:30 [Information] Request finished in 4538.9697ms 200 application/json; charset=utf-8 +2017-12-14 18:45:52.262 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" completed keep alive response. +2017-12-14 18:45:52.289 +05:30 [Information] Request finished in 4444.0452ms 200 application/json; charset=utf-8 +2017-12-14 18:45:52.290 +05:30 [Debug] Connection id ""0HLA2UI043T9Q"" completed keep alive response. +2017-12-14 18:45:53.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:53.845 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:53.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:53.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:53.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6028.2211ms +2017-12-14 18:45:53.849 +05:30 [Information] Request finished in 6035.5385ms 200 application/json; charset=utf-8 +2017-12-14 18:45:53.850 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" completed keep alive response. +2017-12-14 18:45:54.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:45:54.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:54.943 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:54.943 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:54.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:54.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26716.398ms +2017-12-14 18:45:54.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 18:45:54.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 18:45:54.971 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 18:45:54.991 +05:30 [Information] Request finished in 26734.3761ms 200 application/json; charset=utf-8 +2017-12-14 18:45:54.991 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" completed keep alive response. +2017-12-14 18:45:57.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:45:57.248 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:45:57.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:45:57.249 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:45:57.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5623.9858ms +2017-12-14 18:45:57.254 +05:30 [Information] Request finished in 5628.5576ms 200 application/json; charset=utf-8 +2017-12-14 18:45:57.254 +05:30 [Debug] Connection id ""0HLA2UI043T9R"" completed keep alive response. +2017-12-14 18:45:58.115 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:46:06.639 +05:30 [Fatal] Sequence contains no elements +2017-12-14 18:46:06.640 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 18:46:07.248 +05:30 [Fatal] Sequence contains no elements +2017-12-14 18:46:07.250 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 18:46:17.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:46:17.868 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:46:17.868 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:46:17.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:46:17.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 22897.7612ms +2017-12-14 18:46:17.874 +05:30 [Information] Request finished in 22907.0482ms 200 application/json; charset=utf-8 +2017-12-14 18:46:17.875 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" completed keep alive response. +2017-12-14 18:47:06.238 +05:30 [Debug] Connection id ""0HLA2UI043T9Q"" received FIN. +2017-12-14 18:47:06.239 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" received FIN. +2017-12-14 18:47:06.243 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" disconnecting. +2017-12-14 18:47:06.243 +05:30 [Debug] Connection id ""0HLA2UI043T9T"" received FIN. +2017-12-14 18:47:06.265 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" received FIN. +2017-12-14 18:47:06.243 +05:30 [Debug] Connection id ""0HLA2UI043T9Q"" disconnecting. +2017-12-14 18:47:06.269 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" disconnecting. +2017-12-14 18:47:06.270 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 18:47:06.266 +05:30 [Debug] Connection id ""0HLA2UI043T9T"" disconnecting. +2017-12-14 18:47:06.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 18:47:06.269 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" received FIN. +2017-12-14 18:47:06.266 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" sending FIN. +2017-12-14 18:47:06.271 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" disconnecting. +2017-12-14 18:47:06.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 18:47:06.271 +05:30 [Debug] Connection id ""0HLA2UI043T9R"" received FIN. +2017-12-14 18:47:06.272 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" sending FIN. +2017-12-14 18:47:06.274 +05:30 [Debug] Connection id ""0HLA2UI043T9R"" disconnecting. +2017-12-14 18:47:06.274 +05:30 [Debug] Connection id ""0HLA2UI043T9Q"" sending FIN. +2017-12-14 18:47:06.274 +05:30 [Debug] Connection id ""0HLA2UI043T9T"" sending FIN. +2017-12-14 18:47:06.275 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" sending FIN. +2017-12-14 18:47:06.275 +05:30 [Debug] Connection id ""0HLA2UI043T9R"" sending FIN. +2017-12-14 18:47:06.284 +05:30 [Debug] Connection id ""0HLA2UI043T9R"" sent FIN with status "0". +2017-12-14 18:47:06.284 +05:30 [Debug] Connection id ""0HLA2UI043T9Q"" sent FIN with status "0". +2017-12-14 18:47:06.286 +05:30 [Debug] Connection id ""0HLA2UI043T9Q"" stopped. +2017-12-14 18:47:06.286 +05:30 [Debug] Connection id ""0HLA2UI043T9R"" stopped. +2017-12-14 18:47:06.286 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" sent FIN with status "0". +2017-12-14 18:47:06.286 +05:30 [Debug] Connection id ""0HLA2UI043T9N"" stopped. +2017-12-14 18:47:06.286 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" sent FIN with status "0". +2017-12-14 18:47:06.287 +05:30 [Debug] Connection id ""0HLA2UI043T9P"" stopped. +2017-12-14 18:47:06.287 +05:30 [Debug] Connection id ""0HLA2UI043T9T"" sent FIN with status "0". +2017-12-14 18:47:06.287 +05:30 [Debug] Connection id ""0HLA2UI043T9T"" stopped. +2017-12-14 18:47:06.287 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" sent FIN with status "0". +2017-12-14 18:47:06.288 +05:30 [Debug] Connection id ""0HLA2UI043T9O"" stopped. +2017-12-14 18:47:09.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 18:47:13.533 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:47:13.534 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:47:13.534 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:47:13.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:47:13.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7314.5976ms +2017-12-14 18:47:13.589 +05:30 [Information] Request finished in 7323.4802ms 200 application/json; charset=utf-8 +2017-12-14 18:47:13.590 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" completed keep alive response. +2017-12-14 18:47:13.610 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 18:47:13.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 18:47:13.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 18:47:13.613 +05:30 [Debug] Connection id ""0HLA2UI043T9U"" started. +2017-12-14 18:47:13.623 +05:30 [Debug] Connection id ""0HLA2UI043T9V"" started. +2017-12-14 18:47:13.625 +05:30 [Debug] Connection id ""0HLA2UI043TA0"" started. +2017-12-14 18:47:13.662 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 18:47:13.664 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 18:47:13.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 18:47:13.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 18:47:13.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 18:47:13.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 18:47:13.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 18:47:13.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 18:47:13.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 18:47:15.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 18:47:16.675 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:47:16.675 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:47:16.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:47:16.676 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:47:16.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:47:16.796 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3146.3776ms +2017-12-14 18:47:16.859 +05:30 [Information] Request finished in 3231.7924ms 200 application/json; charset=utf-8 +2017-12-14 18:47:16.859 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" completed keep alive response. +2017-12-14 18:47:16.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:47:20.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 18:47:41.924 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 18:47:41.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 18:47:41.924 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 18:47:41.997 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:47:41.997 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:47:41.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:47:42.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:47:44.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 31059.0165ms +2017-12-14 18:47:44.765 +05:30 [Information] Request finished in 31101.3673ms 200 application/json; charset=utf-8 +2017-12-14 18:47:44.766 +05:30 [Debug] Connection id ""0HLA2UI043TA0"" completed keep alive response. +2017-12-14 18:47:45.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:47:45.020 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:47:45.020 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:47:45.021 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:47:45.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 31354.4286ms +2017-12-14 18:47:45.027 +05:30 [Information] Request finished in 31403.854ms 200 application/json; charset=utf-8 +2017-12-14 18:47:45.027 +05:30 [Debug] Connection id ""0HLA2UI043T9U"" completed keep alive response. +2017-12-14 18:47:45.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 18:47:46.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:47:46.348 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:47:46.349 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:47:46.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:47:46.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4431.4848ms +2017-12-14 18:47:46.372 +05:30 [Information] Request finished in 4467.4836ms 200 application/json; charset=utf-8 +2017-12-14 18:47:46.373 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" completed keep alive response. +2017-12-14 18:47:48.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:47:48.075 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:47:48.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:47:48.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:47:48.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 34415.2048ms +2017-12-14 18:47:48.093 +05:30 [Information] Request finished in 34456.5928ms 200 application/json; charset=utf-8 +2017-12-14 18:47:48.093 +05:30 [Debug] Connection id ""0HLA2UI043T9V"" completed keep alive response. +2017-12-14 18:49:13.407 +05:30 [Debug] Connection id ""0HLA2UI043TA0"" received FIN. +2017-12-14 18:49:13.407 +05:30 [Debug] Connection id ""0HLA2UI043T9V"" received FIN. +2017-12-14 18:49:13.407 +05:30 [Debug] Connection id ""0HLA2UI043TA0"" disconnecting. +2017-12-14 18:49:13.407 +05:30 [Debug] Connection id ""0HLA2UI043T9U"" received FIN. +2017-12-14 18:49:13.407 +05:30 [Debug] Connection id ""0HLA2UI043T9V"" disconnecting. +2017-12-14 18:49:13.409 +05:30 [Debug] Connection id ""0HLA2UI043T9U"" disconnecting. +2017-12-14 18:49:13.409 +05:30 [Debug] Connection id ""0HLA2UI043T9V"" sending FIN. +2017-12-14 18:49:13.409 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" received FIN. +2017-12-14 18:49:13.410 +05:30 [Debug] Connection id ""0HLA2UI043T9V"" sent FIN with status "0". +2017-12-14 18:49:13.410 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" disconnecting. +2017-12-14 18:49:13.410 +05:30 [Debug] Connection id ""0HLA2UI043T9V"" stopped. +2017-12-14 18:49:13.410 +05:30 [Debug] Connection id ""0HLA2UI043TA0"" sending FIN. +2017-12-14 18:49:13.410 +05:30 [Debug] Connection id ""0HLA2UI043T9U"" sending FIN. +2017-12-14 18:49:13.410 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" sending FIN. +2017-12-14 18:49:13.411 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" sent FIN with status "0". +2017-12-14 18:49:13.411 +05:30 [Debug] Connection id ""0HLA2UI043T9S"" stopped. +2017-12-14 18:49:13.411 +05:30 [Debug] Connection id ""0HLA2UI043T9U"" sent FIN with status "0". +2017-12-14 18:49:13.411 +05:30 [Debug] Connection id ""0HLA2UI043T9U"" stopped. +2017-12-14 18:49:13.412 +05:30 [Debug] Connection id ""0HLA2UI043TA0"" sent FIN with status "0". +2017-12-14 18:49:13.412 +05:30 [Debug] Connection id ""0HLA2UI043TA0"" stopped. +2017-12-14 18:50:51.138 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" started. +2017-12-14 18:50:51.159 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 18:50:51.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 18:50:51.166 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 18:50:54.250 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 18:50:54.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:50:54.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:50:54.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:50:54.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3617.5591ms +2017-12-14 18:50:54.787 +05:30 [Information] Request finished in 3645.9249ms 200 application/json; charset=utf-8 +2017-12-14 18:50:54.788 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" completed keep alive response. +2017-12-14 18:50:54.795 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 18:50:54.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 18:50:54.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 18:50:57.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 18:50:59.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:50:59.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:50:59.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:50:59.515 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4718.3673ms +2017-12-14 18:50:59.518 +05:30 [Information] Request finished in 4722.7407ms 200 application/json; charset=utf-8 +2017-12-14 18:50:59.518 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" completed keep alive response. +2017-12-14 18:51:04.931 +05:30 [Debug] Connection id ""0HLA2UI043TA2"" started. +2017-12-14 18:51:04.939 +05:30 [Debug] Connection id ""0HLA2UI043TA4"" started. +2017-12-14 18:51:04.939 +05:30 [Debug] Connection id ""0HLA2UI043TA3"" started. +2017-12-14 18:51:05.101 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 18:51:05.101 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 18:51:05.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 18:51:05.319 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 18:51:05.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 18:51:05.320 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 18:51:05.466 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 18:51:05.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 18:51:05.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 18:51:05.513 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 18:51:05.513 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 18:51:05.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 18:51:06.776 +05:30 [Debug] Connection id ""0HLA2UI043TA6"" started. +2017-12-14 18:51:06.910 +05:30 [Debug] Connection id ""0HLA2UI043TA5"" started. +2017-12-14 18:51:07.339 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 18:51:07.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 18:51:07.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 18:51:07.625 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 18:51:07.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 18:51:07.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 18:51:08.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:51:09.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:51:09.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:51:09.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:51:09.621 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:09.621 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:09.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:09.622 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:09.628 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4303.2296ms +2017-12-14 18:51:09.635 +05:30 [Information] Request finished in 4687.0277ms 200 application/json; charset=utf-8 +2017-12-14 18:51:09.635 +05:30 [Debug] Connection id ""0HLA2UI043TA4"" completed keep alive response. +2017-12-14 18:51:09.678 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 18:51:09.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 18:51:09.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 18:51:09.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:09.904 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:09.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:09.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:09.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4439.0239ms +2017-12-14 18:51:09.911 +05:30 [Information] Request finished in 4720.6995ms 200 application/json; charset=utf-8 +2017-12-14 18:51:09.912 +05:30 [Debug] Connection id ""0HLA2UI043TA2"" completed keep alive response. +2017-12-14 18:51:09.950 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:09.950 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:09.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:09.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:09.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4818.2944ms +2017-12-14 18:51:09.989 +05:30 [Information] Request finished in 5035.7957ms 200 application/json; charset=utf-8 +2017-12-14 18:51:09.989 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" completed keep alive response. +2017-12-14 18:51:10.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:51:11.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:11.086 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:11.112 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:11.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:51:11.126 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:11.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3517.2343ms +2017-12-14 18:51:11.136 +05:30 [Information] Request finished in 4221.745ms 200 application/json; charset=utf-8 +2017-12-14 18:51:11.136 +05:30 [Debug] Connection id ""0HLA2UI043TA6"" completed keep alive response. +2017-12-14 18:51:12.512 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:12.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:12.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:12.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:12.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4888.9954ms +2017-12-14 18:51:12.530 +05:30 [Information] Request finished in 4917.3979ms 200 application/json; charset=utf-8 +2017-12-14 18:51:12.531 +05:30 [Debug] Connection id ""0HLA2UI043TA5"" completed keep alive response. +2017-12-14 18:51:13.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 18:51:13.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:13.336 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:13.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:13.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:13.408 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3698.2725ms +2017-12-14 18:51:13.462 +05:30 [Information] Request finished in 3761.8151ms 200 application/json; charset=utf-8 +2017-12-14 18:51:13.462 +05:30 [Debug] Connection id ""0HLA2UI043TA4"" completed keep alive response. +2017-12-14 18:51:13.588 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 18:51:13.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 18:51:13.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 18:51:13.738 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 18:51:13.796 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 18:51:13.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 18:51:13.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 18:51:13.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 18:51:13.837 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 18:51:14.483 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 18:51:14.483 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 18:51:14.484 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 18:51:15.483 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 18:51:15.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 18:51:15.484 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 18:51:19.100 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:51:19.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 18:51:19.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 18:51:19.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 18:51:19.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 18:51:23.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:23.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:23.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:23.180 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:23.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:23.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:25.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:25.777 +05:30 [Fatal] Sequence contains no elements +2017-12-14 18:51:25.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:25.991 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 18:51:26.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 12064.9206ms +2017-12-14 18:51:26.358 +05:30 [Information] Request finished in 12463.9279ms 200 application/json; charset=utf-8 +2017-12-14 18:51:26.359 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" completed keep alive response. +2017-12-14 18:51:26.752 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:26.756 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:26.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:26.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:26.917 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 12407.2455ms +2017-12-14 18:51:26.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 12126.9946ms +2017-12-14 18:51:26.929 +05:30 [Fatal] Sequence contains no elements +2017-12-14 18:51:26.941 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 18:51:26.949 +05:30 [Information] Request finished in 13202.5107ms 200 application/json; charset=utf-8 +2017-12-14 18:51:26.950 +05:30 [Debug] Connection id ""0HLA2UI043TA6"" completed keep alive response. +2017-12-14 18:51:26.951 +05:30 [Information] Request finished in 12445.812ms 200 application/json; charset=utf-8 +2017-12-14 18:51:26.960 +05:30 [Debug] Connection id ""0HLA2UI043TA5"" completed keep alive response. +2017-12-14 18:51:40.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:40.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:40.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:40.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:40.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 26574.7925ms +2017-12-14 18:51:40.259 +05:30 [Information] Request finished in 26745.8196ms 200 application/json; charset=utf-8 +2017-12-14 18:51:40.271 +05:30 [Debug] Connection id ""0HLA2UI043TA2"" completed keep alive response. +2017-12-14 18:51:49.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:49.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:49.520 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:49.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:49.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 34044.4927ms +2017-12-14 18:51:49.537 +05:30 [Information] Request finished in 34052.0701ms 200 application/json; charset=utf-8 +2017-12-14 18:51:49.538 +05:30 [Debug] Connection id ""0HLA2UI043TA4"" completed keep alive response. +2017-12-14 18:51:56.346 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 18:51:56.347 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 18:51:56.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 18:51:56.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 18:51:56.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 50850.3611ms +2017-12-14 18:51:56.441 +05:30 [Information] Request finished in 51243.574ms 200 application/json; charset=utf-8 +2017-12-14 18:51:56.442 +05:30 [Debug] Connection id ""0HLA2UI043TA3"" completed keep alive response. +2017-12-14 18:52:53.411 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" received FIN. +2017-12-14 18:52:53.412 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" disconnecting. +2017-12-14 18:52:53.413 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" sending FIN. +2017-12-14 18:52:53.413 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" sent FIN with status "0". +2017-12-14 18:52:53.414 +05:30 [Debug] Connection id ""0HLA2UI043TA1"" stopped. +2017-12-14 18:52:53.415 +05:30 [Debug] Connection id ""0HLA2UI043TA6"" received FIN. +2017-12-14 18:52:53.416 +05:30 [Debug] Connection id ""0HLA2UI043TA5"" received FIN. +2017-12-14 18:52:53.417 +05:30 [Debug] Connection id ""0HLA2UI043TA2"" received FIN. +2017-12-14 18:52:53.419 +05:30 [Debug] Connection id ""0HLA2UI043TA6"" disconnecting. +2017-12-14 18:52:53.420 +05:30 [Debug] Connection id ""0HLA2UI043TA5"" disconnecting. +2017-12-14 18:52:53.423 +05:30 [Debug] Connection id ""0HLA2UI043TA5"" sending FIN. +2017-12-14 18:52:53.424 +05:30 [Debug] Connection id ""0HLA2UI043TA5"" sent FIN with status "0". +2017-12-14 18:52:53.423 +05:30 [Debug] Connection id ""0HLA2UI043TA2"" disconnecting. +2017-12-14 18:52:53.420 +05:30 [Debug] Connection id ""0HLA2UI043TA6"" sending FIN. +2017-12-14 18:52:53.424 +05:30 [Debug] Connection id ""0HLA2UI043TA5"" stopped. +2017-12-14 18:52:53.425 +05:30 [Debug] Connection id ""0HLA2UI043TA2"" sending FIN. +2017-12-14 18:52:53.426 +05:30 [Debug] Connection id ""0HLA2UI043TA2"" sent FIN with status "0". +2017-12-14 18:52:53.426 +05:30 [Debug] Connection id ""0HLA2UI043TA2"" stopped. +2017-12-14 18:52:53.425 +05:30 [Debug] Connection id ""0HLA2UI043TA6"" sent FIN with status "0". +2017-12-14 18:52:53.433 +05:30 [Debug] Connection id ""0HLA2UI043TA6"" stopped. +2017-12-14 18:52:53.433 +05:30 [Debug] Connection id ""0HLA2UI043TA4"" received FIN. +2017-12-14 18:52:53.433 +05:30 [Debug] Connection id ""0HLA2UI043TA4"" disconnecting. +2017-12-14 18:52:53.434 +05:30 [Debug] Connection id ""0HLA2UI043TA4"" sending FIN. +2017-12-14 18:52:53.434 +05:30 [Debug] Connection id ""0HLA2UI043TA4"" sent FIN with status "0". +2017-12-14 18:52:53.434 +05:30 [Debug] Connection id ""0HLA2UI043TA4"" stopped. +2017-12-14 18:54:43.407 +05:30 [Debug] Connection id ""0HLA2UI043TA3"" received FIN. +2017-12-14 18:54:43.408 +05:30 [Debug] Connection id ""0HLA2UI043TA3"" disconnecting. +2017-12-14 18:54:43.411 +05:30 [Debug] Connection id ""0HLA2UI043TA3"" sending FIN. +2017-12-14 18:54:43.411 +05:30 [Debug] Connection id ""0HLA2UI043TA3"" sent FIN with status "0". +2017-12-14 18:54:43.412 +05:30 [Debug] Connection id ""0HLA2UI043TA3"" stopped. +2017-12-14 19:15:13.467 +05:30 [Debug] Hosting starting +2017-12-14 19:15:13.847 +05:30 [Debug] Hosting started +2017-12-14 19:15:13.970 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" started. +2017-12-14 19:15:13.973 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" started. +2017-12-14 19:15:14.388 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-14 19:15:14.409 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-14 19:15:14.662 +05:30 [Information] Request finished in 406.1417ms 200 +2017-12-14 19:15:14.915 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" completed keep alive response. +2017-12-14 19:15:16.662 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-14 19:15:16.765 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a3972c41-1c4c-4a63-8cf2-9869d352c96c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-14 19:15:17.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-14 19:15:17.220 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-14 19:15:17.223 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-14 19:15:17.284 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:15:17.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:15:17.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:15:17.601 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:15:17.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:15:17.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:15:17.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 751.693ms +2017-12-14 19:15:17.920 +05:30 [Information] Request finished in 3805.4628ms 200 application/json; charset=utf-8 +2017-12-14 19:15:17.923 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" completed keep alive response. +2017-12-14 19:15:18.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-14 19:15:18.042 +05:30 [Debug] Request did not match any routes. +2017-12-14 19:15:18.070 +05:30 [Debug] The request path "" does not match the path filter +2017-12-14 19:15:18.073 +05:30 [Information] Request finished in 33.4165ms 404 +2017-12-14 19:15:18.073 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" completed keep alive response. +2017-12-14 19:15:21.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:15:29.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:15:29.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:15:29.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:15:29.526 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11916.4241ms +2017-12-14 19:15:29.536 +05:30 [Information] Request finished in 11958.9836ms 200 application/json; charset=utf-8 +2017-12-14 19:15:29.537 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" completed keep alive response. +2017-12-14 19:15:43.314 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:15:43.315 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:15:43.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:15:43.843 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:15:43.845 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:15:43.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:15:46.522 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:15:46.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:15:47.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:15:47.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:15:47.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:15:47.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3739.9658ms +2017-12-14 19:15:47.064 +05:30 [Information] Request finished in 3751.3484ms 200 application/json; charset=utf-8 +2017-12-14 19:15:47.064 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" completed keep alive response. +2017-12-14 19:15:47.121 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:15:47.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:15:47.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:15:49.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:15:49.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:15:49.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:15:49.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5232.4125ms +2017-12-14 19:15:49.081 +05:30 [Information] Request finished in 5239.167ms 200 application/json; charset=utf-8 +2017-12-14 19:15:49.082 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" completed keep alive response. +2017-12-14 19:15:49.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:15:49.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:15:49.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:15:49.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:15:49.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2695.5748ms +2017-12-14 19:15:49.910 +05:30 [Information] Request finished in 2783.1209ms 200 application/json; charset=utf-8 +2017-12-14 19:15:49.911 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" completed keep alive response. +2017-12-14 19:15:50.142 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:15:50.143 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:15:50.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:15:53.286 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:15:53.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:15:53.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:15:53.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:15:53.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3716.0428ms +2017-12-14 19:15:53.864 +05:30 [Information] Request finished in 3752.8537ms 200 application/json; charset=utf-8 +2017-12-14 19:15:53.864 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" completed keep alive response. +2017-12-14 19:16:06.448 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:16:06.450 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:16:06.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:16:09.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:16:10.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:10.033 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:10.034 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:10.035 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3583.9233ms +2017-12-14 19:16:10.037 +05:30 [Information] Request finished in 3591.53ms 200 application/json; charset=utf-8 +2017-12-14 19:16:10.037 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" completed keep alive response. +2017-12-14 19:16:10.058 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-14 19:16:10.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-14 19:16:10.061 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-14 19:16:12.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-14 19:16:14.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:14.595 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:14.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:14.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4825.4662ms +2017-12-14 19:16:14.908 +05:30 [Information] Request finished in 4850.7237ms 200 application/json; charset=utf-8 +2017-12-14 19:16:14.908 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" completed keep alive response. +2017-12-14 19:16:15.488 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:16:15.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:16:15.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:16:18.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:16:19.110 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:19.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:19.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:19.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3622.4786ms +2017-12-14 19:16:19.115 +05:30 [Information] Request finished in 3638.4492ms 200 application/json; charset=utf-8 +2017-12-14 19:16:19.116 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" completed keep alive response. +2017-12-14 19:16:19.177 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-14 19:16:19.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 19:16:19.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 19:16:22.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-14 19:16:23.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:23.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:23.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:24.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4822.2606ms +2017-12-14 19:16:24.006 +05:30 [Information] Request finished in 4829.0167ms 200 application/json; charset=utf-8 +2017-12-14 19:16:24.006 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" completed keep alive response. +2017-12-14 19:16:26.300 +05:30 [Debug] Connection id ""0HLA2V3JHOU85"" started. +2017-12-14 19:16:26.300 +05:30 [Debug] Connection id ""0HLA2V3JHOU86"" started. +2017-12-14 19:16:26.323 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 19:16:26.323 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 19:16:26.324 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 19:16:26.325 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 19:16:26.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 19:16:26.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 19:16:26.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 19:16:26.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 19:16:26.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 19:16:26.328 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 19:16:26.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 19:16:26.376 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 19:16:26.454 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" started. +2017-12-14 19:16:26.454 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" started. +2017-12-14 19:16:27.702 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 19:16:27.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 19:16:27.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 19:16:28.685 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 19:16:28.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 19:16:28.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 19:16:31.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:16:31.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:16:31.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:16:31.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:16:31.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:16:31.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:16:32.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:32.619 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:16:32.619 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:32.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:32.635 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6258.5574ms +2017-12-14 19:16:32.637 +05:30 [Information] Request finished in 6335.4108ms 200 application/json; charset=utf-8 +2017-12-14 19:16:32.637 +05:30 [Debug] Connection id ""0HLA2V3JHOU85"" completed keep alive response. +2017-12-14 19:16:32.648 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 19:16:32.649 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 19:16:32.650 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 19:16:33.200 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:33.201 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:16:33.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:33.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:33.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6872.702ms +2017-12-14 19:16:33.208 +05:30 [Information] Request finished in 6904.19ms 200 application/json; charset=utf-8 +2017-12-14 19:16:33.209 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" completed keep alive response. +2017-12-14 19:16:34.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:34.781 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:16:34.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:34.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:34.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6103.3142ms +2017-12-14 19:16:34.800 +05:30 [Information] Request finished in 6114.3018ms 200 application/json; charset=utf-8 +2017-12-14 19:16:34.802 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" completed keep alive response. +2017-12-14 19:16:34.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:34.842 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:16:34.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:34.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:34.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7133.3268ms +2017-12-14 19:16:34.851 +05:30 [Information] Request finished in 7153.8309ms 200 application/json; charset=utf-8 +2017-12-14 19:16:34.851 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" completed keep alive response. +2017-12-14 19:16:35.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:35.099 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:16:35.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:35.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:35.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8763.8823ms +2017-12-14 19:16:35.107 +05:30 [Information] Request finished in 8808.1431ms 200 application/json; charset=utf-8 +2017-12-14 19:16:35.108 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" completed keep alive response. +2017-12-14 19:16:35.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:16:38.226 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:38.227 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:16:38.227 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:38.228 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:38.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5629.4281ms +2017-12-14 19:16:38.283 +05:30 [Information] Request finished in 5636.6031ms 200 application/json; charset=utf-8 +2017-12-14 19:16:38.284 +05:30 [Debug] Connection id ""0HLA2V3JHOU85"" completed keep alive response. +2017-12-14 19:16:43.349 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:16:43.456 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:16:44.028 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:16:44.029 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:16:54.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:16:54.845 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:16:54.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:16:54.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:16:54.858 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 28518.1695ms +2017-12-14 19:16:54.861 +05:30 [Information] Request finished in 28537.6274ms 200 application/json; charset=utf-8 +2017-12-14 19:16:54.861 +05:30 [Debug] Connection id ""0HLA2V3JHOU86"" completed keep alive response. +2017-12-14 19:17:21.937 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:17:21.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 19:17:21.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 19:17:24.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:17:29.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:17:29.500 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:17:29.500 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:17:29.501 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:17:29.553 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7612.8321ms +2017-12-14 19:17:29.556 +05:30 [Information] Request finished in 7619.1425ms 200 application/json; charset=utf-8 +2017-12-14 19:17:29.557 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" completed keep alive response. +2017-12-14 19:17:29.598 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:17:29.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:17:29.602 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:17:29.609 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 19:17:29.619 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 19:17:29.622 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 19:17:29.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 19:17:29.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 19:17:29.625 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 19:17:29.630 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 19:17:29.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 19:17:29.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 19:17:32.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:17:32.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:17:32.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 19:17:32.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:17:36.615 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:17:36.616 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:17:36.616 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:17:36.617 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:17:36.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 7053.6192ms +2017-12-14 19:17:36.670 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:17:36.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:17:36.671 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:17:36.672 +05:30 [Information] Request finished in 7081.6323ms 200 application/json; charset=utf-8 +2017-12-14 19:17:36.673 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" completed keep alive response. +2017-12-14 19:17:36.932 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:17:36.932 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:17:36.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:17:36.933 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:17:36.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 7303.5104ms +2017-12-14 19:17:36.939 +05:30 [Information] Request finished in 7342.7105ms 200 application/json; charset=utf-8 +2017-12-14 19:17:36.939 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" completed keep alive response. +2017-12-14 19:17:38.932 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:17:38.933 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:17:38.933 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:17:38.934 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:17:38.961 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 9274.8293ms +2017-12-14 19:17:38.965 +05:30 [Information] Request finished in 9367.002ms 200 application/json; charset=utf-8 +2017-12-14 19:17:38.965 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" completed keep alive response. +2017-12-14 19:17:39.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:17:40.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:17:40.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:17:40.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:17:40.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:17:40.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3498.172ms +2017-12-14 19:17:40.182 +05:30 [Information] Request finished in 3517.679ms 200 application/json; charset=utf-8 +2017-12-14 19:17:40.183 +05:30 [Debug] Connection id ""0HLA2V3JHOU86"" completed keep alive response. +2017-12-14 19:17:41.274 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:17:41.274 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:17:41.274 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:17:41.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:17:41.290 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 11661.0958ms +2017-12-14 19:17:41.293 +05:30 [Information] Request finished in 11697.1435ms 200 application/json; charset=utf-8 +2017-12-14 19:17:41.293 +05:30 [Debug] Connection id ""0HLA2V3JHOU85"" completed keep alive response. +2017-12-14 19:18:31.976 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" received FIN. +2017-12-14 19:18:31.978 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" disconnecting. +2017-12-14 19:18:31.980 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" sending FIN. +2017-12-14 19:18:31.981 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:18:31.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:18:31.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:18:31.992 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" sent FIN with status "0". +2017-12-14 19:18:31.995 +05:30 [Debug] Connection id ""0HLA2V3JHOU83"" stopped. +2017-12-14 19:18:35.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:18:35.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:35.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:35.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:35.597 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3613.8361ms +2017-12-14 19:18:35.601 +05:30 [Information] Request finished in 3622.7495ms 200 application/json; charset=utf-8 +2017-12-14 19:18:35.603 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" completed keep alive response. +2017-12-14 19:18:35.622 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 19:18:35.622 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 19:18:35.623 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 19:18:38.661 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 19:18:40.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:40.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:40.329 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:40.332 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4705.9537ms +2017-12-14 19:18:40.343 +05:30 [Information] Request finished in 4719.2263ms 200 application/json; charset=utf-8 +2017-12-14 19:18:40.343 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" completed keep alive response. +2017-12-14 19:18:41.733 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" received FIN. +2017-12-14 19:18:41.733 +05:30 [Debug] Connection id ""0HLA2V3JHOU86"" received FIN. +2017-12-14 19:18:41.733 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" disconnecting. +2017-12-14 19:18:41.733 +05:30 [Debug] Connection id ""0HLA2V3JHOU85"" received FIN. +2017-12-14 19:18:41.733 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" sending FIN. +2017-12-14 19:18:41.733 +05:30 [Debug] Connection id ""0HLA2V3JHOU86"" disconnecting. +2017-12-14 19:18:41.734 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" sent FIN with status "0". +2017-12-14 19:18:41.734 +05:30 [Debug] Connection id ""0HLA2V3JHOU85"" disconnecting. +2017-12-14 19:18:41.734 +05:30 [Debug] Connection id ""0HLA2V3JHOU84"" stopped. +2017-12-14 19:18:41.734 +05:30 [Debug] Connection id ""0HLA2V3JHOU85"" sending FIN. +2017-12-14 19:18:41.734 +05:30 [Debug] Connection id ""0HLA2V3JHOU86"" sending FIN. +2017-12-14 19:18:41.734 +05:30 [Debug] Connection id ""0HLA2V3JHOU85"" sent FIN with status "0". +2017-12-14 19:18:41.735 +05:30 [Debug] Connection id ""0HLA2V3JHOU85"" stopped. +2017-12-14 19:18:41.735 +05:30 [Debug] Connection id ""0HLA2V3JHOU86"" sent FIN with status "0". +2017-12-14 19:18:41.736 +05:30 [Debug] Connection id ""0HLA2V3JHOU86"" stopped. +2017-12-14 19:18:41.744 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 19:18:41.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 19:18:41.746 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 19:18:41.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 19:18:41.747 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 19:18:41.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 19:18:41.752 +05:30 [Debug] Connection id ""0HLA2V3JHOU89"" started. +2017-12-14 19:18:41.753 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 19:18:41.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 19:18:41.754 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 19:18:41.759 +05:30 [Debug] Connection id ""0HLA2V3JHOU8A"" started. +2017-12-14 19:18:41.760 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 19:18:41.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 19:18:41.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 19:18:41.917 +05:30 [Debug] Connection id ""0HLA2V3JHOU8B"" started. +2017-12-14 19:18:41.917 +05:30 [Debug] Connection id ""0HLA2V3JHOU8C"" started. +2017-12-14 19:18:41.939 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 19:18:41.940 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 19:18:41.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 19:18:41.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 19:18:41.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 19:18:41.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 19:18:44.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:44.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:44.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:44.927 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:45.009 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:45.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:45.415 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:45.415 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:18:45.415 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:45.416 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:45.417 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3670.2022ms +2017-12-14 19:18:45.420 +05:30 [Information] Request finished in 3682.3887ms 200 application/json; charset=utf-8 +2017-12-14 19:18:45.420 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" completed keep alive response. +2017-12-14 19:18:45.423 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=48 +2017-12-14 19:18:45.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-12-14 19:18:45.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-12-14 19:18:45.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:45.634 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:18:45.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:45.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:45.648 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3885.6222ms +2017-12-14 19:18:45.650 +05:30 [Information] Request finished in 3890.1256ms 200 application/json; charset=utf-8 +2017-12-14 19:18:45.650 +05:30 [Debug] Connection id ""0HLA2V3JHOU8A"" completed keep alive response. +2017-12-14 19:18:45.656 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=48 +2017-12-14 19:18:45.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-12-14 19:18:45.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-12-14 19:18:46.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:46.037 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:18:46.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:46.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:46.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4285.3999ms +2017-12-14 19:18:46.046 +05:30 [Information] Request finished in 4291.0394ms 200 application/json; charset=utf-8 +2017-12-14 19:18:46.046 +05:30 [Debug] Connection id ""0HLA2V3JHOU89"" completed keep alive response. +2017-12-14 19:18:46.212 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:46.213 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:18:46.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:46.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:46.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4272.6712ms +2017-12-14 19:18:46.220 +05:30 [Information] Request finished in 4300.8016ms 200 application/json; charset=utf-8 +2017-12-14 19:18:46.221 +05:30 [Debug] Connection id ""0HLA2V3JHOU8C"" completed keep alive response. +2017-12-14 19:18:46.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:46.252 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:18:46.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:46.262 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:46.272 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4318.659ms +2017-12-14 19:18:46.283 +05:30 [Information] Request finished in 4358.9037ms 200 application/json; charset=utf-8 +2017-12-14 19:18:46.284 +05:30 [Debug] Connection id ""0HLA2V3JHOU8B"" completed keep alive response. +2017-12-14 19:18:48.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:48.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:50.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:50.014 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:18:50.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:50.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:50.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 4386.1066ms +2017-12-14 19:18:50.057 +05:30 [Information] Request finished in 4402.9455ms 200 application/json; charset=utf-8 +2017-12-14 19:18:50.057 +05:30 [Debug] Connection id ""0HLA2V3JHOU8A"" completed keep alive response. +2017-12-14 19:18:50.649 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:50.649 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:18:50.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:50.650 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:50.664 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=48 +2017-12-14 19:18:50.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-12-14 19:18:50.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-12-14 19:18:50.672 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=48 +2017-12-14 19:18:50.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-12-14 19:18:50.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-12-14 19:18:50.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 5257.9951ms +2017-12-14 19:18:50.695 +05:30 [Information] Request finished in 5270.7722ms 200 application/json; charset=utf-8 +2017-12-14 19:18:50.695 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" completed keep alive response. +2017-12-14 19:18:53.524 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:18:53.527 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:18:53.822 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:54.017 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:18:54.147 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:18:54.152 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:18:55.234 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:55.234 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:18:55.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:55.237 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:18:55.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 4613.9583ms +2017-12-14 19:18:55.284 +05:30 [Information] Request finished in 4621.0707ms 200 application/json; charset=utf-8 +2017-12-14 19:18:55.285 +05:30 [Debug] Connection id ""0HLA2V3JHOU89"" completed keep alive response. +2017-12-14 19:18:59.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:18:59.702 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:18:59.702 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:18:59.703 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:19:00.098 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 9413.9639ms +2017-12-14 19:19:00.112 +05:30 [Information] Request finished in 9430.6927ms 200 application/json; charset=utf-8 +2017-12-14 19:19:00.112 +05:30 [Debug] Connection id ""0HLA2V3JHOU8C"" completed keep alive response. +2017-12-14 19:19:04.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:19:04.900 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:19:04.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:19:04.901 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:19:04.902 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23153.0418ms +2017-12-14 19:19:04.905 +05:30 [Information] Request finished in 23164.9335ms 200 application/json; charset=utf-8 +2017-12-14 19:19:04.905 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" completed keep alive response. +2017-12-14 19:20:43.974 +05:30 [Debug] Connection id ""0HLA2V3JHOU8B"" received FIN. +2017-12-14 19:20:43.974 +05:30 [Debug] Connection id ""0HLA2V3JHOU8A"" received FIN. +2017-12-14 19:20:43.974 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" received FIN. +2017-12-14 19:20:43.974 +05:30 [Debug] Connection id ""0HLA2V3JHOU89"" received FIN. +2017-12-14 19:20:43.975 +05:30 [Debug] Connection id ""0HLA2V3JHOU8A"" disconnecting. +2017-12-14 19:20:43.975 +05:30 [Debug] Connection id ""0HLA2V3JHOU8C"" received FIN. +2017-12-14 19:20:43.975 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" received FIN. +2017-12-14 19:20:43.975 +05:30 [Debug] Connection id ""0HLA2V3JHOU8A"" sending FIN. +2017-12-14 19:20:43.976 +05:30 [Debug] Connection id ""0HLA2V3JHOU8A"" sent FIN with status "0". +2017-12-14 19:20:43.977 +05:30 [Debug] Connection id ""0HLA2V3JHOU8A"" stopped. +2017-12-14 19:20:43.977 +05:30 [Debug] Connection id ""0HLA2V3JHOU89"" disconnecting. +2017-12-14 19:20:43.978 +05:30 [Debug] Connection id ""0HLA2V3JHOU8C"" disconnecting. +2017-12-14 19:20:43.975 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" disconnecting. +2017-12-14 19:20:43.979 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" disconnecting. +2017-12-14 19:20:43.979 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" sending FIN. +2017-12-14 19:20:43.979 +05:30 [Debug] Connection id ""0HLA2V3JHOU89"" sending FIN. +2017-12-14 19:20:43.979 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" sent FIN with status "0". +2017-12-14 19:20:43.980 +05:30 [Debug] Connection id ""0HLA2V3JHOU87"" stopped. +2017-12-14 19:20:43.979 +05:30 [Debug] Connection id ""0HLA2V3JHOU8C"" sending FIN. +2017-12-14 19:20:43.974 +05:30 [Debug] Connection id ""0HLA2V3JHOU8B"" disconnecting. +2017-12-14 19:20:43.981 +05:30 [Debug] Connection id ""0HLA2V3JHOU8B"" sending FIN. +2017-12-14 19:20:43.981 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" sending FIN. +2017-12-14 19:20:43.982 +05:30 [Debug] Connection id ""0HLA2V3JHOU8B"" sent FIN with status "0". +2017-12-14 19:20:43.982 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" sent FIN with status "0". +2017-12-14 19:20:43.982 +05:30 [Debug] Connection id ""0HLA2V3JHOU8B"" stopped. +2017-12-14 19:20:43.982 +05:30 [Debug] Connection id ""0HLA2V3JHOU88"" stopped. +2017-12-14 19:20:43.982 +05:30 [Debug] Connection id ""0HLA2V3JHOU8C"" sent FIN with status "0". +2017-12-14 19:20:43.983 +05:30 [Debug] Connection id ""0HLA2V3JHOU8C"" stopped. +2017-12-14 19:20:43.983 +05:30 [Debug] Connection id ""0HLA2V3JHOU89"" sent FIN with status "0". +2017-12-14 19:20:43.983 +05:30 [Debug] Connection id ""0HLA2V3JHOU89"" stopped. +2017-12-14 19:28:29.483 +05:30 [Debug] Hosting starting +2017-12-14 19:28:29.868 +05:30 [Debug] Hosting started +2017-12-14 19:28:29.978 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" started. +2017-12-14 19:28:29.981 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" started. +2017-12-14 19:28:30.363 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-14 19:28:30.371 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-14 19:28:30.487 +05:30 [Information] Request finished in 171.0526ms 200 +2017-12-14 19:28:30.625 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" completed keep alive response. +2017-12-14 19:28:32.180 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-14 19:28:32.273 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"4f788f7c-55b5-4633-a4b7-92ecf8989c57"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-14 19:28:32.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-14 19:28:32.909 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-14 19:28:32.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-14 19:28:32.985 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:28:32.991 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:28:33.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:28:33.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1030.0557ms +2017-12-14 19:28:33.537 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:28:33.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:28:33.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:28:33.616 +05:30 [Information] Request finished in 3337.4159ms 200 application/json; charset=utf-8 +2017-12-14 19:28:33.619 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" completed keep alive response. +2017-12-14 19:28:37.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:28:44.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:28:44.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:28:44.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:28:44.115 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10567.5516ms +2017-12-14 19:28:44.122 +05:30 [Information] Request finished in 10586.0397ms 200 application/json; charset=utf-8 +2017-12-14 19:28:44.123 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" completed keep alive response. +2017-12-14 19:28:54.201 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:28:54.203 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:28:54.207 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:28:57.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:28:57.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:28:57.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:28:57.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:28:57.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3745.9751ms +2017-12-14 19:28:57.974 +05:30 [Information] Request finished in 3763.0942ms 200 application/json; charset=utf-8 +2017-12-14 19:28:57.975 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" completed keep alive response. +2017-12-14 19:28:58.055 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:28:58.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:28:58.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:29:01.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:29:01.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:01.681 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:01.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:01.684 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3627.0582ms +2017-12-14 19:29:01.686 +05:30 [Information] Request finished in 3639.7884ms 200 application/json; charset=utf-8 +2017-12-14 19:29:01.687 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" completed keep alive response. +2017-12-14 19:29:01.722 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:29:01.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:29:01.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:29:04.752 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:29:05.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:05.341 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:05.341 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:05.343 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3618.7991ms +2017-12-14 19:29:05.345 +05:30 [Information] Request finished in 3623.6322ms 200 application/json; charset=utf-8 +2017-12-14 19:29:05.346 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" completed keep alive response. +2017-12-14 19:29:27.877 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:29:27.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:29:27.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:29:30.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:29:31.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:31.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:31.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:31.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3636.8696ms +2017-12-14 19:29:31.522 +05:30 [Information] Request finished in 3645.9084ms 200 application/json; charset=utf-8 +2017-12-14 19:29:31.522 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" completed keep alive response. +2017-12-14 19:29:33.979 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:29:33.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:29:33.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:29:37.015 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:29:37.606 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:37.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:37.607 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:37.609 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3628.0105ms +2017-12-14 19:29:37.611 +05:30 [Information] Request finished in 3636.0087ms 200 application/json; charset=utf-8 +2017-12-14 19:29:37.612 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" completed keep alive response. +2017-12-14 19:29:37.629 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-14 19:29:37.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-14 19:29:37.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-14 19:29:40.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-14 19:29:42.968 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:42.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:42.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:43.109 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5470.7931ms +2017-12-14 19:29:43.112 +05:30 [Information] Request finished in 5481.5794ms 200 application/json; charset=utf-8 +2017-12-14 19:29:43.112 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" completed keep alive response. +2017-12-14 19:29:43.435 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:29:43.435 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:29:43.436 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:29:45.529 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:29:46.116 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:46.116 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:46.117 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:46.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2682.175ms +2017-12-14 19:29:46.120 +05:30 [Information] Request finished in 2685.8897ms 200 application/json; charset=utf-8 +2017-12-14 19:29:46.120 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" completed keep alive response. +2017-12-14 19:29:46.157 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-14 19:29:46.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 19:29:46.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 19:29:49.209 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-14 19:29:51.059 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:51.060 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:51.061 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:51.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4940.9514ms +2017-12-14 19:29:51.108 +05:30 [Information] Request finished in 4949.6018ms 200 application/json; charset=utf-8 +2017-12-14 19:29:51.109 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" completed keep alive response. +2017-12-14 19:29:52.565 +05:30 [Debug] Connection id ""0HLA2VB0P2SV7"" started. +2017-12-14 19:29:52.566 +05:30 [Debug] Connection id ""0HLA2VB0P2SV6"" started. +2017-12-14 19:29:52.567 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 19:29:52.570 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 19:29:52.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 19:29:52.572 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 19:29:52.573 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 19:29:52.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 19:29:52.575 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 19:29:52.575 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 19:29:52.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 19:29:52.577 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 19:29:52.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 19:29:52.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 19:29:52.690 +05:30 [Debug] Connection id ""0HLA2VB0P2SV8"" started. +2017-12-14 19:29:52.690 +05:30 [Debug] Connection id ""0HLA2VB0P2SV9"" started. +2017-12-14 19:29:52.695 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 19:29:52.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 19:29:52.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 19:29:52.697 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 19:29:52.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 19:29:52.707 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 19:29:55.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:29:55.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:29:55.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:29:55.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:29:55.873 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:29:55.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:29:57.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:57.089 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:29:57.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:57.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:57.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4518.2709ms +2017-12-14 19:29:57.096 +05:30 [Information] Request finished in 4528.5777ms 200 application/json; charset=utf-8 +2017-12-14 19:29:57.096 +05:30 [Debug] Connection id ""0HLA2VB0P2SV6"" completed keep alive response. +2017-12-14 19:29:57.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-14 19:29:57.112 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-14 19:29:57.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-14 19:29:57.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:57.992 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:29:57.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:57.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:58.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5442.6357ms +2017-12-14 19:29:58.020 +05:30 [Information] Request finished in 5454.7749ms 200 application/json; charset=utf-8 +2017-12-14 19:29:58.020 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" completed keep alive response. +2017-12-14 19:29:58.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:58.099 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:29:58.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:58.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:58.105 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5526.1384ms +2017-12-14 19:29:58.111 +05:30 [Information] Request finished in 5544.8042ms 200 application/json; charset=utf-8 +2017-12-14 19:29:58.114 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" completed keep alive response. +2017-12-14 19:29:58.435 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:58.435 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:29:58.435 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:58.437 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:58.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5730.3504ms +2017-12-14 19:29:58.440 +05:30 [Information] Request finished in 5744.9354ms 200 application/json; charset=utf-8 +2017-12-14 19:29:58.440 +05:30 [Debug] Connection id ""0HLA2VB0P2SV8"" completed keep alive response. +2017-12-14 19:29:58.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:29:58.613 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:29:58.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:29:58.615 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:29:58.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5915.487ms +2017-12-14 19:29:58.619 +05:30 [Information] Request finished in 5926.1733ms 200 application/json; charset=utf-8 +2017-12-14 19:29:58.619 +05:30 [Debug] Connection id ""0HLA2VB0P2SV9"" completed keep alive response. +2017-12-14 19:30:00.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:30:02.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:30:02.606 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:30:02.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:30:02.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:30:02.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5572.2092ms +2017-12-14 19:30:02.696 +05:30 [Information] Request finished in 5591.4472ms 200 application/json; charset=utf-8 +2017-12-14 19:30:02.697 +05:30 [Debug] Connection id ""0HLA2VB0P2SV6"" completed keep alive response. +2017-12-14 19:30:05.968 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:30:06.026 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:30:06.587 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:30:06.588 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:30:17.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:30:17.254 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:30:17.254 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:30:17.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:30:17.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24690.1664ms +2017-12-14 19:30:17.270 +05:30 [Information] Request finished in 24703.2567ms 200 application/json; charset=utf-8 +2017-12-14 19:30:17.271 +05:30 [Debug] Connection id ""0HLA2VB0P2SV7"" completed keep alive response. +2017-12-14 19:31:50.880 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" received FIN. +2017-12-14 19:31:50.880 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" received FIN. +2017-12-14 19:31:50.881 +05:30 [Debug] Connection id ""0HLA2VB0P2SV8"" received FIN. +2017-12-14 19:31:50.881 +05:30 [Debug] Connection id ""0HLA2VB0P2SV7"" received FIN. +2017-12-14 19:31:50.904 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" disconnecting. +2017-12-14 19:31:50.905 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" sending FIN. +2017-12-14 19:31:50.913 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" sent FIN with status "0". +2017-12-14 19:31:50.924 +05:30 [Debug] Connection id ""0HLA2VB0P2SV7"" disconnecting. +2017-12-14 19:31:50.926 +05:30 [Debug] Connection id ""0HLA2VB0P2SV8"" disconnecting. +2017-12-14 19:31:50.928 +05:30 [Debug] Connection id ""0HLA2VB0P2SV4"" stopped. +2017-12-14 19:31:50.929 +05:30 [Debug] Connection id ""0HLA2VB0P2SV7"" sending FIN. +2017-12-14 19:31:50.929 +05:30 [Debug] Connection id ""0HLA2VB0P2SV8"" sending FIN. +2017-12-14 19:31:50.930 +05:30 [Debug] Connection id ""0HLA2VB0P2SV8"" sent FIN with status "0". +2017-12-14 19:31:50.930 +05:30 [Debug] Connection id ""0HLA2VB0P2SV8"" stopped. +2017-12-14 19:31:50.931 +05:30 [Debug] Connection id ""0HLA2VB0P2SV7"" sent FIN with status "0". +2017-12-14 19:31:50.932 +05:30 [Debug] Connection id ""0HLA2VB0P2SV7"" stopped. +2017-12-14 19:31:50.939 +05:30 [Debug] Connection id ""0HLA2VB0P2SV9"" received FIN. +2017-12-14 19:31:50.940 +05:30 [Debug] Connection id ""0HLA2VB0P2SV6"" received FIN. +2017-12-14 19:31:50.941 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" started. +2017-12-14 19:31:50.948 +05:30 [Debug] Connection id ""0HLA2VB0P2SV9"" disconnecting. +2017-12-14 19:31:50.948 +05:30 [Debug] Connection id ""0HLA2VB0P2SV6"" disconnecting. +2017-12-14 19:31:50.951 +05:30 [Debug] Connection id ""0HLA2VB0P2SV9"" sending FIN. +2017-12-14 19:31:50.939 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" disconnecting. +2017-12-14 19:31:50.961 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:31:50.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 19:31:50.964 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 19:31:50.953 +05:30 [Debug] Connection id ""0HLA2VB0P2SV6"" sending FIN. +2017-12-14 19:31:50.969 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" sending FIN. +2017-12-14 19:31:50.973 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" sent FIN with status "0". +2017-12-14 19:31:50.973 +05:30 [Debug] Connection id ""0HLA2VB0P2SV5"" stopped. +2017-12-14 19:31:50.975 +05:30 [Debug] Connection id ""0HLA2VB0P2SV6"" sent FIN with status "0". +2017-12-14 19:31:50.976 +05:30 [Debug] Connection id ""0HLA2VB0P2SV6"" stopped. +2017-12-14 19:31:50.977 +05:30 [Debug] Connection id ""0HLA2VB0P2SV9"" sent FIN with status "0". +2017-12-14 19:31:50.977 +05:30 [Debug] Connection id ""0HLA2VB0P2SV9"" stopped. +2017-12-14 19:31:54.020 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:31:58.279 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:31:58.280 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:31:58.280 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:31:58.281 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:31:58.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7358.1676ms +2017-12-14 19:31:58.325 +05:30 [Information] Request finished in 7376.3488ms 200 application/json; charset=utf-8 +2017-12-14 19:31:58.325 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" completed keep alive response. +2017-12-14 19:31:58.348 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" started. +2017-12-14 19:31:58.349 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 19:31:58.349 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 19:31:58.351 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 19:31:58.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:31:58.366 +05:30 [Debug] Connection id ""0HLA2VB0P2SVC"" started. +2017-12-14 19:31:58.366 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:31:58.368 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:31:58.374 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" started. +2017-12-14 19:31:58.389 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 19:31:58.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 19:31:58.392 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 19:31:58.403 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 19:31:58.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 19:31:58.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 19:32:01.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 19:32:01.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:32:01.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:32:01.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:32:19.054 +05:30 [Debug] Connection id ""0HLA2VB0P2SVE"" started. +2017-12-14 19:32:19.157 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:32:19.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:32:19.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:32:25.823 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:32:33.827 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:32:33.827 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:32:33.828 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:32:37.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:32:54.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:32:54.924 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:32:54.924 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:32:55.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:32:55.020 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 56595.4353ms +2017-12-14 19:32:55.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 56578.579ms +2017-12-14 19:32:55.051 +05:30 [Information] Request finished in 56635.7291ms 200 application/json; charset=utf-8 +2017-12-14 19:32:55.051 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" completed keep alive response. +2017-12-14 19:32:56.959 +05:30 [Information] Request finished in 56673.1965ms 200 application/json; charset=utf-8 +2017-12-14 19:32:56.960 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" completed keep alive response. +2017-12-14 19:32:57.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:32:57.252 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:32:57.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:32:57.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:32:57.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 58910.0901ms +2017-12-14 19:32:57.266 +05:30 [Information] Request finished in 58919.254ms 200 application/json; charset=utf-8 +2017-12-14 19:32:57.266 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" completed keep alive response. +2017-12-14 19:32:58.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:32:58.351 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:32:58.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:32:58.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:32:58.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 39194.9122ms +2017-12-14 19:32:58.358 +05:30 [Information] Request finished in 39302.3918ms 200 application/json; charset=utf-8 +2017-12-14 19:32:58.358 +05:30 [Debug] Connection id ""0HLA2VB0P2SVE"" completed keep alive response. +2017-12-14 19:33:00.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:00.145 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:00.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:00.147 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:00.160 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 61766.3701ms +2017-12-14 19:33:00.167 +05:30 [Information] Request finished in 61784.211ms 200 application/json; charset=utf-8 +2017-12-14 19:33:00.168 +05:30 [Debug] Connection id ""0HLA2VB0P2SVC"" completed keep alive response. +2017-12-14 19:33:09.814 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:33:09.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:33:09.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:33:12.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:33:13.380 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:13.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:13.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:13.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3565.8193ms +2017-12-14 19:33:13.385 +05:30 [Information] Request finished in 3570.2356ms 200 application/json; charset=utf-8 +2017-12-14 19:33:13.386 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" completed keep alive response. +2017-12-14 19:33:13.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 19:33:13.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 19:33:13.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 19:33:16.448 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 19:33:18.104 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:18.104 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:18.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:18.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4704.9541ms +2017-12-14 19:33:18.120 +05:30 [Information] Request finished in 4726.1599ms 200 application/json; charset=utf-8 +2017-12-14 19:33:18.120 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" completed keep alive response. +2017-12-14 19:33:19.049 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 19:33:19.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 19:33:19.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 19:33:19.078 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 19:33:19.078 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 19:33:19.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 19:33:19.081 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 19:33:19.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 19:33:19.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 19:33:19.087 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 19:33:19.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 19:33:19.090 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 19:33:19.181 +05:30 [Debug] Connection id ""0HLA2VB0P2SVF"" started. +2017-12-14 19:33:19.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 19:33:19.778 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 19:33:19.778 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 19:33:20.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 19:33:20.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 19:33:20.778 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 19:33:23.867 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:33:23.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:33:23.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:33:23.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:33:24.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:33:24.560 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:24.561 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:24.561 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:24.562 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:24.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5512.6279ms +2017-12-14 19:33:24.573 +05:30 [Information] Request finished in 5525.3948ms 200 application/json; charset=utf-8 +2017-12-14 19:33:24.573 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" completed keep alive response. +2017-12-14 19:33:24.579 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:33:24.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 19:33:24.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 19:33:24.640 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:24.641 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:24.641 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:24.642 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:24.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5552.3595ms +2017-12-14 19:33:24.649 +05:30 [Information] Request finished in 5597.0392ms 200 application/json; charset=utf-8 +2017-12-14 19:33:24.650 +05:30 [Debug] Connection id ""0HLA2VB0P2SVC"" completed keep alive response. +2017-12-14 19:33:24.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:33:25.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:25.144 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:25.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:25.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:25.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6062.1847ms +2017-12-14 19:33:25.150 +05:30 [Information] Request finished in 6098.4889ms 200 application/json; charset=utf-8 +2017-12-14 19:33:25.151 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" completed keep alive response. +2017-12-14 19:33:25.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:25.158 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:25.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:25.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:25.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5381.838ms +2017-12-14 19:33:25.168 +05:30 [Information] Request finished in 5390.6934ms 200 application/json; charset=utf-8 +2017-12-14 19:33:25.168 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" completed keep alive response. +2017-12-14 19:33:25.925 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:25.925 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:25.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:25.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:25.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5149.0942ms +2017-12-14 19:33:25.931 +05:30 [Information] Request finished in 5154.2467ms 200 application/json; charset=utf-8 +2017-12-14 19:33:25.931 +05:30 [Debug] Connection id ""0HLA2VB0P2SVF"" completed keep alive response. +2017-12-14 19:33:27.633 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:33:27.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:27.869 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:27.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:27.871 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:27.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3286.4532ms +2017-12-14 19:33:27.879 +05:30 [Information] Request finished in 3300.3752ms 200 application/json; charset=utf-8 +2017-12-14 19:33:27.879 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" completed keep alive response. +2017-12-14 19:33:27.905 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:33:27.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:33:27.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:33:27.921 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 19:33:27.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 19:33:27.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 19:33:27.922 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 19:33:27.923 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 19:33:27.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 19:33:27.931 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 19:33:27.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 19:33:27.932 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 19:33:30.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:33:30.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:30.561 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:30.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:30.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:30.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2655.9285ms +2017-12-14 19:33:30.642 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:33:30.642 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:33:30.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:33:30.659 +05:30 [Information] Request finished in 2735.9803ms 200 application/json; charset=utf-8 +2017-12-14 19:33:30.660 +05:30 [Debug] Connection id ""0HLA2VB0P2SVC"" completed keep alive response. +2017-12-14 19:33:30.988 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:33:31.061 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:33:31.061 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 19:33:36.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:36.125 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:36.126 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:36.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:36.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 8194.3819ms +2017-12-14 19:33:36.133 +05:30 [Information] Request finished in 8214.2929ms 200 application/json; charset=utf-8 +2017-12-14 19:33:36.133 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" completed keep alive response. +2017-12-14 19:33:36.597 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:33:40.987 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:33:41.005 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:33:42.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:42.033 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:42.033 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:42.735 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:43.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 12666.7528ms +2017-12-14 19:33:44.111 +05:30 [Information] Request finished in 13500.462ms 200 application/json; charset=utf-8 +2017-12-14 19:33:44.144 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" completed keep alive response. +2017-12-14 19:33:44.753 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:33:44.756 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:33:44.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:33:44.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:33:44.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 16832.2866ms +2017-12-14 19:33:47.723 +05:30 [Information] Request finished in 19094.3342ms 200 application/json; charset=utf-8 +2017-12-14 19:33:47.724 +05:30 [Debug] Connection id ""0HLA2VB0P2SVF"" completed keep alive response. +2017-12-14 19:33:47.901 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:33:47.960 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:34:26.192 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:34:26.193 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:34:26.193 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:34:26.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:34:26.195 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 58271.6088ms +2017-12-14 19:34:26.198 +05:30 [Information] Request finished in 58281.9716ms 200 application/json; charset=utf-8 +2017-12-14 19:34:26.198 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" completed keep alive response. +2017-12-14 19:34:35.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:34:35.165 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:34:35.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:34:35.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:34:35.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 76088.1554ms +2017-12-14 19:34:35.174 +05:30 [Information] Request finished in 76122.406ms 200 application/json; charset=utf-8 +2017-12-14 19:34:35.174 +05:30 [Debug] Connection id ""0HLA2VB0P2SVE"" completed keep alive response. +2017-12-14 19:35:50.235 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" received FIN. +2017-12-14 19:35:50.235 +05:30 [Debug] Connection id ""0HLA2VB0P2SVC"" received FIN. +2017-12-14 19:35:50.235 +05:30 [Debug] Connection id ""0HLA2VB0P2SVF"" received FIN. +2017-12-14 19:35:50.235 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" received FIN. +2017-12-14 19:35:50.235 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" received FIN. +2017-12-14 19:35:50.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVC"" disconnecting. +2017-12-14 19:35:50.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVE"" received FIN. +2017-12-14 19:35:50.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVC"" sending FIN. +2017-12-14 19:35:50.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVF"" disconnecting. +2017-12-14 19:35:50.237 +05:30 [Debug] Connection id ""0HLA2VB0P2SVC"" sent FIN with status "0". +2017-12-14 19:35:50.237 +05:30 [Debug] Connection id ""0HLA2VB0P2SVF"" sending FIN. +2017-12-14 19:35:50.237 +05:30 [Debug] Connection id ""0HLA2VB0P2SVC"" stopped. +2017-12-14 19:35:50.239 +05:30 [Debug] Connection id ""0HLA2VB0P2SVF"" sent FIN with status "0". +2017-12-14 19:35:50.239 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" disconnecting. +2017-12-14 19:35:50.239 +05:30 [Debug] Connection id ""0HLA2VB0P2SVF"" stopped. +2017-12-14 19:35:50.239 +05:30 [Debug] Connection id ""0HLA2VB0P2SVE"" disconnecting. +2017-12-14 19:35:50.240 +05:30 [Debug] Connection id ""0HLA2VB0P2SVE"" sending FIN. +2017-12-14 19:35:50.239 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" sending FIN. +2017-12-14 19:35:50.240 +05:30 [Debug] Connection id ""0HLA2VB0P2SVE"" sent FIN with status "0". +2017-12-14 19:35:50.240 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" sent FIN with status "0". +2017-12-14 19:35:50.237 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" disconnecting. +2017-12-14 19:35:50.241 +05:30 [Debug] Connection id ""0HLA2VB0P2SVE"" stopped. +2017-12-14 19:35:50.241 +05:30 [Debug] Connection id ""0HLA2VB0P2SVB"" stopped. +2017-12-14 19:35:50.241 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" sending FIN. +2017-12-14 19:35:50.235 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" disconnecting. +2017-12-14 19:35:50.242 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" sent FIN with status "0". +2017-12-14 19:35:50.242 +05:30 [Debug] Connection id ""0HLA2VB0P2SVA"" stopped. +2017-12-14 19:35:50.242 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" sending FIN. +2017-12-14 19:35:50.242 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" sent FIN with status "0". +2017-12-14 19:35:50.243 +05:30 [Debug] Connection id ""0HLA2VB0P2SVD"" stopped. +2017-12-14 19:38:43.185 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" started. +2017-12-14 19:38:43.186 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:38:43.187 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:38:43.187 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:38:46.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:38:48.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:38:48.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:38:48.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:38:48.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5238.2928ms +2017-12-14 19:38:48.433 +05:30 [Information] Request finished in 5245.3713ms 200 application/json; charset=utf-8 +2017-12-14 19:38:48.434 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" completed keep alive response. +2017-12-14 19:38:48.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 19:38:48.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 19:38:48.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 19:38:51.487 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 19:38:53.266 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:38:53.267 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:38:53.268 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:38:53.269 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4823.087ms +2017-12-14 19:38:53.271 +05:30 [Information] Request finished in 4829.147ms 200 application/json; charset=utf-8 +2017-12-14 19:38:53.271 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" completed keep alive response. +2017-12-14 19:38:54.315 +05:30 [Debug] Connection id ""0HLA2VB0P2SVH"" started. +2017-12-14 19:38:54.316 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 19:38:54.316 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 19:38:54.316 +05:30 [Debug] Connection id ""0HLA2VB0P2SVI"" started. +2017-12-14 19:38:54.320 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 19:38:54.342 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 19:38:54.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 19:38:54.344 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 19:38:54.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 19:38:54.348 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 19:38:54.353 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 19:38:54.359 +05:30 [Debug] Connection id ""0HLA2VB0P2SVJ"" started. +2017-12-14 19:38:54.391 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 19:38:54.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 19:38:54.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 19:38:54.432 +05:30 [Debug] Connection id ""0HLA2VB0P2SVK"" started. +2017-12-14 19:38:54.436 +05:30 [Debug] Connection id ""0HLA2VB0P2SVL"" started. +2017-12-14 19:38:54.438 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 19:38:54.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 19:38:54.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 19:38:55.446 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 19:38:55.446 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 19:38:55.447 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 19:38:58.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:38:58.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:38:58.658 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:38:58.659 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:38:58.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:38:59.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:39:00.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:00.828 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:00.828 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:00.831 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:00.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6437.7911ms +2017-12-14 19:39:00.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:00.847 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:00.847 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:00.847 +05:30 [Information] Request finished in 6479.8269ms 200 application/json; charset=utf-8 +2017-12-14 19:39:00.848 +05:30 [Debug] Connection id ""0HLA2VB0P2SVJ"" completed keep alive response. +2017-12-14 19:39:00.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:00.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6506.5838ms +2017-12-14 19:39:01.001 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:39:01.002 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 19:39:01.002 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 19:39:01.037 +05:30 [Information] Request finished in 6667.8883ms 200 application/json; charset=utf-8 +2017-12-14 19:39:01.037 +05:30 [Debug] Connection id ""0HLA2VB0P2SVI"" completed keep alive response. +2017-12-14 19:39:01.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:01.477 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:01.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:01.480 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:01.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7041.6911ms +2017-12-14 19:39:01.486 +05:30 [Information] Request finished in 7048.9799ms 200 application/json; charset=utf-8 +2017-12-14 19:39:01.486 +05:30 [Debug] Connection id ""0HLA2VB0P2SVK"" completed keep alive response. +2017-12-14 19:39:01.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:01.580 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:01.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:01.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:01.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7250.2454ms +2017-12-14 19:39:01.614 +05:30 [Information] Request finished in 7295.6721ms 200 application/json; charset=utf-8 +2017-12-14 19:39:01.614 +05:30 [Debug] Connection id ""0HLA2VB0P2SVH"" completed keep alive response. +2017-12-14 19:39:02.213 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:02.213 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:02.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:02.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:02.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6768.4579ms +2017-12-14 19:39:02.221 +05:30 [Information] Request finished in 6780.1975ms 200 application/json; charset=utf-8 +2017-12-14 19:39:02.222 +05:30 [Debug] Connection id ""0HLA2VB0P2SVL"" completed keep alive response. +2017-12-14 19:39:04.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:39:04.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:04.305 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:04.306 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:04.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:04.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3308.3787ms +2017-12-14 19:39:04.315 +05:30 [Information] Request finished in 3428.3097ms 200 application/json; charset=utf-8 +2017-12-14 19:39:04.316 +05:30 [Debug] Connection id ""0HLA2VB0P2SVJ"" completed keep alive response. +2017-12-14 19:39:04.356 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:39:04.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:39:04.357 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:39:04.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 19:39:04.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 19:39:04.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 19:39:04.383 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 19:39:04.383 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 19:39:04.383 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 19:39:04.405 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 19:39:04.405 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 19:39:04.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 19:39:06.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:39:07.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:39:10.094 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 19:39:10.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:10.887 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:10.887 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:10.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:39:11.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:11.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 7508.0288ms +2017-12-14 19:39:11.939 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:39:11.993 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:39:12.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:39:12.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:39:12.041 +05:30 [Information] Request finished in 7627.0928ms 200 application/json; charset=utf-8 +2017-12-14 19:39:12.056 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:39:12.056 +05:30 [Debug] Connection id ""0HLA2VB0P2SVI"" completed keep alive response. +2017-12-14 19:39:12.655 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:12.656 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:12.656 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:12.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:12.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 8252.1298ms +2017-12-14 19:39:12.689 +05:30 [Information] Request finished in 8320.8656ms 200 application/json; charset=utf-8 +2017-12-14 19:39:12.689 +05:30 [Debug] Connection id ""0HLA2VB0P2SVH"" completed keep alive response. +2017-12-14 19:39:12.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:12.734 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:12.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:12.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:12.786 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 8355.3134ms +2017-12-14 19:39:12.790 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:39:12.792 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:39:12.795 +05:30 [Information] Request finished in 8443.6894ms 200 application/json; charset=utf-8 +2017-12-14 19:39:12.796 +05:30 [Debug] Connection id ""0HLA2VB0P2SVK"" completed keep alive response. +2017-12-14 19:39:18.501 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:39:26.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:39:26.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:39:26.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:39:27.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:39:28.597 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 15955.9924ms +2017-12-14 19:39:28.649 +05:30 [Information] Request finished in 16748.7468ms 200 application/json; charset=utf-8 +2017-12-14 19:39:28.664 +05:30 [Debug] Connection id ""0HLA2VB0P2SVJ"" completed keep alive response. +2017-12-14 19:40:08.941 +05:30 [Fatal] could not execute query +[ select scheduledm0_.id as id29_, scheduledm0_.shareMessage as shareMes2_29_, scheduledm0_.clientTime as clientTime29_, scheduledm0_.scheduleTime as schedule4_29_, scheduledm0_.localscheduletime as localsch5_29_, scheduledm0_.createTime as createTime29_, scheduledm0_.userId as userId29_, scheduledm0_.profileId as profileId29_, scheduledm0_.profileType as profileT9_29_, scheduledm0_.picUrl as picUrl29_, scheduledm0_.status as status29_, scheduledm0_.socialprofileName as socialp12_29_, scheduledm0_.url as url29_, scheduledm0_.link as link29_, scheduledm0_.calendertime as calende15_29_, scheduledm0_.mediaType as mediaType29_ from ScheduledMessage scheduledm0_ where scheduledm0_.id=? and scheduledm0_.userId=? ] + Name:p1 - Value:20036 Name:p2 - Value:48 +[SQL: select scheduledm0_.id as id29_, scheduledm0_.shareMessage as shareMes2_29_, scheduledm0_.clientTime as clientTime29_, scheduledm0_.scheduleTime as schedule4_29_, scheduledm0_.localscheduletime as localsch5_29_, scheduledm0_.createTime as createTime29_, scheduledm0_.userId as userId29_, scheduledm0_.profileId as profileId29_, scheduledm0_.profileType as profileT9_29_, scheduledm0_.picUrl as picUrl29_, scheduledm0_.status as status29_, scheduledm0_.socialprofileName as socialp12_29_, scheduledm0_.url as url29_, scheduledm0_.link as link29_, scheduledm0_.calendertime as calende15_29_, scheduledm0_.mediaType as mediaType29_ from ScheduledMessage scheduledm0_ where scheduledm0_.id=? and scheduledm0_.userId=?] +2017-12-14 19:40:08.943 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:40:52.773 +05:30 [Fatal] could not execute query +[ select scheduledm0_.id as id29_, scheduledm0_.shareMessage as shareMes2_29_, scheduledm0_.clientTime as clientTime29_, scheduledm0_.scheduleTime as schedule4_29_, scheduledm0_.localscheduletime as localsch5_29_, scheduledm0_.createTime as createTime29_, scheduledm0_.userId as userId29_, scheduledm0_.profileId as profileId29_, scheduledm0_.profileType as profileT9_29_, scheduledm0_.picUrl as picUrl29_, scheduledm0_.status as status29_, scheduledm0_.socialprofileName as socialp12_29_, scheduledm0_.url as url29_, scheduledm0_.link as link29_, scheduledm0_.calendertime as calende15_29_, scheduledm0_.mediaType as mediaType29_ from ScheduledMessage scheduledm0_ where scheduledm0_.id=? and scheduledm0_.userId=? ] + Name:p1 - Value:20035 Name:p2 - Value:48 +[SQL: select scheduledm0_.id as id29_, scheduledm0_.shareMessage as shareMes2_29_, scheduledm0_.clientTime as clientTime29_, scheduledm0_.scheduleTime as schedule4_29_, scheduledm0_.localscheduletime as localsch5_29_, scheduledm0_.createTime as createTime29_, scheduledm0_.userId as userId29_, scheduledm0_.profileId as profileId29_, scheduledm0_.profileType as profileT9_29_, scheduledm0_.picUrl as picUrl29_, scheduledm0_.status as status29_, scheduledm0_.socialprofileName as socialp12_29_, scheduledm0_.url as url29_, scheduledm0_.link as link29_, scheduledm0_.calendertime as calende15_29_, scheduledm0_.mediaType as mediaType29_ from ScheduledMessage scheduledm0_ where scheduledm0_.id=? and scheduledm0_.userId=?] +2017-12-14 19:40:53.465 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:40:54.332 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" received FIN. +2017-12-14 19:41:25.779 +05:30 [Debug] Connection id ""0HLA2VB0P2SVL"" received FIN. +2017-12-14 19:41:25.780 +05:30 [Debug] Connection id ""0HLA2VB0P2SVH"" received FIN. +2017-12-14 19:41:25.780 +05:30 [Debug] Connection id ""0HLA2VB0P2SVJ"" received FIN. +2017-12-14 19:41:25.779 +05:30 [Debug] Connection id ""0HLA2VB0P2SVI"" received FIN. +2017-12-14 19:41:26.491 +05:30 [Debug] Connection id ""0HLA2VB0P2SVK"" received FIN. +2017-12-14 19:41:26.488 +05:30 [Debug] Connection id ""0HLA2VB0P2SVH"" disconnecting. +2017-12-14 19:41:26.506 +05:30 [Debug] Connection id ""0HLA2VB0P2SVH"" sending FIN. +2017-12-14 19:41:26.506 +05:30 [Debug] Connection id ""0HLA2VB0P2SVJ"" disconnecting. +2017-12-14 19:41:26.506 +05:30 [Debug] Connection id ""0HLA2VB0P2SVH"" sent FIN with status "0". +2017-12-14 19:41:26.506 +05:30 [Debug] Connection id ""0HLA2VB0P2SVI"" disconnecting. +2017-12-14 19:41:26.506 +05:30 [Debug] Connection id ""0HLA2VB0P2SVH"" stopped. +2017-12-14 19:41:26.506 +05:30 [Debug] Connection id ""0HLA2VB0P2SVI"" sending FIN. +2017-12-14 19:41:26.507 +05:30 [Debug] Connection id ""0HLA2VB0P2SVJ"" sending FIN. +2017-12-14 19:41:26.507 +05:30 [Debug] Connection id ""0HLA2VB0P2SVI"" sent FIN with status "0". +2017-12-14 19:41:26.507 +05:30 [Debug] Connection id ""0HLA2VB0P2SVJ"" sent FIN with status "0". +2017-12-14 19:41:26.507 +05:30 [Debug] Connection id ""0HLA2VB0P2SVI"" stopped. +2017-12-14 19:41:26.507 +05:30 [Debug] Connection id ""0HLA2VB0P2SVJ"" stopped. +2017-12-14 19:41:26.507 +05:30 [Debug] Connection id ""0HLA2VB0P2SVK"" disconnecting. +2017-12-14 19:41:26.508 +05:30 [Debug] Connection id ""0HLA2VB0P2SVK"" sending FIN. +2017-12-14 19:41:26.508 +05:30 [Debug] Connection id ""0HLA2VB0P2SVK"" sent FIN with status "0". +2017-12-14 19:41:26.509 +05:30 [Debug] Connection id ""0HLA2VB0P2SVK"" stopped. +2017-12-14 19:41:41.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:41:41.578 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:41:41.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:41:41.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:41:41.589 +05:30 [Information] Connection id ""0HLA2VB0P2SVL"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:41.594 +05:30 [Information] Connection id ""0HLA2VB0P2SVL"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:41.600 +05:30 [Debug] Connection id ""0HLA2VB0P2SVL"" disconnecting. +2017-12-14 19:41:41.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 157235.6588ms +2017-12-14 19:41:41.609 +05:30 [Debug] Connection id ""0HLA2VB0P2SVL"" stopped. +2017-12-14 19:41:41.618 +05:30 [Information] Request finished in 157269.521ms 200 application/json; charset=utf-8 +2017-12-14 19:41:44.090 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:41:44.090 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:41:44.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:41:44.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:41:44.092 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" disconnecting. +2017-12-14 19:41:44.092 +05:30 [Information] Connection id ""0HLA2VB0P2SVG"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.114 +05:30 [Information] Connection id ""0HLA2VB0P2SVG"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.117 +05:30 [Information] Connection id ""0HLA2VB0P2SVG"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.118 +05:30 [Information] Connection id ""0HLA2VB0P2SVG"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.119 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" stopped. +2017-12-14 19:41:44.139 +05:30 [Information] Connection id ""0HLA2VB0P2SVG"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.140 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.140 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.140 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.140 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.141 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.141 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.141 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.141 +05:30 [Debug] Connection id ""0HLA2VB0P2SVG"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-14 19:41:44.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 169799.4485ms +2017-12-14 19:41:44.144 +05:30 [Information] Request finished in 169830.2417ms 200 application/json; charset=utf-8 +2017-12-14 19:47:16.986 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" started. +2017-12-14 19:47:16.987 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:47:16.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:47:16.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:47:19.079 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:47:21.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:21.287 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:21.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:21.289 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4301.0454ms +2017-12-14 19:47:21.293 +05:30 [Information] Request finished in 4304.3477ms 200 application/json; charset=utf-8 +2017-12-14 19:47:21.294 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" completed keep alive response. +2017-12-14 19:47:21.301 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 19:47:21.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 19:47:21.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 19:47:23.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 19:47:25.192 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:25.192 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:25.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:25.194 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3891.6822ms +2017-12-14 19:47:25.197 +05:30 [Information] Request finished in 3896.8365ms 200 application/json; charset=utf-8 +2017-12-14 19:47:25.198 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" completed keep alive response. +2017-12-14 19:47:26.384 +05:30 [Debug] Connection id ""0HLA2VB0P2SVN"" started. +2017-12-14 19:47:26.384 +05:30 [Debug] Connection id ""0HLA2VB0P2SVP"" started. +2017-12-14 19:47:26.384 +05:30 [Debug] Connection id ""0HLA2VB0P2SVO"" started. +2017-12-14 19:47:26.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 19:47:26.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 19:47:26.388 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 19:47:26.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 19:47:26.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 19:47:26.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 19:47:26.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 19:47:26.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 19:47:26.407 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 19:47:26.412 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 19:47:26.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 19:47:26.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 19:47:26.654 +05:30 [Debug] Connection id ""0HLA2VB0P2SVQ"" started. +2017-12-14 19:47:26.654 +05:30 [Debug] Connection id ""0HLA2VB0P2SVR"" started. +2017-12-14 19:47:26.655 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 19:47:26.657 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 19:47:26.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 19:47:26.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 19:47:26.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 19:47:26.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 19:47:28.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:47:28.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:47:29.121 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:29.121 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:29.121 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:29.122 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:29.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2716.1554ms +2017-12-14 19:47:29.128 +05:30 [Information] Request finished in 2723.0952ms 200 application/json; charset=utf-8 +2017-12-14 19:47:29.128 +05:30 [Debug] Connection id ""0HLA2VB0P2SVN"" completed keep alive response. +2017-12-14 19:47:29.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:47:29.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 19:47:29.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 19:47:29.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:47:29.469 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:47:29.731 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:47:29.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:47:30.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:30.688 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:30.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:30.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:30.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4275.5907ms +2017-12-14 19:47:30.694 +05:30 [Information] Request finished in 4286.6495ms 200 application/json; charset=utf-8 +2017-12-14 19:47:30.695 +05:30 [Debug] Connection id ""0HLA2VB0P2SVO"" completed keep alive response. +2017-12-14 19:47:31.696 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:31.697 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:31.697 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:31.698 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:31.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5309.0486ms +2017-12-14 19:47:31.703 +05:30 [Information] Request finished in 5324.5579ms 200 application/json; charset=utf-8 +2017-12-14 19:47:31.704 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" completed keep alive response. +2017-12-14 19:47:32.184 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:47:32.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:32.324 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:32.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:32.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:32.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5668.4073ms +2017-12-14 19:47:32.329 +05:30 [Information] Request finished in 5674.0534ms 200 application/json; charset=utf-8 +2017-12-14 19:47:32.329 +05:30 [Debug] Connection id ""0HLA2VB0P2SVQ"" completed keep alive response. +2017-12-14 19:47:32.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:32.446 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:32.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:32.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:32.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3313.7865ms +2017-12-14 19:47:32.450 +05:30 [Information] Request finished in 3318.6615ms 200 application/json; charset=utf-8 +2017-12-14 19:47:32.451 +05:30 [Debug] Connection id ""0HLA2VB0P2SVN"" completed keep alive response. +2017-12-14 19:47:32.474 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:47:32.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:47:32.476 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 19:47:32.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:47:32.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 19:47:32.477 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 19:47:32.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 19:47:32.479 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 19:47:32.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 19:47:32.480 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 19:47:32.483 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 19:47:32.484 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 19:47:32.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:32.549 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:32.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:32.550 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:32.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5892.3776ms +2017-12-14 19:47:32.553 +05:30 [Information] Request finished in 5897.7935ms 200 application/json; charset=utf-8 +2017-12-14 19:47:32.553 +05:30 [Debug] Connection id ""0HLA2VB0P2SVR"" completed keep alive response. +2017-12-14 19:47:34.580 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:47:37.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 19:47:37.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:47:39.369 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:39.370 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:39.370 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:39.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:39.398 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:47:39.423 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:47:39.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:47:39.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:47:39.424 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6925.216ms +2017-12-14 19:47:39.428 +05:30 [Information] Request finished in 6954.0567ms 200 application/json; charset=utf-8 +2017-12-14 19:47:39.429 +05:30 [Debug] Connection id ""0HLA2VB0P2SVO"" completed keep alive response. +2017-12-14 19:47:40.265 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:40.265 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:40.265 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:40.266 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:40.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 7796.1248ms +2017-12-14 19:47:40.282 +05:30 [Information] Request finished in 7806.3283ms 200 application/json; charset=utf-8 +2017-12-14 19:47:40.282 +05:30 [Debug] Connection id ""0HLA2VB0P2SVQ"" completed keep alive response. +2017-12-14 19:47:41.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:41.088 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:41.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:41.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:41.090 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 8609.7793ms +2017-12-14 19:47:41.093 +05:30 [Information] Request finished in 8617.022ms 200 application/json; charset=utf-8 +2017-12-14 19:47:41.093 +05:30 [Debug] Connection id ""0HLA2VB0P2SVN"" completed keep alive response. +2017-12-14 19:47:41.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:41.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:41.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:41.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:41.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 8648.2176ms +2017-12-14 19:47:41.136 +05:30 [Information] Request finished in 8661.8015ms 200 application/json; charset=utf-8 +2017-12-14 19:47:41.137 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" completed keep alive response. +2017-12-14 19:47:41.999 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:47:42.000 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:47:42.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:47:42.609 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:47:42.610 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:47:42.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:42.865 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:42.866 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:42.870 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:42.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3446.9189ms +2017-12-14 19:47:42.883 +05:30 [Information] Request finished in 3478.1717ms 200 application/json; charset=utf-8 +2017-12-14 19:47:42.885 +05:30 [Debug] Connection id ""0HLA2VB0P2SVR"" completed keep alive response. +2017-12-14 19:47:53.528 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:47:53.529 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:47:53.529 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:47:53.530 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:47:53.534 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27141.2124ms +2017-12-14 19:47:53.544 +05:30 [Information] Request finished in 27156.6977ms 200 application/json; charset=utf-8 +2017-12-14 19:47:53.544 +05:30 [Debug] Connection id ""0HLA2VB0P2SVP"" completed keep alive response. +2017-12-14 19:48:40.235 +05:30 [Debug] Connection id ""0HLA2VB0P2SVO"" received FIN. +2017-12-14 19:48:40.235 +05:30 [Debug] Connection id ""0HLA2VB0P2SVO"" disconnecting. +2017-12-14 19:48:40.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVO"" sending FIN. +2017-12-14 19:48:40.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVO"" sent FIN with status "0". +2017-12-14 19:48:40.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVO"" stopped. +2017-12-14 19:50:30.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVN"" received FIN. +2017-12-14 19:50:30.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVQ"" received FIN. +2017-12-14 19:50:30.237 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" received FIN. +2017-12-14 19:50:30.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVN"" disconnecting. +2017-12-14 19:50:30.237 +05:30 [Debug] Connection id ""0HLA2VB0P2SVQ"" disconnecting. +2017-12-14 19:50:30.236 +05:30 [Debug] Connection id ""0HLA2VB0P2SVR"" received FIN. +2017-12-14 19:50:30.238 +05:30 [Debug] Connection id ""0HLA2VB0P2SVN"" sending FIN. +2017-12-14 19:50:30.237 +05:30 [Debug] Connection id ""0HLA2VB0P2SVP"" received FIN. +2017-12-14 19:50:30.238 +05:30 [Debug] Connection id ""0HLA2VB0P2SVN"" sent FIN with status "0". +2017-12-14 19:50:30.239 +05:30 [Debug] Connection id ""0HLA2VB0P2SVN"" stopped. +2017-12-14 19:50:30.238 +05:30 [Debug] Connection id ""0HLA2VB0P2SVQ"" sending FIN. +2017-12-14 19:50:30.237 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" disconnecting. +2017-12-14 19:50:30.240 +05:30 [Debug] Connection id ""0HLA2VB0P2SVQ"" sent FIN with status "0". +2017-12-14 19:50:30.239 +05:30 [Debug] Connection id ""0HLA2VB0P2SVR"" disconnecting. +2017-12-14 19:50:30.240 +05:30 [Debug] Connection id ""0HLA2VB0P2SVQ"" stopped. +2017-12-14 19:50:30.240 +05:30 [Debug] Connection id ""0HLA2VB0P2SVR"" sending FIN. +2017-12-14 19:50:30.241 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" sending FIN. +2017-12-14 19:50:30.241 +05:30 [Debug] Connection id ""0HLA2VB0P2SVR"" sent FIN with status "0". +2017-12-14 19:50:30.241 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" sent FIN with status "0". +2017-12-14 19:50:30.241 +05:30 [Debug] Connection id ""0HLA2VB0P2SVR"" stopped. +2017-12-14 19:50:30.241 +05:30 [Debug] Connection id ""0HLA2VB0P2SVM"" stopped. +2017-12-14 19:50:30.239 +05:30 [Debug] Connection id ""0HLA2VB0P2SVP"" disconnecting. +2017-12-14 19:50:30.242 +05:30 [Debug] Connection id ""0HLA2VB0P2SVP"" sending FIN. +2017-12-14 19:50:30.242 +05:30 [Debug] Connection id ""0HLA2VB0P2SVP"" sent FIN with status "0". +2017-12-14 19:50:30.243 +05:30 [Debug] Connection id ""0HLA2VB0P2SVP"" stopped. +2017-12-14 19:51:58.000 +05:30 [Debug] Connection id ""0HLA2VB0P2SVS"" started. +2017-12-14 19:51:58.002 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-14 19:51:58.002 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-14 19:51:58.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-14 19:52:01.035 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-14 19:52:01.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:01.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:01.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:01.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3600.1856ms +2017-12-14 19:52:01.607 +05:30 [Information] Request finished in 3604.0623ms 200 application/json; charset=utf-8 +2017-12-14 19:52:01.607 +05:30 [Debug] Connection id ""0HLA2VB0P2SVS"" completed keep alive response. +2017-12-14 19:52:01.612 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-14 19:52:01.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-14 19:52:01.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-14 19:52:04.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-14 19:52:06.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:06.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:06.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:06.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4683.3338ms +2017-12-14 19:52:06.301 +05:30 [Information] Request finished in 4688.1289ms 200 application/json; charset=utf-8 +2017-12-14 19:52:06.302 +05:30 [Debug] Connection id ""0HLA2VB0P2SVS"" completed keep alive response. +2017-12-14 19:52:10.477 +05:30 [Debug] Connection id ""0HLA2VB0P2SVT"" started. +2017-12-14 19:52:10.478 +05:30 [Debug] Connection id ""0HLA2VB0P2SVU"" started. +2017-12-14 19:52:10.478 +05:30 [Debug] Connection id ""0HLA2VB0P2SVV"" started. +2017-12-14 19:52:10.481 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-14 19:52:10.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-14 19:52:10.483 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-14 19:52:10.541 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-14 19:52:10.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-14 19:52:10.542 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-14 19:52:10.670 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-14 19:52:10.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-14 19:52:10.671 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-14 19:52:10.713 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-14 19:52:10.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-14 19:52:10.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-14 19:52:10.874 +05:30 [Debug] Connection id ""0HLA2VB0P2T00"" started. +2017-12-14 19:52:10.874 +05:30 [Debug] Connection id ""0HLA2VB0P2T01"" started. +2017-12-14 19:52:12.635 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-14 19:52:12.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-14 19:52:12.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-14 19:52:13.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-14 19:52:13.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-14 19:52:13.638 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-14 19:52:16.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:52:16.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:52:16.813 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:52:16.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:52:17.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:17.349 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:17.349 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:17.350 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:17.351 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6679.9059ms +2017-12-14 19:52:17.353 +05:30 [Information] Request finished in 6872.7773ms 200 application/json; charset=utf-8 +2017-12-14 19:52:17.353 +05:30 [Debug] Connection id ""0HLA2VB0P2SVT"" completed keep alive response. +2017-12-14 19:52:17.358 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:52:17.359 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-14 19:52:17.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-14 19:52:17.494 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:17.495 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:17.495 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:17.497 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:17.499 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6662.2121ms +2017-12-14 19:52:17.501 +05:30 [Information] Request finished in 7021.3743ms 200 application/json; charset=utf-8 +2017-12-14 19:52:17.502 +05:30 [Debug] Connection id ""0HLA2VB0P2SVU"" completed keep alive response. +2017-12-14 19:52:17.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:52:17.701 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:52:17.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:17.866 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:17.867 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:17.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:17.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7381.9603ms +2017-12-14 19:52:17.872 +05:30 [Information] Request finished in 7402.8911ms 200 application/json; charset=utf-8 +2017-12-14 19:52:17.872 +05:30 [Debug] Connection id ""0HLA2VB0P2SVS"" completed keep alive response. +2017-12-14 19:52:18.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:18.713 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:18.713 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:18.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:18.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5076.6714ms +2017-12-14 19:52:18.721 +05:30 [Information] Request finished in 5084.2771ms 200 application/json; charset=utf-8 +2017-12-14 19:52:18.722 +05:30 [Debug] Connection id ""0HLA2VB0P2T01"" completed keep alive response. +2017-12-14 19:52:18.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:18.951 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:18.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:18.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:18.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6315.7001ms +2017-12-14 19:52:18.958 +05:30 [Information] Request finished in 6322.6726ms 200 application/json; charset=utf-8 +2017-12-14 19:52:18.959 +05:30 [Debug] Connection id ""0HLA2VB0P2T00"" completed keep alive response. +2017-12-14 19:52:19.473 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:52:19.722 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:19.723 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:19.724 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:19.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:19.726 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 2365.9838ms +2017-12-14 19:52:19.728 +05:30 [Information] Request finished in 2369.6649ms 200 application/json; charset=utf-8 +2017-12-14 19:52:19.728 +05:30 [Debug] Connection id ""0HLA2VB0P2SVT"" completed keep alive response. +2017-12-14 19:52:19.763 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:52:19.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:52:19.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:52:19.765 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-14 19:52:19.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-14 19:52:19.768 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-14 19:52:19.771 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-14 19:52:19.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-14 19:52:19.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-14 19:52:19.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-14 19:52:19.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-14 19:52:19.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-14 19:52:19.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-14 19:52:19.792 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-14 19:52:19.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-14 19:52:22.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:52:22.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-14 19:52:22.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:52:22.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-14 19:52:24.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-14 19:52:24.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:24.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:24.979 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:24.979 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:24.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:24.979 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:25.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:25.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5237.6732ms +2017-12-14 19:52:25.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:25.016 +05:30 [Information] Request finished in 5257.2341ms 200 application/json; charset=utf-8 +2017-12-14 19:52:25.018 +05:30 [Debug] Connection id ""0HLA2VB0P2SVU"" completed keep alive response. +2017-12-14 19:52:25.017 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5236.757ms +2017-12-14 19:52:25.032 +05:30 [Information] Request finished in 5266.7584ms 200 application/json; charset=utf-8 +2017-12-14 19:52:25.033 +05:30 [Debug] Connection id ""0HLA2VB0P2SVT"" completed keep alive response. +2017-12-14 19:52:27.362 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:27.363 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:27.363 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:27.365 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:27.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 7596.1484ms +2017-12-14 19:52:27.369 +05:30 [Information] Request finished in 7607.6131ms 200 application/json; charset=utf-8 +2017-12-14 19:52:27.370 +05:30 [Debug] Connection id ""0HLA2VB0P2T01"" completed keep alive response. +2017-12-14 19:52:27.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:27.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:27.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:27.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:27.539 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 7734.2887ms +2017-12-14 19:52:27.547 +05:30 [Information] Request finished in 7784.8141ms 200 application/json; charset=utf-8 +2017-12-14 19:52:27.547 +05:30 [Debug] Connection id ""0HLA2VB0P2T00"" completed keep alive response. +2017-12-14 19:52:29.180 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:52:29.183 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:52:29.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:29.245 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:29.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:29.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:29.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 9487.9591ms +2017-12-14 19:52:29.274 +05:30 [Information] Request finished in 9511.8035ms 200 application/json; charset=utf-8 +2017-12-14 19:52:29.274 +05:30 [Debug] Connection id ""0HLA2VB0P2SVS"" completed keep alive response. +2017-12-14 19:52:29.823 +05:30 [Fatal] Sequence contains no elements +2017-12-14 19:52:29.824 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-14 19:52:40.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-14 19:52:40.394 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-14 19:52:40.394 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-14 19:52:40.404 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-14 19:52:40.421 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 29862.4067ms +2017-12-14 19:52:40.441 +05:30 [Information] Request finished in 29953.9475ms 200 application/json; charset=utf-8 +2017-12-14 19:52:40.442 +05:30 [Debug] Connection id ""0HLA2VB0P2SVV"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171215.txt b/src/Api.Socioboard/wwwroot/log/log-20171215.txt new file mode 100644 index 000000000..815c8d4a9 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171215.txt @@ -0,0 +1,4294 @@ +2017-12-15 12:31:40.624 +05:30 [Debug] Hosting starting +2017-12-15 12:31:40.982 +05:30 [Debug] Hosting started +2017-12-15 12:31:41.022 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" started. +2017-12-15 12:31:41.024 +05:30 [Debug] Connection id ""0HLA3H6ONNO1U"" started. +2017-12-15 12:31:41.233 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-15 12:31:41.241 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-15 12:31:41.336 +05:30 [Information] Request finished in 111.121ms 200 +2017-12-15 12:31:41.379 +05:30 [Debug] Connection id ""0HLA3H6ONNO1U"" completed keep alive response. +2017-12-15 12:31:43.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-15 12:31:43.258 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"319b8e2a-1665-402b-8bd4-dd7b95881769"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-15 12:31:43.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-15 12:31:43.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-15 12:31:43.659 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-15 12:31:43.715 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:31:43.721 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:31:43.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:31:43.876 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 12:31:43.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 12:31:43.880 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 12:31:44.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 649.2266ms +2017-12-15 12:31:44.198 +05:30 [Information] Request finished in 3012.6664ms 200 application/json; charset=utf-8 +2017-12-15 12:31:44.200 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" completed keep alive response. +2017-12-15 12:31:44.261 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-15 12:31:44.263 +05:30 [Debug] Request did not match any routes. +2017-12-15 12:31:44.283 +05:30 [Debug] The request path "" does not match the path filter +2017-12-15 12:31:44.285 +05:30 [Information] Request finished in 24.0067ms 404 +2017-12-15 12:31:44.285 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" completed keep alive response. +2017-12-15 12:31:47.593 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 12:31:55.489 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:31:55.532 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:31:55.533 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:31:55.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11653.9689ms +2017-12-15 12:31:55.538 +05:30 [Information] Request finished in 11660.8387ms 200 application/json; charset=utf-8 +2017-12-15 12:31:55.538 +05:30 [Debug] Connection id ""0HLA3H6ONNO1U"" completed keep alive response. +2017-12-15 12:32:07.799 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 12:32:07.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 12:32:07.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 12:32:10.943 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 12:32:11.547 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:32:11.547 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:32:11.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:32:11.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3731.4388ms +2017-12-15 12:32:11.550 +05:30 [Information] Request finished in 3752.0353ms 200 application/json; charset=utf-8 +2017-12-15 12:32:11.551 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" completed keep alive response. +2017-12-15 12:32:11.586 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 12:32:11.586 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 12:32:11.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 12:32:14.619 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 12:32:15.223 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:32:15.223 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:32:15.224 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:32:15.225 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3635.838ms +2017-12-15 12:32:15.228 +05:30 [Information] Request finished in 3642.2373ms 200 application/json; charset=utf-8 +2017-12-15 12:32:15.229 +05:30 [Debug] Connection id ""0HLA3H6ONNO1U"" completed keep alive response. +2017-12-15 12:32:15.283 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 12:32:15.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 12:32:15.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 12:32:18.318 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 12:32:18.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:32:18.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:32:18.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:32:18.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3636.0007ms +2017-12-15 12:32:18.927 +05:30 [Information] Request finished in 3642.9869ms 200 application/json; charset=utf-8 +2017-12-15 12:32:18.927 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" completed keep alive response. +2017-12-15 12:33:31.231 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" received FIN. +2017-12-15 12:33:31.231 +05:30 [Debug] Connection id ""0HLA3H6ONNO1U"" received FIN. +2017-12-15 12:33:31.236 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" disconnecting. +2017-12-15 12:33:31.236 +05:30 [Debug] Connection id ""0HLA3H6ONNO1U"" disconnecting. +2017-12-15 12:33:31.239 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" sending FIN. +2017-12-15 12:33:31.239 +05:30 [Debug] Connection id ""0HLA3H6ONNO1U"" sending FIN. +2017-12-15 12:33:31.255 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" sent FIN with status "0". +2017-12-15 12:33:31.255 +05:30 [Debug] Connection id ""0HLA3H6ONNO1U"" sent FIN with status "0". +2017-12-15 12:33:31.262 +05:30 [Debug] Connection id ""0HLA3H6ONNO1U"" stopped. +2017-12-15 12:33:31.262 +05:30 [Debug] Connection id ""0HLA3H6ONNO1T"" stopped. +2017-12-15 12:36:35.854 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" started. +2017-12-15 12:36:35.857 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 12:36:35.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 12:36:35.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 12:36:37.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 12:36:38.584 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:36:38.584 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:36:38.585 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:36:38.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2725.4429ms +2017-12-15 12:36:38.590 +05:30 [Information] Request finished in 2733.6324ms 200 application/json; charset=utf-8 +2017-12-15 12:36:38.591 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" completed keep alive response. +2017-12-15 12:36:41.206 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 12:36:41.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 12:36:41.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 12:36:44.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 12:36:44.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:36:44.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:36:44.856 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:36:44.857 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3648.2031ms +2017-12-15 12:36:44.858 +05:30 [Information] Request finished in 3652.5137ms 200 application/json; charset=utf-8 +2017-12-15 12:36:44.859 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" completed keep alive response. +2017-12-15 12:36:44.875 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 12:36:44.876 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 12:36:44.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 12:36:48.108 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 12:36:50.525 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:36:50.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:36:50.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:36:50.655 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5776.2498ms +2017-12-15 12:36:50.656 +05:30 [Information] Request finished in 5781.4987ms 200 application/json; charset=utf-8 +2017-12-15 12:36:50.657 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" completed keep alive response. +2017-12-15 12:36:50.967 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 12:36:50.968 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 12:36:50.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 12:36:54.009 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 12:36:54.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:36:54.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:36:54.615 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:36:54.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3646.1029ms +2017-12-15 12:36:54.621 +05:30 [Information] Request finished in 3655.973ms 200 application/json; charset=utf-8 +2017-12-15 12:36:54.621 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" completed keep alive response. +2017-12-15 12:36:54.672 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 12:36:54.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 12:36:54.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 12:36:57.741 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 12:36:59.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:36:59.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:36:59.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:36:59.843 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5164.2387ms +2017-12-15 12:36:59.844 +05:30 [Information] Request finished in 5172.1318ms 200 application/json; charset=utf-8 +2017-12-15 12:36:59.845 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" completed keep alive response. +2017-12-15 12:37:02.427 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 12:37:02.428 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 12:37:02.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 12:37:02.471 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" started. +2017-12-15 12:37:02.475 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 12:37:02.475 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 12:37:02.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 12:37:02.484 +05:30 [Debug] Connection id ""0HLA3H6ONNO21"" started. +2017-12-15 12:37:02.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 12:37:02.485 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 12:37:02.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 12:37:02.491 +05:30 [Debug] Connection id ""0HLA3H6ONNO22"" started. +2017-12-15 12:37:02.493 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 12:37:02.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 12:37:02.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 12:37:02.733 +05:30 [Debug] Connection id ""0HLA3H6ONNO24"" started. +2017-12-15 12:37:02.733 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" started. +2017-12-15 12:37:02.734 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 12:37:02.738 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 12:37:02.739 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 12:37:02.739 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 12:37:02.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 12:37:02.742 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 12:37:05.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:37:05.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:37:05.661 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:37:05.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:37:05.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:37:05.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:37:06.265 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:37:06.265 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:37:06.266 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:37:06.267 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:37:06.276 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3838.2851ms +2017-12-15 12:37:06.280 +05:30 [Information] Request finished in 3858.0431ms 200 application/json; charset=utf-8 +2017-12-15 12:37:06.281 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" completed keep alive response. +2017-12-15 12:37:06.285 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 12:37:06.286 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 12:37:06.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 12:37:07.820 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:37:07.820 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:37:07.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:37:07.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:37:07.835 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5350.1136ms +2017-12-15 12:37:07.851 +05:30 [Information] Request finished in 5360.2631ms 200 application/json; charset=utf-8 +2017-12-15 12:37:07.851 +05:30 [Debug] Connection id ""0HLA3H6ONNO22"" completed keep alive response. +2017-12-15 12:37:08.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:37:08.437 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:37:08.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:37:08.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:37:08.442 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5953.081ms +2017-12-15 12:37:08.445 +05:30 [Information] Request finished in 5959.6709ms 200 application/json; charset=utf-8 +2017-12-15 12:37:08.445 +05:30 [Debug] Connection id ""0HLA3H6ONNO21"" completed keep alive response. +2017-12-15 12:37:08.454 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:37:08.454 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:37:08.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:37:08.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:37:08.457 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5715.8707ms +2017-12-15 12:37:08.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:37:08.459 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:37:08.459 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:37:08.459 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:37:08.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5723.2867ms +2017-12-15 12:37:08.459 +05:30 [Information] Request finished in 5730.6806ms 200 application/json; charset=utf-8 +2017-12-15 12:37:08.459 +05:30 [Information] Request finished in 5732.9419ms 200 application/json; charset=utf-8 +2017-12-15 12:37:08.475 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" completed keep alive response. +2017-12-15 12:37:08.459 +05:30 [Debug] Connection id ""0HLA3H6ONNO24"" completed keep alive response. +2017-12-15 12:37:09.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:37:11.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:37:11.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:37:11.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:37:11.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:37:11.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5633.6361ms +2017-12-15 12:37:11.925 +05:30 [Information] Request finished in 5640.6668ms 200 application/json; charset=utf-8 +2017-12-15 12:37:11.926 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" completed keep alive response. +2017-12-15 12:37:15.889 +05:30 [Fatal] Sequence contains no elements +2017-12-15 12:37:16.011 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 12:37:16.577 +05:30 [Fatal] Sequence contains no elements +2017-12-15 12:37:16.577 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 12:37:22.079 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 12:37:22.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 12:37:22.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 12:37:25.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 12:37:27.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:37:27.230 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:37:27.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:37:27.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:37:27.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24779.1515ms +2017-12-15 12:37:27.260 +05:30 [Information] Request finished in 24786.9824ms 200 application/json; charset=utf-8 +2017-12-15 12:37:27.261 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" completed keep alive response. +2017-12-15 12:37:29.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:37:29.544 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:37:29.544 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:37:29.545 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:37:29.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7523.6478ms +2017-12-15 12:37:29.608 +05:30 [Information] Request finished in 7528.6348ms 200 application/json; charset=utf-8 +2017-12-15 12:37:29.608 +05:30 [Debug] Connection id ""0HLA3H6ONNO22"" completed keep alive response. +2017-12-15 12:37:29.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 12:37:29.625 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 12:37:29.627 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 12:37:29.629 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 12:37:29.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 12:37:29.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 12:37:29.640 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 12:37:29.641 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 12:37:29.645 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 12:37:29.645 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 12:37:29.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 12:37:29.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 12:37:30.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 12:37:30.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 12:37:30.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 12:37:33.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:37:33.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 12:37:33.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:42:06.184 +05:30 [Debug] Connection id ""0HLA3H6ONNO21"" received FIN. +2017-12-15 12:42:06.184 +05:30 [Debug] Connection id ""0HLA3H6ONNO24"" received FIN. +2017-12-15 12:42:06.184 +05:30 [Debug] Connection id ""0HLA3H6ONNO22"" received FIN. +2017-12-15 12:42:06.184 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" received FIN. +2017-12-15 12:42:06.184 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" received FIN. +2017-12-15 12:42:06.184 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" received FIN. +2017-12-15 12:42:06.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 12:42:06.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 12:42:08.155 +05:30 [Debug] Connection id ""0HLA3H6ONNO22"" disconnecting. +2017-12-15 12:42:08.155 +05:30 [Debug] Connection id ""0HLA3H6ONNO22"" sending FIN. +2017-12-15 12:42:08.155 +05:30 [Debug] Connection id ""0HLA3H6ONNO22"" sent FIN with status "-4077". +2017-12-15 12:42:08.155 +05:30 [Debug] Connection id ""0HLA3H6ONNO22"" stopped. +2017-12-15 12:42:08.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:42:08.717 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:42:08.717 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:42:08.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:42:08.748 +05:30 [Information] Connection id ""0HLA3H6ONNO20"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:08.748 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" disconnecting. +2017-12-15 12:42:08.748 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" stopped. +2017-12-15 12:42:08.780 +05:30 [Information] Connection id ""0HLA3H6ONNO20"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:08.780 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:08.780 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:08.780 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:08.780 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:08.780 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:08.780 +05:30 [Debug] Connection id ""0HLA3H6ONNO20"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:08.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 278174.6201ms +2017-12-15 12:42:08.780 +05:30 [Information] Request finished in 278181.1566ms 200 application/json; charset=utf-8 +2017-12-15 12:42:10.703 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:42:10.703 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:42:10.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:42:10.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:42:10.773 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" disconnecting. +2017-12-15 12:42:10.793 +05:30 [Information] Connection id ""0HLA3H6ONNO23"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.793 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" stopped. +2017-12-15 12:42:10.795 +05:30 [Information] Connection id ""0HLA3H6ONNO23"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.795 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.796 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.796 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:42:10.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:42:10.797 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:42:10.797 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:42:10.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:42:10.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:42:10.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:42:10.799 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:42:10.797 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.801 +05:30 [Information] Connection id ""0HLA3H6ONNO1V"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.800 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" disconnecting. +2017-12-15 12:42:10.806 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.807 +05:30 [Debug] Connection id ""0HLA3H6ONNO23"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.806 +05:30 [Information] Connection id ""0HLA3H6ONNO1V"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.808 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 281159.9732ms +2017-12-15 12:42:10.809 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" stopped. +2017-12-15 12:42:10.812 +05:30 [Information] Request finished in 281169.263ms 200 application/json; charset=utf-8 +2017-12-15 12:42:10.813 +05:30 [Information] Connection id ""0HLA3H6ONNO1V"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.813 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 281163.8931ms +2017-12-15 12:42:10.814 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.814 +05:30 [Debug] Connection id ""0HLA3H6ONNO21"" disconnecting. +2017-12-15 12:42:10.815 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.815 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.816 +05:30 [Debug] Connection id ""0HLA3H6ONNO1V"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.817 +05:30 [Information] Connection id ""0HLA3H6ONNO21"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 281179.4628ms +2017-12-15 12:42:10.818 +05:30 [Debug] Connection id ""0HLA3H6ONNO21"" stopped. +2017-12-15 12:42:10.820 +05:30 [Information] Request finished in 281193.5975ms 200 application/json; charset=utf-8 +2017-12-15 12:42:10.822 +05:30 [Information] Request finished in 281196.618ms 200 application/json; charset=utf-8 +2017-12-15 12:42:10.825 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:42:10.826 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:42:10.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:42:10.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:42:10.833 +05:30 [Debug] Connection id ""0HLA3H6ONNO24"" disconnecting. +2017-12-15 12:42:10.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 281205.8948ms +2017-12-15 12:42:10.834 +05:30 [Information] Connection id ""0HLA3H6ONNO24"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.836 +05:30 [Information] Connection id ""0HLA3H6ONNO24"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 12:42:10.836 +05:30 [Debug] Connection id ""0HLA3H6ONNO24"" stopped. +2017-12-15 12:42:10.837 +05:30 [Information] Request finished in 281213.8078ms 200 application/json; charset=utf-8 +2017-12-15 12:44:01.708 +05:30 [Debug] Connection id ""0HLA3H6ONNO25"" started. +2017-12-15 12:44:01.709 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 12:44:01.709 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 12:44:01.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 12:44:04.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 12:44:05.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:05.287 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:05.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:05.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3579.0386ms +2017-12-15 12:44:05.294 +05:30 [Information] Request finished in 3583.6782ms 200 application/json; charset=utf-8 +2017-12-15 12:44:05.294 +05:30 [Debug] Connection id ""0HLA3H6ONNO25"" completed keep alive response. +2017-12-15 12:44:05.301 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-15 12:44:05.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 12:44:05.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 12:44:08.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-15 12:44:10.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:10.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:10.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:10.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4736.4094ms +2017-12-15 12:44:10.043 +05:30 [Information] Request finished in 4741.4259ms 200 application/json; charset=utf-8 +2017-12-15 12:44:10.043 +05:30 [Debug] Connection id ""0HLA3H6ONNO25"" completed keep alive response. +2017-12-15 12:44:11.000 +05:30 [Debug] Connection id ""0HLA3H6ONNO26"" started. +2017-12-15 12:44:11.000 +05:30 [Debug] Connection id ""0HLA3H6ONNO28"" started. +2017-12-15 12:44:11.000 +05:30 [Debug] Connection id ""0HLA3H6ONNO27"" started. +2017-12-15 12:44:11.022 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 12:44:11.023 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 12:44:11.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 12:44:11.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 12:44:11.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 12:44:11.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 12:44:11.028 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 12:44:11.029 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 12:44:11.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 12:44:11.049 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 12:44:11.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 12:44:11.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 12:44:11.089 +05:30 [Debug] Connection id ""0HLA3H6ONNO29"" started. +2017-12-15 12:44:11.089 +05:30 [Debug] Connection id ""0HLA3H6ONNO2A"" started. +2017-12-15 12:44:11.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 12:44:11.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 12:44:11.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 12:44:11.818 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 12:44:11.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 12:44:11.819 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 12:44:14.847 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:44:15.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:44:15.978 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:44:15.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:44:16.010 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:44:16.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:16.035 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:16.047 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:16.064 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:16.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:44:16.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5039.9754ms +2017-12-15 12:44:16.070 +05:30 [Information] Request finished in 5067.8258ms 200 application/json; charset=utf-8 +2017-12-15 12:44:16.070 +05:30 [Debug] Connection id ""0HLA3H6ONNO26"" completed keep alive response. +2017-12-15 12:44:16.081 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 12:44:16.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 12:44:16.082 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 12:44:16.550 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:16.550 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:16.550 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:16.551 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:16.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5501.2888ms +2017-12-15 12:44:16.554 +05:30 [Information] Request finished in 5551.4905ms 200 application/json; charset=utf-8 +2017-12-15 12:44:16.555 +05:30 [Debug] Connection id ""0HLA3H6ONNO27"" completed keep alive response. +2017-12-15 12:44:16.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:16.768 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:16.769 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:16.770 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:16.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5739.5067ms +2017-12-15 12:44:16.773 +05:30 [Information] Request finished in 5770.7795ms 200 application/json; charset=utf-8 +2017-12-15 12:44:16.773 +05:30 [Debug] Connection id ""0HLA3H6ONNO28"" completed keep alive response. +2017-12-15 12:44:17.026 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:17.026 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:17.027 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:17.030 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:17.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5211.4118ms +2017-12-15 12:44:17.039 +05:30 [Information] Request finished in 5218.9263ms 200 application/json; charset=utf-8 +2017-12-15 12:44:17.040 +05:30 [Debug] Connection id ""0HLA3H6ONNO2A"" completed keep alive response. +2017-12-15 12:44:18.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:18.562 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:18.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:18.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:18.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7474.2071ms +2017-12-15 12:44:18.572 +05:30 [Information] Request finished in 7482.9063ms 200 application/json; charset=utf-8 +2017-12-15 12:44:18.572 +05:30 [Debug] Connection id ""0HLA3H6ONNO29"" completed keep alive response. +2017-12-15 12:44:19.119 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 12:44:19.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:19.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:19.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:19.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:19.362 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3278.4424ms +2017-12-15 12:44:19.364 +05:30 [Information] Request finished in 3283.1063ms 200 application/json; charset=utf-8 +2017-12-15 12:44:19.364 +05:30 [Debug] Connection id ""0HLA3H6ONNO26"" completed keep alive response. +2017-12-15 12:44:19.409 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 12:44:19.410 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 12:44:19.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 12:44:19.411 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 12:44:19.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 12:44:19.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 12:44:19.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 12:44:19.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 12:44:19.415 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 12:44:19.417 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 12:44:19.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 12:44:19.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 12:44:22.554 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:44:22.577 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 12:44:22.620 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:44:25.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 12:44:25.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:25.956 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:25.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:25.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:25.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6542.4109ms +2017-12-15 12:44:25.977 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 12:44:25.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 12:44:25.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 12:44:25.982 +05:30 [Information] Request finished in 6566.0167ms 200 application/json; charset=utf-8 +2017-12-15 12:44:25.989 +05:30 [Debug] Connection id ""0HLA3H6ONNO29"" completed keep alive response. +2017-12-15 12:44:26.136 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:26.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:26.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:28.025 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:28.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 8631.6289ms +2017-12-15 12:44:28.114 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:28.115 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:28.116 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:28.117 +05:30 [Information] Request finished in 8728.1313ms 200 application/json; charset=utf-8 +2017-12-15 12:44:28.117 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:28.118 +05:30 [Debug] Connection id ""0HLA3H6ONNO27"" completed keep alive response. +2017-12-15 12:44:28.153 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 8709.556ms +2017-12-15 12:44:28.156 +05:30 [Information] Request finished in 8747.2695ms 200 application/json; charset=utf-8 +2017-12-15 12:44:28.156 +05:30 [Debug] Connection id ""0HLA3H6ONNO28"" completed keep alive response. +2017-12-15 12:44:29.456 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:29.457 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:29.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:29.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:29.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 10079.4ms +2017-12-15 12:44:29.592 +05:30 [Information] Request finished in 10180.2441ms 200 application/json; charset=utf-8 +2017-12-15 12:44:29.593 +05:30 [Debug] Connection id ""0HLA3H6ONNO2A"" completed keep alive response. +2017-12-15 12:44:30.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 12:44:30.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:30.571 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:30.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:30.572 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:30.586 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4600.2556ms +2017-12-15 12:44:30.592 +05:30 [Information] Request finished in 4620.3666ms 200 application/json; charset=utf-8 +2017-12-15 12:44:30.593 +05:30 [Debug] Connection id ""0HLA3H6ONNO26"" completed keep alive response. +2017-12-15 12:44:30.922 +05:30 [Fatal] Sequence contains no elements +2017-12-15 12:44:30.924 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 12:44:31.568 +05:30 [Fatal] Sequence contains no elements +2017-12-15 12:44:31.571 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 12:44:42.254 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:44:42.254 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:44:42.254 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:44:42.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:44:42.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 31230.4613ms +2017-12-15 12:44:42.261 +05:30 [Information] Request finished in 31260.2267ms 200 application/json; charset=utf-8 +2017-12-15 12:44:42.261 +05:30 [Debug] Connection id ""0HLA3H6ONNO25"" completed keep alive response. +2017-12-15 12:46:21.226 +05:30 [Debug] Connection id ""0HLA3H6ONNO29"" received FIN. +2017-12-15 12:46:21.226 +05:30 [Debug] Connection id ""0HLA3H6ONNO28"" received FIN. +2017-12-15 12:46:21.226 +05:30 [Debug] Connection id ""0HLA3H6ONNO27"" received FIN. +2017-12-15 12:46:21.226 +05:30 [Debug] Connection id ""0HLA3H6ONNO2A"" received FIN. +2017-12-15 12:46:21.226 +05:30 [Debug] Connection id ""0HLA3H6ONNO29"" disconnecting. +2017-12-15 12:46:21.227 +05:30 [Debug] Connection id ""0HLA3H6ONNO28"" disconnecting. +2017-12-15 12:46:21.227 +05:30 [Debug] Connection id ""0HLA3H6ONNO25"" received FIN. +2017-12-15 12:46:21.227 +05:30 [Debug] Connection id ""0HLA3H6ONNO27"" disconnecting. +2017-12-15 12:46:21.227 +05:30 [Debug] Connection id ""0HLA3H6ONNO28"" sending FIN. +2017-12-15 12:46:21.226 +05:30 [Debug] Connection id ""0HLA3H6ONNO26"" received FIN. +2017-12-15 12:46:21.228 +05:30 [Debug] Connection id ""0HLA3H6ONNO28"" sent FIN with status "0". +2017-12-15 12:46:21.228 +05:30 [Debug] Connection id ""0HLA3H6ONNO29"" sending FIN. +2017-12-15 12:46:21.227 +05:30 [Debug] Connection id ""0HLA3H6ONNO25"" disconnecting. +2017-12-15 12:46:21.228 +05:30 [Debug] Connection id ""0HLA3H6ONNO28"" stopped. +2017-12-15 12:46:21.229 +05:30 [Debug] Connection id ""0HLA3H6ONNO27"" sending FIN. +2017-12-15 12:46:21.229 +05:30 [Debug] Connection id ""0HLA3H6ONNO25"" sending FIN. +2017-12-15 12:46:21.229 +05:30 [Debug] Connection id ""0HLA3H6ONNO25"" sent FIN with status "0". +2017-12-15 12:46:21.229 +05:30 [Debug] Connection id ""0HLA3H6ONNO27"" sent FIN with status "0". +2017-12-15 12:46:21.230 +05:30 [Debug] Connection id ""0HLA3H6ONNO27"" stopped. +2017-12-15 12:46:21.230 +05:30 [Debug] Connection id ""0HLA3H6ONNO25"" stopped. +2017-12-15 12:46:21.230 +05:30 [Debug] Connection id ""0HLA3H6ONNO29"" sent FIN with status "0". +2017-12-15 12:46:21.227 +05:30 [Debug] Connection id ""0HLA3H6ONNO2A"" disconnecting. +2017-12-15 12:46:21.233 +05:30 [Debug] Connection id ""0HLA3H6ONNO2A"" sending FIN. +2017-12-15 12:46:21.229 +05:30 [Debug] Connection id ""0HLA3H6ONNO26"" disconnecting. +2017-12-15 12:46:21.233 +05:30 [Debug] Connection id ""0HLA3H6ONNO2A"" sent FIN with status "0". +2017-12-15 12:46:21.232 +05:30 [Debug] Connection id ""0HLA3H6ONNO29"" stopped. +2017-12-15 12:46:21.234 +05:30 [Debug] Connection id ""0HLA3H6ONNO2A"" stopped. +2017-12-15 12:46:21.234 +05:30 [Debug] Connection id ""0HLA3H6ONNO26"" sending FIN. +2017-12-15 12:46:21.234 +05:30 [Debug] Connection id ""0HLA3H6ONNO26"" sent FIN with status "0". +2017-12-15 12:46:21.235 +05:30 [Debug] Connection id ""0HLA3H6ONNO26"" stopped. +2017-12-15 12:46:22.473 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" started. +2017-12-15 12:46:22.474 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 12:46:22.475 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 12:46:22.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 12:46:25.499 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 12:46:26.011 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:26.011 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:26.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:26.017 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3539.9405ms +2017-12-15 12:46:26.020 +05:30 [Information] Request finished in 3544.9932ms 200 application/json; charset=utf-8 +2017-12-15 12:46:26.020 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" completed keep alive response. +2017-12-15 12:46:26.028 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-15 12:46:26.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 12:46:26.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 12:46:29.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-15 12:46:30.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:30.847 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:30.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:30.850 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4819.7191ms +2017-12-15 12:46:30.853 +05:30 [Information] Request finished in 4825.1145ms 200 application/json; charset=utf-8 +2017-12-15 12:46:30.854 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" completed keep alive response. +2017-12-15 12:46:32.010 +05:30 [Debug] Connection id ""0HLA3H6ONNO2C"" started. +2017-12-15 12:46:32.010 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 12:46:32.010 +05:30 [Debug] Connection id ""0HLA3H6ONNO2E"" started. +2017-12-15 12:46:32.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 12:46:32.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 12:46:32.010 +05:30 [Debug] Connection id ""0HLA3H6ONNO2D"" started. +2017-12-15 12:46:32.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 12:46:32.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 12:46:32.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 12:46:32.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 12:46:32.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 12:46:32.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 12:46:32.016 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 12:46:32.018 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 12:46:32.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 12:46:32.113 +05:30 [Debug] Connection id ""0HLA3H6ONNO2F"" started. +2017-12-15 12:46:32.113 +05:30 [Debug] Connection id ""0HLA3H6ONNO2G"" started. +2017-12-15 12:46:32.115 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 12:46:32.116 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 12:46:32.117 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 12:46:32.117 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 12:46:32.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 12:46:32.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 12:46:35.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:35.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:35.112 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:35.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:35.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:35.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:35.672 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:35.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:35.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:35.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3660.4665ms +2017-12-15 12:46:35.680 +05:30 [Information] Request finished in 3670.0222ms 200 application/json; charset=utf-8 +2017-12-15 12:46:35.682 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" completed keep alive response. +2017-12-15 12:46:35.687 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=48 +2017-12-15 12:46:35.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-12-15 12:46:35.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-12-15 12:46:36.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:36.164 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:36.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:36.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:36.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4150.5525ms +2017-12-15 12:46:36.169 +05:30 [Information] Request finished in 4157.0507ms 200 application/json; charset=utf-8 +2017-12-15 12:46:36.169 +05:30 [Debug] Connection id ""0HLA3H6ONNO2E"" completed keep alive response. +2017-12-15 12:46:36.172 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=48 +2017-12-15 12:46:36.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-12-15 12:46:36.174 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-12-15 12:46:36.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:36.349 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:36.349 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:36.351 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:36.352 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4231.6074ms +2017-12-15 12:46:36.355 +05:30 [Information] Request finished in 4238.3743ms 200 application/json; charset=utf-8 +2017-12-15 12:46:36.356 +05:30 [Debug] Connection id ""0HLA3H6ONNO2G"" completed keep alive response. +2017-12-15 12:46:36.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:36.447 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:36.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:36.449 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:36.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4333.3385ms +2017-12-15 12:46:36.455 +05:30 [Information] Request finished in 4339.8519ms 200 application/json; charset=utf-8 +2017-12-15 12:46:36.455 +05:30 [Debug] Connection id ""0HLA3H6ONNO2F"" completed keep alive response. +2017-12-15 12:46:38.741 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:39.598 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:39.645 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:40.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:40.393 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:40.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:40.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:40.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8380.4758ms +2017-12-15 12:46:40.393 +05:30 [Information] Request finished in 8390.3506ms 200 application/json; charset=utf-8 +2017-12-15 12:46:40.393 +05:30 [Debug] Connection id ""0HLA3H6ONNO2D"" completed keep alive response. +2017-12-15 12:46:40.627 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:40.627 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:40.627 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:40.643 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:40.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:40.690 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:40.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:40.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:40.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 4532.105ms +2017-12-15 12:46:40.737 +05:30 [Information] Request finished in 4536.6423ms 200 application/json; charset=utf-8 +2017-12-15 12:46:40.737 +05:30 [Debug] Connection id ""0HLA3H6ONNO2E"" completed keep alive response. +2017-12-15 12:46:40.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 5056.5154ms +2017-12-15 12:46:40.752 +05:30 [Information] Request finished in 5065.8768ms 200 application/json; charset=utf-8 +2017-12-15 12:46:40.752 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" completed keep alive response. +2017-12-15 12:46:42.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=48 +2017-12-15 12:46:42.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=48 +2017-12-15 12:46:42.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-12-15 12:46:42.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-12-15 12:46:42.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-12-15 12:46:42.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-12-15 12:46:43.464 +05:30 [Fatal] Sequence contains no elements +2017-12-15 12:46:43.465 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 12:46:44.044 +05:30 [Fatal] Sequence contains no elements +2017-12-15 12:46:44.046 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 12:46:45.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:45.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 12:46:46.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:46.657 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:46.657 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:46.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:46.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 4531.102ms +2017-12-15 12:46:46.715 +05:30 [Information] Request finished in 4558.3236ms 200 application/json; charset=utf-8 +2017-12-15 12:46:46.716 +05:30 [Debug] Connection id ""0HLA3H6ONNO2F"" completed keep alive response. +2017-12-15 12:46:47.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:47.789 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:47.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:47.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:49.185 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 6999.1042ms +2017-12-15 12:46:49.199 +05:30 [Information] Request finished in 7041.5469ms 200 application/json; charset=utf-8 +2017-12-15 12:46:49.200 +05:30 [Debug] Connection id ""0HLA3H6ONNO2G"" completed keep alive response. +2017-12-15 12:46:54.867 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 12:46:54.867 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 12:46:54.867 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 12:46:54.868 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 12:46:54.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 22854.2867ms +2017-12-15 12:46:54.872 +05:30 [Information] Request finished in 22861.2347ms 200 application/json; charset=utf-8 +2017-12-15 12:46:54.873 +05:30 [Debug] Connection id ""0HLA3H6ONNO2C"" completed keep alive response. +2017-12-15 12:48:11.225 +05:30 [Debug] Connection id ""0HLA3H6ONNO2D"" received FIN. +2017-12-15 12:48:11.225 +05:30 [Debug] Connection id ""0HLA3H6ONNO2E"" received FIN. +2017-12-15 12:48:11.226 +05:30 [Debug] Connection id ""0HLA3H6ONNO2D"" disconnecting. +2017-12-15 12:48:11.226 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" received FIN. +2017-12-15 12:48:11.227 +05:30 [Debug] Connection id ""0HLA3H6ONNO2E"" disconnecting. +2017-12-15 12:48:11.227 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" disconnecting. +2017-12-15 12:48:11.227 +05:30 [Debug] Connection id ""0HLA3H6ONNO2E"" sending FIN. +2017-12-15 12:48:11.229 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" sending FIN. +2017-12-15 12:48:11.226 +05:30 [Debug] Connection id ""0HLA3H6ONNO2F"" received FIN. +2017-12-15 12:48:11.231 +05:30 [Debug] Connection id ""0HLA3H6ONNO2D"" sending FIN. +2017-12-15 12:48:11.231 +05:30 [Debug] Connection id ""0HLA3H6ONNO2F"" disconnecting. +2017-12-15 12:48:11.231 +05:30 [Debug] Connection id ""0HLA3H6ONNO2C"" received FIN. +2017-12-15 12:48:11.229 +05:30 [Debug] Connection id ""0HLA3H6ONNO2G"" received FIN. +2017-12-15 12:48:11.232 +05:30 [Debug] Connection id ""0HLA3H6ONNO2C"" disconnecting. +2017-12-15 12:48:11.232 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" sent FIN with status "0". +2017-12-15 12:48:11.233 +05:30 [Debug] Connection id ""0HLA3H6ONNO2G"" disconnecting. +2017-12-15 12:48:11.233 +05:30 [Debug] Connection id ""0HLA3H6ONNO2B"" stopped. +2017-12-15 12:48:11.232 +05:30 [Debug] Connection id ""0HLA3H6ONNO2D"" sent FIN with status "0". +2017-12-15 12:48:11.234 +05:30 [Debug] Connection id ""0HLA3H6ONNO2E"" sent FIN with status "0". +2017-12-15 12:48:11.234 +05:30 [Debug] Connection id ""0HLA3H6ONNO2D"" stopped. +2017-12-15 12:48:11.234 +05:30 [Debug] Connection id ""0HLA3H6ONNO2E"" stopped. +2017-12-15 12:48:11.235 +05:30 [Debug] Connection id ""0HLA3H6ONNO2G"" sending FIN. +2017-12-15 12:48:11.235 +05:30 [Debug] Connection id ""0HLA3H6ONNO2F"" sending FIN. +2017-12-15 12:48:11.235 +05:30 [Debug] Connection id ""0HLA3H6ONNO2G"" sent FIN with status "0". +2017-12-15 12:48:11.235 +05:30 [Debug] Connection id ""0HLA3H6ONNO2C"" sending FIN. +2017-12-15 12:48:11.236 +05:30 [Debug] Connection id ""0HLA3H6ONNO2G"" stopped. +2017-12-15 12:48:11.236 +05:30 [Debug] Connection id ""0HLA3H6ONNO2C"" sent FIN with status "0". +2017-12-15 12:48:11.237 +05:30 [Debug] Connection id ""0HLA3H6ONNO2C"" stopped. +2017-12-15 12:48:11.237 +05:30 [Debug] Connection id ""0HLA3H6ONNO2F"" sent FIN with status "0". +2017-12-15 12:48:11.238 +05:30 [Debug] Connection id ""0HLA3H6ONNO2F"" stopped. +2017-12-15 14:00:15.319 +05:30 [Debug] Hosting starting +2017-12-15 14:00:15.675 +05:30 [Debug] Hosting started +2017-12-15 14:00:15.869 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" started. +2017-12-15 14:00:15.871 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" started. +2017-12-15 14:00:16.165 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-15 14:00:16.165 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-15 14:00:16.254 +05:30 [Information] Request finished in 148.0787ms 200 +2017-12-15 14:00:16.327 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" completed keep alive response. +2017-12-15 14:00:18.440 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-15 14:00:18.514 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a7f36ce4-27a1-40d8-afd9-c6cfc9879331"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-15 14:00:18.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-15 14:00:18.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-15 14:00:18.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-15 14:00:18.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 14:00:18.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:00:18.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:00:19.011 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 14:00:19.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 14:00:19.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 14:00:19.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 580.5703ms +2017-12-15 14:00:19.390 +05:30 [Information] Request finished in 3294.6416ms 200 application/json; charset=utf-8 +2017-12-15 14:00:19.393 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" completed keep alive response. +2017-12-15 14:00:19.548 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-15 14:00:19.550 +05:30 [Debug] Request did not match any routes. +2017-12-15 14:00:19.569 +05:30 [Debug] The request path "" does not match the path filter +2017-12-15 14:00:19.571 +05:30 [Information] Request finished in 23.7616ms 404 +2017-12-15 14:00:19.572 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" completed keep alive response. +2017-12-15 14:00:22.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 14:00:30.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:00:31.026 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:00:31.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:00:31.030 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12002.5922ms +2017-12-15 14:00:31.032 +05:30 [Information] Request finished in 12020.7215ms 200 application/json; charset=utf-8 +2017-12-15 14:00:31.033 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" completed keep alive response. +2017-12-15 14:00:42.204 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 14:00:42.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 14:00:42.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 14:00:45.272 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 14:00:45.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:00:45.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:00:45.851 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:00:45.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3644.7861ms +2017-12-15 14:00:45.857 +05:30 [Information] Request finished in 3652.3457ms 200 application/json; charset=utf-8 +2017-12-15 14:00:45.857 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" completed keep alive response. +2017-12-15 14:00:45.916 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 14:00:45.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 14:00:45.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 14:00:48.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 14:00:49.538 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:00:49.539 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:00:49.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:00:49.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3622.7147ms +2017-12-15 14:00:49.545 +05:30 [Information] Request finished in 3630.1852ms 200 application/json; charset=utf-8 +2017-12-15 14:00:49.545 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" completed keep alive response. +2017-12-15 14:00:49.593 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 14:00:49.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 14:00:49.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 14:00:52.644 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 14:00:53.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:00:53.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:00:53.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:00:53.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3626.4282ms +2017-12-15 14:00:53.224 +05:30 [Information] Request finished in 3632.1551ms 200 application/json; charset=utf-8 +2017-12-15 14:00:53.225 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" completed keep alive response. +2017-12-15 14:01:15.111 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 14:01:15.112 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 14:01:15.112 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 14:01:18.197 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 14:01:18.774 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:18.775 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:18.776 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:18.781 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3663.9155ms +2017-12-15 14:01:18.784 +05:30 [Information] Request finished in 3705.678ms 200 application/json; charset=utf-8 +2017-12-15 14:01:18.784 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" completed keep alive response. +2017-12-15 14:01:21.883 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 14:01:21.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 14:01:21.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 14:01:24.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 14:01:25.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:25.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:25.522 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:25.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3638.1886ms +2017-12-15 14:01:25.546 +05:30 [Information] Request finished in 3663.1383ms 200 application/json; charset=utf-8 +2017-12-15 14:01:25.547 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" completed keep alive response. +2017-12-15 14:01:25.602 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 14:01:25.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 14:01:25.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 14:01:28.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 14:01:31.061 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:31.062 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:31.063 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:31.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5621.2347ms +2017-12-15 14:01:31.244 +05:30 [Information] Request finished in 5645.218ms 200 application/json; charset=utf-8 +2017-12-15 14:01:31.244 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" completed keep alive response. +2017-12-15 14:01:31.929 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 14:01:31.930 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 14:01:31.930 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 14:01:34.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 14:01:35.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:35.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:35.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:35.547 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3616.2187ms +2017-12-15 14:01:35.550 +05:30 [Information] Request finished in 3620.5893ms 200 application/json; charset=utf-8 +2017-12-15 14:01:35.551 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" completed keep alive response. +2017-12-15 14:01:35.597 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 14:01:35.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 14:01:35.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 14:01:38.636 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 14:01:40.582 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:40.582 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:40.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:40.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5056.8808ms +2017-12-15 14:01:40.659 +05:30 [Information] Request finished in 5062.3947ms 200 application/json; charset=utf-8 +2017-12-15 14:01:40.659 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" completed keep alive response. +2017-12-15 14:01:43.676 +05:30 [Debug] Connection id ""0HLA3IO8M1OUR"" started. +2017-12-15 14:01:43.676 +05:30 [Debug] Connection id ""0HLA3IO8M1OUS"" started. +2017-12-15 14:01:43.682 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 14:01:43.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 14:01:43.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 14:01:43.702 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 14:01:43.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 14:01:43.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 14:01:43.711 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 14:01:43.712 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 14:01:43.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 14:01:43.718 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 14:01:43.719 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 14:01:43.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 14:01:43.946 +05:30 [Debug] Connection id ""0HLA3IO8M1OUT"" started. +2017-12-15 14:01:43.946 +05:30 [Debug] Connection id ""0HLA3IO8M1OUU"" started. +2017-12-15 14:01:44.684 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 14:01:44.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 14:01:44.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 14:01:45.682 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 14:01:45.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 14:01:45.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 14:01:48.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 14:01:49.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 14:01:49.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 14:01:49.134 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 14:01:49.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 14:01:49.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 14:01:50.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:50.232 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 14:01:50.232 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:50.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:50.235 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6550.6327ms +2017-12-15 14:01:50.237 +05:30 [Information] Request finished in 6564.0225ms 200 application/json; charset=utf-8 +2017-12-15 14:01:50.238 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" completed keep alive response. +2017-12-15 14:01:50.242 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 14:01:50.242 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 14:01:50.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 14:01:51.172 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:51.172 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 14:01:51.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:51.173 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:51.180 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7454.9084ms +2017-12-15 14:01:51.184 +05:30 [Information] Request finished in 7509.8872ms 200 application/json; charset=utf-8 +2017-12-15 14:01:51.188 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" completed keep alive response. +2017-12-15 14:01:51.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:51.391 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 14:01:51.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:51.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:51.406 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7689.4198ms +2017-12-15 14:01:51.408 +05:30 [Information] Request finished in 7716.9403ms 200 application/json; charset=utf-8 +2017-12-15 14:01:51.408 +05:30 [Debug] Connection id ""0HLA3IO8M1OUS"" completed keep alive response. +2017-12-15 14:01:51.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:51.702 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 14:01:51.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:51.704 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:51.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7018.5821ms +2017-12-15 14:01:51.731 +05:30 [Information] Request finished in 7026.0152ms 200 application/json; charset=utf-8 +2017-12-15 14:01:51.732 +05:30 [Debug] Connection id ""0HLA3IO8M1OUT"" completed keep alive response. +2017-12-15 14:01:51.904 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:51.904 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 14:01:51.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:51.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:51.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6221.4875ms +2017-12-15 14:01:51.908 +05:30 [Information] Request finished in 6226.0127ms 200 application/json; charset=utf-8 +2017-12-15 14:01:51.908 +05:30 [Debug] Connection id ""0HLA3IO8M1OUU"" completed keep alive response. +2017-12-15 14:01:53.327 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 14:01:55.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:01:55.845 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 14:01:55.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:01:55.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:01:55.957 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5677.2198ms +2017-12-15 14:01:55.982 +05:30 [Information] Request finished in 5736.8765ms 200 application/json; charset=utf-8 +2017-12-15 14:01:55.982 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" completed keep alive response. +2017-12-15 14:01:59.262 +05:30 [Fatal] Sequence contains no elements +2017-12-15 14:01:59.447 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 14:01:59.993 +05:30 [Fatal] Sequence contains no elements +2017-12-15 14:01:59.994 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 14:02:11.044 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 14:02:11.044 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 14:02:11.045 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 14:02:11.046 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 14:02:11.065 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27360.4319ms +2017-12-15 14:02:11.067 +05:30 [Information] Request finished in 27378.5248ms 200 application/json; charset=utf-8 +2017-12-15 14:02:11.068 +05:30 [Debug] Connection id ""0HLA3IO8M1OUR"" completed keep alive response. +2017-12-15 14:03:56.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" received FIN. +2017-12-15 14:03:56.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OUS"" received FIN. +2017-12-15 14:03:56.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OUU"" received FIN. +2017-12-15 14:03:56.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OUT"" received FIN. +2017-12-15 14:03:56.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OUR"" received FIN. +2017-12-15 14:03:56.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" received FIN. +2017-12-15 14:03:56.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" disconnecting. +2017-12-15 14:03:56.232 +05:30 [Debug] Connection id ""0HLA3IO8M1OUU"" disconnecting. +2017-12-15 14:03:56.232 +05:30 [Debug] Connection id ""0HLA3IO8M1OUS"" disconnecting. +2017-12-15 14:03:56.254 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" sending FIN. +2017-12-15 14:03:56.254 +05:30 [Debug] Connection id ""0HLA3IO8M1OUR"" disconnecting. +2017-12-15 14:03:56.255 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" disconnecting. +2017-12-15 14:03:56.255 +05:30 [Debug] Connection id ""0HLA3IO8M1OUS"" sending FIN. +2017-12-15 14:03:56.233 +05:30 [Debug] Connection id ""0HLA3IO8M1OUT"" disconnecting. +2017-12-15 14:03:56.256 +05:30 [Debug] Connection id ""0HLA3IO8M1OUU"" sending FIN. +2017-12-15 14:03:56.256 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" sending FIN. +2017-12-15 14:03:56.256 +05:30 [Debug] Connection id ""0HLA3IO8M1OUR"" sending FIN. +2017-12-15 14:03:56.256 +05:30 [Debug] Connection id ""0HLA3IO8M1OUT"" sending FIN. +2017-12-15 14:03:56.261 +05:30 [Debug] Connection id ""0HLA3IO8M1OUR"" sent FIN with status "0". +2017-12-15 14:03:56.261 +05:30 [Debug] Connection id ""0HLA3IO8M1OUT"" sent FIN with status "0". +2017-12-15 14:03:56.263 +05:30 [Debug] Connection id ""0HLA3IO8M1OUR"" stopped. +2017-12-15 14:03:56.263 +05:30 [Debug] Connection id ""0HLA3IO8M1OUT"" stopped. +2017-12-15 14:03:56.263 +05:30 [Debug] Connection id ""0HLA3IO8M1OUU"" sent FIN with status "0". +2017-12-15 14:03:56.264 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" sent FIN with status "0". +2017-12-15 14:03:56.264 +05:30 [Debug] Connection id ""0HLA3IO8M1OUP"" stopped. +2017-12-15 14:03:56.264 +05:30 [Debug] Connection id ""0HLA3IO8M1OUU"" stopped. +2017-12-15 14:03:56.264 +05:30 [Debug] Connection id ""0HLA3IO8M1OUS"" sent FIN with status "0". +2017-12-15 14:03:56.264 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" sent FIN with status "0". +2017-12-15 14:03:56.265 +05:30 [Debug] Connection id ""0HLA3IO8M1OUQ"" stopped. +2017-12-15 14:03:56.264 +05:30 [Debug] Connection id ""0HLA3IO8M1OUS"" stopped. +2017-12-15 15:21:28.951 +05:30 [Debug] Connection id ""0HLA3IO8M1OUV"" started. +2017-12-15 15:21:28.972 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 15:21:28.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 15:21:28.974 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 15:21:32.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 15:21:36.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:21:36.422 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:21:36.422 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:21:36.423 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:21:36.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7500.3218ms +2017-12-15 15:21:36.478 +05:30 [Information] Request finished in 7525.2728ms 200 application/json; charset=utf-8 +2017-12-15 15:21:36.478 +05:30 [Debug] Connection id ""0HLA3IO8M1OUV"" completed keep alive response. +2017-12-15 15:21:36.505 +05:30 [Debug] Connection id ""0HLA3IO8M1OV0"" started. +2017-12-15 15:21:36.506 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 15:21:36.506 +05:30 [Debug] Connection id ""0HLA3IO8M1OV1"" started. +2017-12-15 15:21:36.508 +05:30 [Debug] Connection id ""0HLA3IO8M1OV2"" started. +2017-12-15 15:21:36.510 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 15:21:36.513 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 15:21:36.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 15:21:36.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 15:21:36.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 15:21:36.530 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 15:21:36.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:21:36.532 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:21:36.551 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 15:21:36.555 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 15:21:36.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 15:21:38.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 15:21:39.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 15:21:39.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 15:21:39.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 15:21:41.563 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:21:41.564 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:21:41.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:21:41.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:21:41.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5055.2935ms +2017-12-15 15:21:41.592 +05:30 [Debug] Connection id ""0HLA3IO8M1OV3"" started. +2017-12-15 15:21:41.596 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 15:21:41.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:21:41.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:21:41.603 +05:30 [Information] Request finished in 5069.9982ms 200 application/json; charset=utf-8 +2017-12-15 15:21:41.603 +05:30 [Debug] Connection id ""0HLA3IO8M1OV1"" completed keep alive response. +2017-12-15 15:21:42.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:21:42.038 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:21:42.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:21:42.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:21:42.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5532.8412ms +2017-12-15 15:21:42.051 +05:30 [Information] Request finished in 5543.672ms 200 application/json; charset=utf-8 +2017-12-15 15:21:42.051 +05:30 [Debug] Connection id ""0HLA3IO8M1OV0"" completed keep alive response. +2017-12-15 15:21:43.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:21:43.005 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:21:43.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:21:43.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:21:43.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 6452.073ms +2017-12-15 15:21:43.014 +05:30 [Information] Request finished in 6473.2784ms 200 application/json; charset=utf-8 +2017-12-15 15:21:43.015 +05:30 [Debug] Connection id ""0HLA3IO8M1OV2"" completed keep alive response. +2017-12-15 15:21:44.235 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:21:44.235 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:21:44.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:21:44.237 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:21:44.267 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 7738.667ms +2017-12-15 15:21:44.272 +05:30 [Information] Request finished in 7770.7042ms 200 application/json; charset=utf-8 +2017-12-15 15:21:44.273 +05:30 [Debug] Connection id ""0HLA3IO8M1OUV"" completed keep alive response. +2017-12-15 15:21:44.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 15:21:45.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:21:45.292 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:21:45.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:21:45.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:21:45.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3697.9747ms +2017-12-15 15:21:45.302 +05:30 [Information] Request finished in 3706.2926ms 200 application/json; charset=utf-8 +2017-12-15 15:21:45.302 +05:30 [Debug] Connection id ""0HLA3IO8M1OV3"" completed keep alive response. +2017-12-15 15:22:46.227 +05:30 [Debug] Connection id ""0HLA3IO8M1OV1"" received FIN. +2017-12-15 15:22:46.227 +05:30 [Debug] Connection id ""0HLA3IO8M1OV2"" received FIN. +2017-12-15 15:22:46.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OUV"" received FIN. +2017-12-15 15:22:46.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OV1"" disconnecting. +2017-12-15 15:22:46.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OV3"" received FIN. +2017-12-15 15:22:46.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OV2"" disconnecting. +2017-12-15 15:22:46.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OUV"" disconnecting. +2017-12-15 15:22:46.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OV2"" sending FIN. +2017-12-15 15:22:46.230 +05:30 [Debug] Connection id ""0HLA3IO8M1OUV"" sending FIN. +2017-12-15 15:22:46.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OV0"" received FIN. +2017-12-15 15:22:46.231 +05:30 [Debug] Connection id ""0HLA3IO8M1OUV"" sent FIN with status "0". +2017-12-15 15:22:46.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OV3"" disconnecting. +2017-12-15 15:22:46.255 +05:30 [Debug] Connection id ""0HLA3IO8M1OV0"" disconnecting. +2017-12-15 15:22:46.232 +05:30 [Debug] Connection id ""0HLA3IO8M1OUV"" stopped. +2017-12-15 15:22:46.232 +05:30 [Debug] Connection id ""0HLA3IO8M1OV1"" sending FIN. +2017-12-15 15:22:46.255 +05:30 [Debug] Connection id ""0HLA3IO8M1OV2"" sent FIN with status "0". +2017-12-15 15:22:46.256 +05:30 [Debug] Connection id ""0HLA3IO8M1OV0"" sending FIN. +2017-12-15 15:22:46.256 +05:30 [Debug] Connection id ""0HLA3IO8M1OV2"" stopped. +2017-12-15 15:22:46.257 +05:30 [Debug] Connection id ""0HLA3IO8M1OV0"" sent FIN with status "0". +2017-12-15 15:22:46.257 +05:30 [Debug] Connection id ""0HLA3IO8M1OV0"" stopped. +2017-12-15 15:22:46.258 +05:30 [Debug] Connection id ""0HLA3IO8M1OV1"" sent FIN with status "0". +2017-12-15 15:22:46.257 +05:30 [Debug] Connection id ""0HLA3IO8M1OV3"" sending FIN. +2017-12-15 15:22:46.258 +05:30 [Debug] Connection id ""0HLA3IO8M1OV1"" stopped. +2017-12-15 15:22:46.259 +05:30 [Debug] Connection id ""0HLA3IO8M1OV3"" sent FIN with status "0". +2017-12-15 15:22:46.259 +05:30 [Debug] Connection id ""0HLA3IO8M1OV3"" stopped. +2017-12-15 15:26:14.084 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" started. +2017-12-15 15:26:14.087 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 15:26:14.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 15:26:14.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 15:26:17.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 15:26:17.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:26:17.433 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:26:17.433 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:26:17.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:26:17.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3346.9146ms +2017-12-15 15:26:17.439 +05:30 [Information] Request finished in 3353.1948ms 200 application/json; charset=utf-8 +2017-12-15 15:26:17.440 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" completed keep alive response. +2017-12-15 15:26:17.669 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 15:26:17.669 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 15:26:17.671 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 15:26:17.671 +05:30 [Debug] Connection id ""0HLA3IO8M1OV5"" started. +2017-12-15 15:26:17.676 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 15:26:17.677 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:26:17.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:26:20.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 15:26:20.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 15:26:21.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:26:21.554 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:26:21.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:26:21.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:26:21.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3884.9077ms +2017-12-15 15:26:21.559 +05:30 [Information] Request finished in 3891.4945ms 200 application/json; charset=utf-8 +2017-12-15 15:26:21.559 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" completed keep alive response. +2017-12-15 15:26:22.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:26:22.459 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:26:22.459 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:26:22.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:26:22.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4786.8312ms +2017-12-15 15:26:22.473 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 15:26:22.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:26:22.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:26:22.477 +05:30 [Information] Request finished in 4800.2612ms 200 application/json; charset=utf-8 +2017-12-15 15:26:22.479 +05:30 [Debug] Connection id ""0HLA3IO8M1OV5"" completed keep alive response. +2017-12-15 15:26:25.512 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 15:26:26.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:26:26.155 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:26:26.155 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:26:26.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:26:26.159 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3682.8195ms +2017-12-15 15:26:26.162 +05:30 [Information] Request finished in 3693.4025ms 200 application/json; charset=utf-8 +2017-12-15 15:26:26.163 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" completed keep alive response. +2017-12-15 15:26:43.847 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=790900144392091&daysCount=90 +2017-12-15 15:26:43.847 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 15:26:43.848 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 15:26:46.913 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["790900144392091", "90"]) - ModelState is Valid +2017-12-15 15:26:47.182 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:26:47.183 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:26:47.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:26:47.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:26:47.185 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3335.3865ms +2017-12-15 15:26:47.187 +05:30 [Information] Request finished in 3339.289ms 200 application/json; charset=utf-8 +2017-12-15 15:26:47.187 +05:30 [Debug] Connection id ""0HLA3IO8M1OV5"" completed keep alive response. +2017-12-15 15:26:47.684 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 15:26:47.684 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=790900144392091&daysCount=90 +2017-12-15 15:26:47.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 15:26:47.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:26:47.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 15:26:47.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:26:50.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 15:26:51.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:26:51.522 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:26:51.523 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:26:51.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:26:51.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3842.1742ms +2017-12-15 15:26:51.532 +05:30 [Information] Request finished in 3867.8815ms 200 application/json; charset=utf-8 +2017-12-15 15:26:51.533 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" completed keep alive response. +2017-12-15 15:26:54.861 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["790900144392091", "90"]) - ModelState is Valid +2017-12-15 15:26:56.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:26:56.948 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:26:56.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:26:56.950 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:26:56.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=790900144392091&daysCount=90 +2017-12-15 15:26:56.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:26:56.965 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:26:56.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 9290.5033ms +2017-12-15 15:26:56.979 +05:30 [Information] Request finished in 9313.9309ms 200 application/json; charset=utf-8 +2017-12-15 15:26:56.979 +05:30 [Debug] Connection id ""0HLA3IO8M1OV5"" completed keep alive response. +2017-12-15 15:27:00.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["790900144392091", "90"]) - ModelState is Valid +2017-12-15 15:27:01.556 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:27:01.557 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:27:01.557 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:27:01.558 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:27:01.580 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4613.6439ms +2017-12-15 15:27:01.584 +05:30 [Information] Request finished in 4623.7582ms 200 application/json; charset=utf-8 +2017-12-15 15:27:01.585 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" completed keep alive response. +2017-12-15 15:28:16.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OV5"" received FIN. +2017-12-15 15:28:16.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" received FIN. +2017-12-15 15:28:16.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OV5"" disconnecting. +2017-12-15 15:28:16.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" disconnecting. +2017-12-15 15:28:16.230 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" sending FIN. +2017-12-15 15:28:16.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OV5"" sending FIN. +2017-12-15 15:28:16.230 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" sent FIN with status "0". +2017-12-15 15:28:16.230 +05:30 [Debug] Connection id ""0HLA3IO8M1OV5"" sent FIN with status "0". +2017-12-15 15:28:16.231 +05:30 [Debug] Connection id ""0HLA3IO8M1OV5"" stopped. +2017-12-15 15:28:16.231 +05:30 [Debug] Connection id ""0HLA3IO8M1OV4"" stopped. +2017-12-15 15:37:51.274 +05:30 [Debug] Connection id ""0HLA3IO8M1OV6"" started. +2017-12-15 15:37:51.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1452799044811364&daysCount=90 +2017-12-15 15:37:51.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 15:37:51.280 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 15:37:54.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1452799044811364", "90"]) - ModelState is Valid +2017-12-15 15:37:56.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:37:56.109 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:37:56.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:37:56.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:37:56.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4831.3682ms +2017-12-15 15:37:56.115 +05:30 [Information] Request finished in 4839.3042ms 200 application/json; charset=utf-8 +2017-12-15 15:37:56.116 +05:30 [Debug] Connection id ""0HLA3IO8M1OV6"" completed keep alive response. +2017-12-15 15:37:56.492 +05:30 [Debug] Connection id ""0HLA3IO8M1OV7"" started. +2017-12-15 15:37:56.492 +05:30 [Debug] Connection id ""0HLA3IO8M1OV8"" started. +2017-12-15 15:37:56.514 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1452799044811364&daysCount=90 +2017-12-15 15:37:56.514 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 15:37:56.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:37:56.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1452799044811364&daysCount=90 +2017-12-15 15:37:56.537 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:37:56.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:37:56.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 15:37:56.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 15:37:56.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:37:59.644 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1452799044811364", "90"]) - ModelState is Valid +2017-12-15 15:37:59.644 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 15:37:59.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1452799044811364", "90"]) - ModelState is Valid +2017-12-15 15:38:02.543 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:38:02.543 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:38:02.543 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:38:02.544 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:38:02.553 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6003.0693ms +2017-12-15 15:38:02.556 +05:30 [Information] Request finished in 6041.7338ms 200 application/json; charset=utf-8 +2017-12-15 15:38:02.556 +05:30 [Debug] Connection id ""0HLA3IO8M1OV7"" completed keep alive response. +2017-12-15 15:38:02.569 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:38:02.569 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:38:02.569 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:38:02.570 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:38:02.579 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6040.6867ms +2017-12-15 15:38:02.586 +05:30 [Information] Request finished in 6092.2335ms 200 application/json; charset=utf-8 +2017-12-15 15:38:02.587 +05:30 [Debug] Connection id ""0HLA3IO8M1OV6"" completed keep alive response. +2017-12-15 15:38:03.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:38:03.858 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:38:03.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:38:03.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:38:03.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 7319.7934ms +2017-12-15 15:38:03.863 +05:30 [Information] Request finished in 7349.3517ms 200 application/json; charset=utf-8 +2017-12-15 15:38:03.863 +05:30 [Debug] Connection id ""0HLA3IO8M1OV8"" completed keep alive response. +2017-12-15 15:38:19.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=790900144392091&daysCount=90 +2017-12-15 15:38:19.277 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 15:38:19.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 15:38:22.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["790900144392091", "90"]) - ModelState is Valid +2017-12-15 15:38:22.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:38:22.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:38:22.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:38:22.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:38:22.599 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3320.2531ms +2017-12-15 15:38:22.601 +05:30 [Information] Request finished in 3332.3796ms 200 application/json; charset=utf-8 +2017-12-15 15:38:22.602 +05:30 [Debug] Connection id ""0HLA3IO8M1OV7"" completed keep alive response. +2017-12-15 15:38:23.123 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 15:38:23.123 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 15:38:23.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 15:38:23.171 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=790900144392091&daysCount=90 +2017-12-15 15:38:23.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:38:23.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:38:26.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 15:38:26.232 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["790900144392091", "90"]) - ModelState is Valid +2017-12-15 15:38:27.084 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:38:27.084 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:38:27.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:38:27.085 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:38:27.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3961.5472ms +2017-12-15 15:38:27.089 +05:30 [Information] Request finished in 4004.5388ms 200 application/json; charset=utf-8 +2017-12-15 15:38:27.089 +05:30 [Debug] Connection id ""0HLA3IO8M1OV6"" completed keep alive response. +2017-12-15 15:38:29.457 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:38:29.458 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:38:29.458 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:38:29.460 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:38:29.482 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=790900144392091&daysCount=90 +2017-12-15 15:38:29.483 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 15:38:29.484 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 15:38:29.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6325.0467ms +2017-12-15 15:38:29.499 +05:30 [Information] Request finished in 6415.5606ms 200 application/json; charset=utf-8 +2017-12-15 15:38:29.500 +05:30 [Debug] Connection id ""0HLA3IO8M1OV8"" completed keep alive response. +2017-12-15 15:38:32.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["790900144392091", "90"]) - ModelState is Valid +2017-12-15 15:38:34.380 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 15:38:34.380 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 15:38:34.381 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 15:38:34.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 15:38:34.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4918.5183ms +2017-12-15 15:38:34.409 +05:30 [Information] Request finished in 4929.8857ms 200 application/json; charset=utf-8 +2017-12-15 15:38:34.409 +05:30 [Debug] Connection id ""0HLA3IO8M1OV7"" completed keep alive response. +2017-12-15 15:41:06.016 +05:30 [Debug] Connection id ""0HLA3IO8M1OV6"" received FIN. +2017-12-15 15:41:06.017 +05:30 [Debug] Connection id ""0HLA3IO8M1OV6"" disconnecting. +2017-12-15 15:41:06.017 +05:30 [Debug] Connection id ""0HLA3IO8M1OV6"" sending FIN. +2017-12-15 15:41:06.017 +05:30 [Debug] Connection id ""0HLA3IO8M1OV6"" sent FIN with status "0". +2017-12-15 15:41:06.018 +05:30 [Debug] Connection id ""0HLA3IO8M1OV6"" stopped. +2017-12-15 15:41:06.019 +05:30 [Debug] Connection id ""0HLA3IO8M1OV8"" received FIN. +2017-12-15 15:41:06.019 +05:30 [Debug] Connection id ""0HLA3IO8M1OV7"" received FIN. +2017-12-15 15:41:06.023 +05:30 [Debug] Connection id ""0HLA3IO8M1OV7"" disconnecting. +2017-12-15 15:41:06.024 +05:30 [Debug] Connection id ""0HLA3IO8M1OV7"" sending FIN. +2017-12-15 15:41:06.024 +05:30 [Debug] Connection id ""0HLA3IO8M1OV7"" sent FIN with status "0". +2017-12-15 15:41:06.023 +05:30 [Debug] Connection id ""0HLA3IO8M1OV8"" disconnecting. +2017-12-15 15:41:06.024 +05:30 [Debug] Connection id ""0HLA3IO8M1OV7"" stopped. +2017-12-15 15:41:06.025 +05:30 [Debug] Connection id ""0HLA3IO8M1OV8"" sending FIN. +2017-12-15 15:41:06.025 +05:30 [Debug] Connection id ""0HLA3IO8M1OV8"" sent FIN with status "0". +2017-12-15 15:41:06.026 +05:30 [Debug] Connection id ""0HLA3IO8M1OV8"" stopped. +2017-12-15 16:11:55.743 +05:30 [Debug] Connection id ""0HLA3IO8M1OV9"" started. +2017-12-15 16:11:55.745 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:11:55.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 16:11:55.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 16:11:58.777 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:12:00.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:12:00.359 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:12:00.359 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:12:00.360 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:12:00.361 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4613.8323ms +2017-12-15 16:12:00.363 +05:30 [Information] Request finished in 4617.8307ms 200 application/json; charset=utf-8 +2017-12-15 16:12:00.363 +05:30 [Debug] Connection id ""0HLA3IO8M1OV9"" completed keep alive response. +2017-12-15 16:12:00.376 +05:30 [Debug] Connection id ""0HLA3IO8M1OVA"" started. +2017-12-15 16:12:00.376 +05:30 [Debug] Connection id ""0HLA3IO8M1OVB"" started. +2017-12-15 16:12:00.376 +05:30 [Debug] Connection id ""0HLA3IO8M1OVC"" started. +2017-12-15 16:12:00.377 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 16:12:00.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 16:12:00.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 16:12:00.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 16:12:00.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 16:12:00.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 16:12:00.416 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 16:12:00.417 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 16:12:00.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 16:12:00.428 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:12:00.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 16:12:00.429 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 16:12:03.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:12:03.464 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 16:12:04.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:12:06.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:12:06.419 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:12:06.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:12:06.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:12:06.432 +05:30 [Debug] Connection id ""0HLA3IO8M1OVD"" started. +2017-12-15 16:12:06.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6001.1827ms +2017-12-15 16:12:06.450 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:12:06.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 16:12:06.451 +05:30 [Information] Request finished in 6072.9143ms 200 application/json; charset=utf-8 +2017-12-15 16:12:06.452 +05:30 [Debug] Connection id ""0HLA3IO8M1OVA"" completed keep alive response. +2017-12-15 16:12:06.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 16:12:07.576 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:12:07.587 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:12:07.601 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:12:07.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:12:07.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:12:07.625 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 7239.4977ms +2017-12-15 16:12:07.629 +05:30 [Information] Request finished in 7253.9014ms 200 application/json; charset=utf-8 +2017-12-15 16:12:07.629 +05:30 [Debug] Connection id ""0HLA3IO8M1OV9"" completed keep alive response. +2017-12-15 16:12:08.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:12:08.425 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:12:08.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:12:08.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:12:08.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 8005.6727ms +2017-12-15 16:12:08.432 +05:30 [Information] Request finished in 8052.6878ms 200 application/json; charset=utf-8 +2017-12-15 16:12:08.432 +05:30 [Debug] Connection id ""0HLA3IO8M1OVC"" completed keep alive response. +2017-12-15 16:12:09.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:12:09.182 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:12:09.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:12:09.186 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:12:09.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 8785.3484ms +2017-12-15 16:12:09.202 +05:30 [Information] Request finished in 8816.675ms 200 application/json; charset=utf-8 +2017-12-15 16:12:09.202 +05:30 [Debug] Connection id ""0HLA3IO8M1OVB"" completed keep alive response. +2017-12-15 16:12:09.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:12:09.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:12:09.870 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:12:09.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:12:09.871 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:12:09.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3420.7342ms +2017-12-15 16:12:09.904 +05:30 [Information] Request finished in 3440.2366ms 200 application/json; charset=utf-8 +2017-12-15 16:12:09.905 +05:30 [Debug] Connection id ""0HLA3IO8M1OVD"" completed keep alive response. +2017-12-15 16:14:06.014 +05:30 [Debug] Connection id ""0HLA3IO8M1OVA"" received FIN. +2017-12-15 16:14:06.014 +05:30 [Debug] Connection id ""0HLA3IO8M1OV9"" received FIN. +2017-12-15 16:14:06.015 +05:30 [Debug] Connection id ""0HLA3IO8M1OVC"" received FIN. +2017-12-15 16:14:06.015 +05:30 [Debug] Connection id ""0HLA3IO8M1OVB"" received FIN. +2017-12-15 16:14:06.015 +05:30 [Debug] Connection id ""0HLA3IO8M1OVD"" received FIN. +2017-12-15 16:14:06.016 +05:30 [Debug] Connection id ""0HLA3IO8M1OVC"" disconnecting. +2017-12-15 16:14:06.014 +05:30 [Debug] Connection id ""0HLA3IO8M1OVA"" disconnecting. +2017-12-15 16:14:06.019 +05:30 [Debug] Connection id ""0HLA3IO8M1OVB"" disconnecting. +2017-12-15 16:14:06.016 +05:30 [Debug] Connection id ""0HLA3IO8M1OV9"" disconnecting. +2017-12-15 16:14:06.019 +05:30 [Debug] Connection id ""0HLA3IO8M1OVA"" sending FIN. +2017-12-15 16:14:06.019 +05:30 [Debug] Connection id ""0HLA3IO8M1OVD"" disconnecting. +2017-12-15 16:14:06.021 +05:30 [Debug] Connection id ""0HLA3IO8M1OVB"" sending FIN. +2017-12-15 16:14:06.019 +05:30 [Debug] Connection id ""0HLA3IO8M1OVC"" sending FIN. +2017-12-15 16:14:06.021 +05:30 [Debug] Connection id ""0HLA3IO8M1OVB"" sent FIN with status "0". +2017-12-15 16:14:06.022 +05:30 [Debug] Connection id ""0HLA3IO8M1OV9"" sending FIN. +2017-12-15 16:14:06.023 +05:30 [Debug] Connection id ""0HLA3IO8M1OVD"" sending FIN. +2017-12-15 16:14:06.022 +05:30 [Debug] Connection id ""0HLA3IO8M1OVB"" stopped. +2017-12-15 16:14:06.023 +05:30 [Debug] Connection id ""0HLA3IO8M1OVD"" sent FIN with status "0". +2017-12-15 16:14:06.024 +05:30 [Debug] Connection id ""0HLA3IO8M1OVA"" sent FIN with status "0". +2017-12-15 16:14:06.024 +05:30 [Debug] Connection id ""0HLA3IO8M1OVA"" stopped. +2017-12-15 16:14:06.024 +05:30 [Debug] Connection id ""0HLA3IO8M1OVD"" stopped. +2017-12-15 16:14:06.025 +05:30 [Debug] Connection id ""0HLA3IO8M1OV9"" sent FIN with status "0". +2017-12-15 16:14:06.025 +05:30 [Debug] Connection id ""0HLA3IO8M1OV9"" stopped. +2017-12-15 16:14:06.026 +05:30 [Debug] Connection id ""0HLA3IO8M1OVC"" sent FIN with status "0". +2017-12-15 16:14:06.026 +05:30 [Debug] Connection id ""0HLA3IO8M1OVC"" stopped. +2017-12-15 16:26:40.064 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" started. +2017-12-15 16:26:40.066 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:26:40.067 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:26:40.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:26:43.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:26:45.061 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:26:45.061 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:26:45.063 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:26:45.064 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4995.5398ms +2017-12-15 16:26:45.068 +05:30 [Information] Request finished in 5000.9187ms 200 application/json; charset=utf-8 +2017-12-15 16:26:45.069 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" completed keep alive response. +2017-12-15 16:26:45.146 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:26:45.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:26:45.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:26:48.214 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:26:48.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:26:48.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:26:48.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:26:48.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3589.2923ms +2017-12-15 16:26:48.739 +05:30 [Information] Request finished in 3595.2708ms 200 application/json; charset=utf-8 +2017-12-15 16:26:48.739 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" completed keep alive response. +2017-12-15 16:26:51.288 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:26:51.289 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:26:51.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:26:52.772 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" started. +2017-12-15 16:26:52.780 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:26:52.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:26:52.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:26:54.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:26:55.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:26:55.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:26:55.131 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:26:55.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3841.5593ms +2017-12-15 16:26:55.146 +05:30 [Information] Request finished in 3883.0932ms 200 application/json; charset=utf-8 +2017-12-15 16:26:55.147 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" completed keep alive response. +2017-12-15 16:26:55.437 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:26:55.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:26:55.438 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:26:56.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:26:56.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:26:56.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:26:56.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:26:56.640 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3845.5555ms +2017-12-15 16:26:56.647 +05:30 [Information] Request finished in 3868.357ms 200 application/json; charset=utf-8 +2017-12-15 16:26:56.647 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" completed keep alive response. +2017-12-15 16:26:58.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:26:59.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:26:59.247 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:26:59.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:26:59.253 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3811.098ms +2017-12-15 16:26:59.257 +05:30 [Information] Request finished in 3828.97ms 200 application/json; charset=utf-8 +2017-12-15 16:26:59.258 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" completed keep alive response. +2017-12-15 16:27:00.625 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:27:00.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:27:00.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:27:00.712 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:27:00.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:27:00.713 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:27:03.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:27:03.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:27:04.195 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:04.196 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:04.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:04.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3568.9971ms +2017-12-15 16:27:04.200 +05:30 [Information] Request finished in 3575.7127ms 200 application/json; charset=utf-8 +2017-12-15 16:27:04.201 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" completed keep alive response. +2017-12-15 16:27:05.746 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:05.746 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:05.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:05.748 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5033.28ms +2017-12-15 16:27:05.750 +05:30 [Information] Request finished in 5041.9512ms 200 application/json; charset=utf-8 +2017-12-15 16:27:05.750 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" completed keep alive response. +2017-12-15 16:27:05.755 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 16:27:05.755 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 16:27:05.755 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 16:27:08.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 16:27:10.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:10.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:10.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:10.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4683.7911ms +2017-12-15 16:27:10.442 +05:30 [Information] Request finished in 4687.0275ms 200 application/json; charset=utf-8 +2017-12-15 16:27:10.443 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" completed keep alive response. +2017-12-15 16:27:10.463 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:27:10.463 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:27:10.464 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:27:13.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:27:14.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:14.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:14.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:14.043 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3579.1086ms +2017-12-15 16:27:14.046 +05:30 [Information] Request finished in 3582.6522ms 200 application/json; charset=utf-8 +2017-12-15 16:27:14.046 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" completed keep alive response. +2017-12-15 16:27:14.051 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 16:27:14.051 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 16:27:14.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 16:27:17.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 16:27:18.664 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:18.664 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:18.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:18.668 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4615.1003ms +2017-12-15 16:27:18.672 +05:30 [Information] Request finished in 4620.4123ms 200 application/json; charset=utf-8 +2017-12-15 16:27:18.672 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" completed keep alive response. +2017-12-15 16:27:20.185 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" started. +2017-12-15 16:27:20.206 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 16:27:20.206 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 16:27:20.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 16:27:20.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 16:27:20.207 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 16:27:20.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 16:27:20.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 16:27:20.209 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 16:27:20.209 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" started. +2017-12-15 16:27:20.209 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 16:27:20.216 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 16:27:20.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 16:27:20.220 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 16:27:20.270 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" started. +2017-12-15 16:27:20.271 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" started. +2017-12-15 16:27:20.271 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 16:27:20.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 16:27:20.272 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 16:27:20.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 16:27:20.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 16:27:20.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 16:27:22.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:27:23.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:27:23.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:27:23.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:27:23.396 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:27:23.410 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:27:23.852 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:23.852 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:27:23.852 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:23.853 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:23.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3646.0232ms +2017-12-15 16:27:23.856 +05:30 [Information] Request finished in 3691.7293ms 200 application/json; charset=utf-8 +2017-12-15 16:27:23.856 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" completed keep alive response. +2017-12-15 16:27:23.859 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 16:27:23.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 16:27:23.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 16:27:25.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:25.679 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:27:25.679 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:25.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:25.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5460.724ms +2017-12-15 16:27:25.684 +05:30 [Information] Request finished in 5472.1109ms 200 application/json; charset=utf-8 +2017-12-15 16:27:25.684 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" completed keep alive response. +2017-12-15 16:27:26.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:26.012 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:27:26.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:26.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:26.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5723.7874ms +2017-12-15 16:27:26.020 +05:30 [Information] Request finished in 5747.4962ms 200 application/json; charset=utf-8 +2017-12-15 16:27:26.020 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" completed keep alive response. +2017-12-15 16:27:26.044 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:26.045 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:27:26.045 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:26.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:26.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5836.7505ms +2017-12-15 16:27:26.053 +05:30 [Information] Request finished in 5845.9666ms 200 application/json; charset=utf-8 +2017-12-15 16:27:26.054 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" completed keep alive response. +2017-12-15 16:27:26.104 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:26.105 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:27:26.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:26.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:26.107 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5815.5168ms +2017-12-15 16:27:26.109 +05:30 [Information] Request finished in 5838.225ms 200 application/json; charset=utf-8 +2017-12-15 16:27:26.110 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" completed keep alive response. +2017-12-15 16:27:27.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:27:29.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:29.519 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:27:29.519 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:29.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:29.523 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5660.7031ms +2017-12-15 16:27:29.527 +05:30 [Information] Request finished in 5667.2116ms 200 application/json; charset=utf-8 +2017-12-15 16:27:29.528 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" completed keep alive response. +2017-12-15 16:27:30.673 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:27:30.674 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:27:31.301 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:27:31.302 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:27:42.911 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:27:42.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:27:42.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:27:43.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:43.248 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:27:43.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:43.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:43.253 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23043.477ms +2017-12-15 16:27:43.256 +05:30 [Information] Request finished in 23091.2245ms 200 application/json; charset=utf-8 +2017-12-15 16:27:43.257 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" completed keep alive response. +2017-12-15 16:27:45.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:27:46.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:46.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:46.493 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:46.494 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3581.5267ms +2017-12-15 16:27:46.497 +05:30 [Information] Request finished in 3586.4462ms 200 application/json; charset=utf-8 +2017-12-15 16:27:46.498 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" completed keep alive response. +2017-12-15 16:27:47.455 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:27:47.456 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:27:47.456 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:27:50.480 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:27:51.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:51.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:51.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:51.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3548.7399ms +2017-12-15 16:27:51.009 +05:30 [Information] Request finished in 3553.521ms 200 application/json; charset=utf-8 +2017-12-15 16:27:51.009 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" completed keep alive response. +2017-12-15 16:27:51.075 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:27:51.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:27:51.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:27:54.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:27:54.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:54.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:54.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:54.703 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.9657ms +2017-12-15 16:27:54.706 +05:30 [Information] Request finished in 3631.5082ms 200 application/json; charset=utf-8 +2017-12-15 16:27:54.707 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" completed keep alive response. +2017-12-15 16:27:54.717 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-15 16:27:54.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 16:27:54.718 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 16:27:57.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-15 16:27:59.495 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:27:59.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:27:59.497 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:27:59.500 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4780.2456ms +2017-12-15 16:27:59.504 +05:30 [Information] Request finished in 4787.3164ms 200 application/json; charset=utf-8 +2017-12-15 16:27:59.505 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" completed keep alive response. +2017-12-15 16:28:00.375 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 16:28:00.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 16:28:00.376 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 16:28:00.377 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 16:28:00.378 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 16:28:00.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 16:28:00.382 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 16:28:00.382 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 16:28:00.382 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 16:28:00.381 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 16:28:00.385 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 16:28:00.387 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 16:28:00.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 16:28:00.538 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 16:28:00.539 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 16:28:00.539 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 16:28:00.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 16:28:00.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 16:28:02.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:28:03.449 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:28:03.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:28:03.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:28:03.620 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:28:03.622 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:28:04.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:28:04.151 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:28:04.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:28:04.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:28:04.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3784.6032ms +2017-12-15 16:28:04.190 +05:30 [Information] Request finished in 3812.9867ms 200 application/json; charset=utf-8 +2017-12-15 16:28:04.190 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" completed keep alive response. +2017-12-15 16:28:04.223 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 16:28:04.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 16:28:04.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 16:28:04.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:28:04.325 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:28:04.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:28:04.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:28:04.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3951.2659ms +2017-12-15 16:28:04.349 +05:30 [Information] Request finished in 3974.6568ms 200 application/json; charset=utf-8 +2017-12-15 16:28:04.350 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" completed keep alive response. +2017-12-15 16:28:04.664 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:28:04.665 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:28:04.665 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:28:04.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:28:04.667 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4290.6448ms +2017-12-15 16:28:04.669 +05:30 [Information] Request finished in 4296.503ms 200 application/json; charset=utf-8 +2017-12-15 16:28:04.669 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" completed keep alive response. +2017-12-15 16:28:04.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:28:04.677 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:28:04.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:28:04.679 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:28:04.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4137.4288ms +2017-12-15 16:28:04.684 +05:30 [Information] Request finished in 4145.2162ms 200 application/json; charset=utf-8 +2017-12-15 16:28:04.684 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" completed keep alive response. +2017-12-15 16:28:04.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:28:04.749 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:28:04.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:28:04.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:28:04.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4211.0653ms +2017-12-15 16:28:04.754 +05:30 [Information] Request finished in 4238.7018ms 200 application/json; charset=utf-8 +2017-12-15 16:28:04.754 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" completed keep alive response. +2017-12-15 16:28:07.260 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:28:09.771 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:28:09.771 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:28:09.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:28:09.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:28:09.774 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5550.0035ms +2017-12-15 16:28:09.786 +05:30 [Information] Request finished in 5572.3128ms 200 application/json; charset=utf-8 +2017-12-15 16:28:09.787 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" completed keep alive response. +2017-12-15 16:28:10.870 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:28:10.871 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:28:11.440 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:28:11.442 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:28:22.505 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:28:22.506 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:28:22.506 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:28:22.507 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:28:22.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 22120.7439ms +2017-12-15 16:28:22.513 +05:30 [Information] Request finished in 22137.4481ms 200 application/json; charset=utf-8 +2017-12-15 16:28:22.514 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" completed keep alive response. +2017-12-15 16:28:59.849 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:28:59.850 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 16:28:59.850 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 16:29:02.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:29:04.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:29:04.570 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:29:04.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:29:04.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:29:04.572 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4720.9992ms +2017-12-15 16:29:04.575 +05:30 [Information] Request finished in 4725.5384ms 200 application/json; charset=utf-8 +2017-12-15 16:29:04.575 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" completed keep alive response. +2017-12-15 16:29:04.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 16:29:04.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 16:29:04.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 16:29:04.615 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 16:29:04.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 16:29:04.615 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 16:29:04.617 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 16:29:04.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 16:29:04.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 16:29:04.620 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:29:04.621 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 16:29:04.621 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 16:29:07.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:29:07.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:29:07.738 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 16:29:07.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:29:10.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:29:10.242 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:29:10.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:29:10.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:29:10.247 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5622.9934ms +2017-12-15 16:29:10.250 +05:30 [Information] Request finished in 5652.6726ms 200 application/json; charset=utf-8 +2017-12-15 16:29:10.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:29:10.251 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" completed keep alive response. +2017-12-15 16:29:10.252 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 16:29:10.252 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 16:29:10.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:29:10.633 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:29:10.633 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:29:10.633 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:29:10.634 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:29:10.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:29:10.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:29:10.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:29:10.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 6020.491ms +2017-12-15 16:29:10.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 6036.4212ms +2017-12-15 16:29:10.643 +05:30 [Information] Request finished in 6041.2841ms 200 application/json; charset=utf-8 +2017-12-15 16:29:10.644 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" completed keep alive response. +2017-12-15 16:29:10.645 +05:30 [Information] Request finished in 6048.1331ms 200 application/json; charset=utf-8 +2017-12-15 16:29:10.646 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" completed keep alive response. +2017-12-15 16:29:12.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:29:12.514 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:29:12.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:29:12.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:29:12.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 7896.169ms +2017-12-15 16:29:12.520 +05:30 [Information] Request finished in 7915.6499ms 200 application/json; charset=utf-8 +2017-12-15 16:29:12.520 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" completed keep alive response. +2017-12-15 16:29:13.314 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:29:13.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:29:13.893 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:29:13.893 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:29:13.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:29:13.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3645.6133ms +2017-12-15 16:29:13.927 +05:30 [Information] Request finished in 3669.9252ms 200 application/json; charset=utf-8 +2017-12-15 16:29:13.928 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" completed keep alive response. +2017-12-15 16:30:19.318 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" received FIN. +2017-12-15 16:30:19.318 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" received FIN. +2017-12-15 16:30:19.319 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" received FIN. +2017-12-15 16:30:19.319 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" received FIN. +2017-12-15 16:30:19.319 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" received FIN. +2017-12-15 16:30:19.319 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" received FIN. +2017-12-15 16:30:19.319 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" disconnecting. +2017-12-15 16:30:19.320 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" disconnecting. +2017-12-15 16:30:19.320 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" sending FIN. +2017-12-15 16:30:19.320 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" disconnecting. +2017-12-15 16:30:19.320 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" sent FIN with status "0". +2017-12-15 16:30:19.320 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" disconnecting. +2017-12-15 16:30:19.321 +05:30 [Debug] Connection id ""0HLA3IO8M1OVH"" stopped. +2017-12-15 16:30:19.321 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" sending FIN. +2017-12-15 16:30:19.321 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" disconnecting. +2017-12-15 16:30:19.321 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" sent FIN with status "0". +2017-12-15 16:30:19.321 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" disconnecting. +2017-12-15 16:30:19.322 +05:30 [Debug] Connection id ""0HLA3IO8M1OVF"" stopped. +2017-12-15 16:30:19.322 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" sending FIN. +2017-12-15 16:30:19.322 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" sent FIN with status "0". +2017-12-15 16:30:19.323 +05:30 [Debug] Connection id ""0HLA3IO8M1OVJ"" stopped. +2017-12-15 16:30:19.319 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" started. +2017-12-15 16:30:19.324 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" sending FIN. +2017-12-15 16:30:19.325 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" sending FIN. +2017-12-15 16:30:19.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=48 +2017-12-15 16:30:19.326 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" sending FIN. +2017-12-15 16:30:19.326 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-12-15 16:30:19.326 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" sent FIN with status "0". +2017-12-15 16:30:19.331 +05:30 [Debug] Connection id ""0HLA3IO8M1OVE"" stopped. +2017-12-15 16:30:19.332 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" sent FIN with status "0". +2017-12-15 16:30:19.339 +05:30 [Debug] Connection id ""0HLA3IO8M1OVG"" stopped. +2017-12-15 16:30:19.340 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" sent FIN with status "0". +2017-12-15 16:30:19.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-12-15 16:30:19.341 +05:30 [Debug] Connection id ""0HLA3IO8M1OVI"" stopped. +2017-12-15 16:30:22.399 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:30:23.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:23.558 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:23.559 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:23.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4218.044ms +2017-12-15 16:30:23.563 +05:30 [Information] Request finished in 4237.5315ms 200 application/json; charset=utf-8 +2017-12-15 16:30:23.563 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" completed keep alive response. +2017-12-15 16:30:23.568 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=48 +2017-12-15 16:30:23.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-12-15 16:30:23.570 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-12-15 16:30:26.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:30:27.207 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:27.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:27.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:27.209 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3638.5917ms +2017-12-15 16:30:27.213 +05:30 [Information] Request finished in 3645.7436ms 200 application/json; charset=utf-8 +2017-12-15 16:30:27.214 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" completed keep alive response. +2017-12-15 16:30:28.263 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPages application/x-www-form-urlencoded 203 +2017-12-15 16:30:28.263 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPages"'. +2017-12-15 16:30:28.264 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" +2017-12-15 16:30:31.318 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBACNTJESRVr5nZCNrWm2UqlShJ0KJ9TbVGPAePLN7AK4JYdqcUmgYgmOwntGKIZC9rK7AjP5GzxZBr2NeyROlyx0aZAqVZApY1iifCp1SKBYiW0NAnZAzh1RQBsAgZC5oQUq3d04XHQLZA0D1Jnm2rVAbGgoBNZAV66gZDZD", "48"]) - ModelState is Valid +2017-12-15 16:30:38.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:38.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:38.764 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:38.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" in 10506.3529ms +2017-12-15 16:30:38.774 +05:30 [Information] Request finished in 10511.1969ms 200 application/json; charset=utf-8 +2017-12-15 16:30:38.774 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" completed keep alive response. +2017-12-15 16:30:38.850 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:30:38.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:30:38.853 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:30:41.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:30:42.473 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:42.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:42.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:42.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3622.0479ms +2017-12-15 16:30:42.479 +05:30 [Information] Request finished in 3628.307ms 200 application/json; charset=utf-8 +2017-12-15 16:30:42.479 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" completed keep alive response. +2017-12-15 16:30:42.489 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-15 16:30:42.490 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 16:30:42.490 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 16:30:45.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-15 16:30:47.172 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:47.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:47.173 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:47.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4681.9506ms +2017-12-15 16:30:47.176 +05:30 [Information] Request finished in 4686.5193ms 200 application/json; charset=utf-8 +2017-12-15 16:30:47.177 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" completed keep alive response. +2017-12-15 16:30:48.242 +05:30 [Debug] Connection id ""0HLA3IO8M1OVM"" started. +2017-12-15 16:30:48.242 +05:30 [Debug] Connection id ""0HLA3IO8M1OVL"" started. +2017-12-15 16:30:48.263 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" started. +2017-12-15 16:30:48.263 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 16:30:48.286 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 16:30:48.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 16:30:48.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 16:30:48.310 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 16:30:48.317 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 16:30:48.317 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 16:30:48.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 16:30:48.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 16:30:48.327 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 16:30:48.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 16:30:48.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 16:30:48.362 +05:30 [Debug] Connection id ""0HLA3IO8M1OVO"" started. +2017-12-15 16:30:48.362 +05:30 [Debug] Connection id ""0HLA3IO8M1OVP"" started. +2017-12-15 16:30:48.363 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 16:30:48.363 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 16:30:48.364 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 16:30:48.366 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 16:30:48.367 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 16:30:48.369 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 16:30:51.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:30:51.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:30:51.597 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:30:51.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:30:51.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:30:51.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:30:52.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:52.133 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:30:52.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:52.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:52.155 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3816.2965ms +2017-12-15 16:30:52.169 +05:30 [Information] Request finished in 3898.9746ms 200 application/json; charset=utf-8 +2017-12-15 16:30:52.169 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" completed keep alive response. +2017-12-15 16:30:52.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 16:30:52.211 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 16:30:52.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 16:30:52.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:52.292 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:30:52.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:52.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:52.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3982.9971ms +2017-12-15 16:30:52.307 +05:30 [Information] Request finished in 4063.9295ms 200 application/json; charset=utf-8 +2017-12-15 16:30:52.307 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" completed keep alive response. +2017-12-15 16:30:52.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:52.679 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:30:52.679 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:52.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:52.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4315.016ms +2017-12-15 16:30:52.684 +05:30 [Information] Request finished in 4320.7321ms 200 application/json; charset=utf-8 +2017-12-15 16:30:52.685 +05:30 [Debug] Connection id ""0HLA3IO8M1OVO"" completed keep alive response. +2017-12-15 16:30:52.736 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:52.737 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:30:52.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:52.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:52.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4409.366ms +2017-12-15 16:30:52.742 +05:30 [Information] Request finished in 4478.5755ms 200 application/json; charset=utf-8 +2017-12-15 16:30:52.743 +05:30 [Debug] Connection id ""0HLA3IO8M1OVM"" completed keep alive response. +2017-12-15 16:30:52.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:52.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:30:52.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:52.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:52.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4508.9209ms +2017-12-15 16:30:52.882 +05:30 [Information] Request finished in 4518.7133ms 200 application/json; charset=utf-8 +2017-12-15 16:30:52.883 +05:30 [Debug] Connection id ""0HLA3IO8M1OVP"" completed keep alive response. +2017-12-15 16:30:55.248 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:30:57.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:30:57.714 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:30:57.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:30:57.715 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:30:57.717 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5504.1902ms +2017-12-15 16:30:57.720 +05:30 [Information] Request finished in 5511.2721ms 200 application/json; charset=utf-8 +2017-12-15 16:30:57.721 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" completed keep alive response. +2017-12-15 16:30:59.875 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:30:59.876 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:31:00.510 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:31:00.514 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:31:11.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:31:11.698 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:31:11.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:31:11.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:31:11.704 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 23366.5199ms +2017-12-15 16:31:11.709 +05:30 [Information] Request finished in 23444.0169ms 200 application/json; charset=utf-8 +2017-12-15 16:31:11.710 +05:30 [Debug] Connection id ""0HLA3IO8M1OVL"" completed keep alive response. +2017-12-15 16:31:12.790 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookPages?userId=48&groupId=48 multipart/form-data; boundary=----WebKitFormBoundaryAuJbX9fOxPhsGxnC 327 +2017-12-15 16:31:12.791 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookPages"'. +2017-12-15 16:31:12.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" +2017-12-15 16:31:15.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-15 16:31:16.882 +05:30 [Error] {"id":"135374370505951","name":"TZH","fan_count":0} +2017-12-15 16:31:21.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:31:21.732 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:31:21.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-15 16:31:21.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:31:21.735 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" in 8941.4405ms +2017-12-15 16:31:21.736 +05:30 [Information] Request finished in 8946.6515ms 200 text/plain; charset=utf-8 +2017-12-15 16:31:21.737 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" completed keep alive response. +2017-12-15 16:31:21.780 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:31:21.781 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:31:21.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:31:38.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:31:52.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:31:52.173 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:31:52.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:31:52.509 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 30419.4401ms +2017-12-15 16:31:52.554 +05:30 [Information] Request finished in 30753.963ms 200 application/json; charset=utf-8 +2017-12-15 16:31:52.555 +05:30 [Debug] Connection id ""0HLA3IO8M1OVO"" completed keep alive response. +2017-12-15 16:31:53.430 +05:30 [Debug] Connection id ""0HLA3IO8M1OVM"" received FIN. +2017-12-15 16:31:53.433 +05:30 [Debug] Connection id ""0HLA3IO8M1OVM"" disconnecting. +2017-12-15 16:31:53.883 +05:30 [Debug] Connection id ""0HLA3IO8M1OVP"" received FIN. +2017-12-15 16:31:53.885 +05:30 [Debug] Connection id ""0HLA3IO8M1OVM"" sending FIN. +2017-12-15 16:31:53.886 +05:30 [Debug] Connection id ""0HLA3IO8M1OVM"" sent FIN with status "0". +2017-12-15 16:31:53.886 +05:30 [Debug] Connection id ""0HLA3IO8M1OVM"" stopped. +2017-12-15 16:31:53.909 +05:30 [Debug] Connection id ""0HLA3IO8M1OVP"" disconnecting. +2017-12-15 16:31:53.910 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-15 16:31:54.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 16:31:54.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 16:31:55.019 +05:30 [Debug] Connection id ""0HLA3IO8M1OVP"" sending FIN. +2017-12-15 16:31:55.019 +05:30 [Debug] Connection id ""0HLA3IO8M1OVP"" sent FIN with status "0". +2017-12-15 16:31:55.026 +05:30 [Debug] Connection id ""0HLA3IO8M1OVP"" stopped. +2017-12-15 16:32:08.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-15 16:32:10.587 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:32:10.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:32:10.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:32:10.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 16054.6742ms +2017-12-15 16:32:10.599 +05:30 [Information] Request finished in 16710.2374ms 200 application/json; charset=utf-8 +2017-12-15 16:32:10.599 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" completed keep alive response. +2017-12-15 16:32:11.390 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 16:32:11.391 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 16:32:11.392 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 16:32:11.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 16:32:11.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 16:32:11.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 16:32:11.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 16:32:11.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 16:32:11.398 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 16:32:11.399 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 16:32:11.402 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 16:32:11.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 16:32:11.511 +05:30 [Debug] Connection id ""0HLA3IO8M1OVQ"" started. +2017-12-15 16:32:11.511 +05:30 [Debug] Connection id ""0HLA3IO8M1OVR"" started. +2017-12-15 16:32:12.095 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 16:32:12.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 16:32:12.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 16:32:13.097 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 16:32:13.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 16:32:13.099 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 16:32:16.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:32:16.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:32:16.332 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:32:16.332 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:32:16.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:32:16.362 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:32:16.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:32:16.897 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:32:16.898 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:32:16.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:32:16.902 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5504.5724ms +2017-12-15 16:32:16.906 +05:30 [Information] Request finished in 5514.2479ms 200 application/json; charset=utf-8 +2017-12-15 16:32:16.906 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" completed keep alive response. +2017-12-15 16:32:16.922 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 16:32:16.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 16:32:16.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 16:32:16.983 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:32:16.983 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:32:16.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:32:16.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:32:16.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5582.0688ms +2017-12-15 16:32:16.988 +05:30 [Information] Request finished in 5598.8735ms 200 application/json; charset=utf-8 +2017-12-15 16:32:16.989 +05:30 [Debug] Connection id ""0HLA3IO8M1OVO"" completed keep alive response. +2017-12-15 16:32:17.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:32:17.428 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:32:17.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:32:17.429 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:32:17.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6036.9032ms +2017-12-15 16:32:17.433 +05:30 [Information] Request finished in 6043.6692ms 200 application/json; charset=utf-8 +2017-12-15 16:32:17.434 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" completed keep alive response. +2017-12-15 16:32:17.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:32:17.463 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:32:17.463 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:32:17.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:32:17.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5368.2065ms +2017-12-15 16:32:17.467 +05:30 [Information] Request finished in 5372.9111ms 200 application/json; charset=utf-8 +2017-12-15 16:32:17.468 +05:30 [Debug] Connection id ""0HLA3IO8M1OVQ"" completed keep alive response. +2017-12-15 16:32:17.560 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:32:17.560 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:32:17.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:32:17.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:32:17.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4462.5651ms +2017-12-15 16:32:17.565 +05:30 [Information] Request finished in 4468.9788ms 200 application/json; charset=utf-8 +2017-12-15 16:32:17.566 +05:30 [Debug] Connection id ""0HLA3IO8M1OVR"" completed keep alive response. +2017-12-15 16:32:19.980 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:32:22.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:32:22.411 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:32:22.411 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:32:22.412 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:32:22.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5490.0213ms +2017-12-15 16:32:22.420 +05:30 [Information] Request finished in 5496.4641ms 200 application/json; charset=utf-8 +2017-12-15 16:32:22.421 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" completed keep alive response. +2017-12-15 16:32:24.834 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:32:24.836 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:32:25.458 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:32:25.459 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:32:36.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:32:36.539 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:32:36.540 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:32:36.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:32:36.546 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25144.3979ms +2017-12-15 16:32:36.550 +05:30 [Information] Request finished in 25159.0246ms 200 application/json; charset=utf-8 +2017-12-15 16:32:36.551 +05:30 [Debug] Connection id ""0HLA3IO8M1OVL"" completed keep alive response. +2017-12-15 16:34:16.227 +05:30 [Debug] Connection id ""0HLA3IO8M1OVO"" received FIN. +2017-12-15 16:34:16.227 +05:30 [Debug] Connection id ""0HLA3IO8M1OVR"" received FIN. +2017-12-15 16:34:16.227 +05:30 [Debug] Connection id ""0HLA3IO8M1OVO"" disconnecting. +2017-12-15 16:34:16.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" received FIN. +2017-12-15 16:34:16.228 +05:30 [Debug] Connection id ""0HLA3IO8M1OVR"" disconnecting. +2017-12-15 16:34:16.230 +05:30 [Debug] Connection id ""0HLA3IO8M1OVR"" sending FIN. +2017-12-15 16:34:16.227 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" received FIN. +2017-12-15 16:34:16.230 +05:30 [Debug] Connection id ""0HLA3IO8M1OVR"" sent FIN with status "0". +2017-12-15 16:34:16.230 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" disconnecting. +2017-12-15 16:34:16.229 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" disconnecting. +2017-12-15 16:34:16.230 +05:30 [Debug] Connection id ""0HLA3IO8M1OVQ"" received FIN. +2017-12-15 16:34:16.231 +05:30 [Debug] Connection id ""0HLA3IO8M1OVR"" stopped. +2017-12-15 16:34:16.232 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" sending FIN. +2017-12-15 16:34:16.231 +05:30 [Debug] Connection id ""0HLA3IO8M1OVQ"" disconnecting. +2017-12-15 16:34:16.232 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" sent FIN with status "0". +2017-12-15 16:34:16.231 +05:30 [Debug] Connection id ""0HLA3IO8M1OVL"" received FIN. +2017-12-15 16:34:16.233 +05:30 [Debug] Connection id ""0HLA3IO8M1OVN"" stopped. +2017-12-15 16:34:16.233 +05:30 [Debug] Connection id ""0HLA3IO8M1OVO"" sending FIN. +2017-12-15 16:34:16.234 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" sending FIN. +2017-12-15 16:34:16.233 +05:30 [Debug] Connection id ""0HLA3IO8M1OVL"" disconnecting. +2017-12-15 16:34:16.234 +05:30 [Debug] Connection id ""0HLA3IO8M1OVQ"" sending FIN. +2017-12-15 16:34:16.235 +05:30 [Debug] Connection id ""0HLA3IO8M1OVL"" sending FIN. +2017-12-15 16:34:16.235 +05:30 [Debug] Connection id ""0HLA3IO8M1OVL"" sent FIN with status "0". +2017-12-15 16:34:16.235 +05:30 [Debug] Connection id ""0HLA3IO8M1OVL"" stopped. +2017-12-15 16:34:16.236 +05:30 [Debug] Connection id ""0HLA3IO8M1OVQ"" sent FIN with status "0". +2017-12-15 16:34:16.236 +05:30 [Debug] Connection id ""0HLA3IO8M1OVQ"" stopped. +2017-12-15 16:34:16.237 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" sent FIN with status "0". +2017-12-15 16:34:16.237 +05:30 [Debug] Connection id ""0HLA3IO8M1OVK"" stopped. +2017-12-15 16:34:16.237 +05:30 [Debug] Connection id ""0HLA3IO8M1OVO"" sent FIN with status "0". +2017-12-15 16:34:16.238 +05:30 [Debug] Connection id ""0HLA3IO8M1OVO"" stopped. +2017-12-15 16:38:20.634 +05:30 [Debug] Connection id ""0HLA3IO8M1OVS"" started. +2017-12-15 16:38:20.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:38:20.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 16:38:20.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 16:38:23.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:38:23.916 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:38:23.917 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:38:23.917 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:38:23.918 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:38:23.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3280.5153ms +2017-12-15 16:38:23.921 +05:30 [Information] Request finished in 3284.755ms 200 application/json; charset=utf-8 +2017-12-15 16:38:23.921 +05:30 [Debug] Connection id ""0HLA3IO8M1OVS"" completed keep alive response. +2017-12-15 16:38:23.952 +05:30 [Debug] Connection id ""0HLA3IO8M1OVT"" started. +2017-12-15 16:38:23.953 +05:30 [Debug] Connection id ""0HLA3IO8M1OVU"" started. +2017-12-15 16:38:23.956 +05:30 [Debug] Connection id ""0HLA3IO8M1OVV"" started. +2017-12-15 16:38:23.957 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 16:38:23.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 16:38:23.959 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 16:38:23.959 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 16:38:23.959 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 16:38:23.966 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 16:38:23.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 16:38:23.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 16:38:23.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:38:23.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 16:38:23.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 16:38:23.974 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 16:39:06.956 +05:30 [Debug] Hosting starting +2017-12-15 16:39:07.431 +05:30 [Debug] Hosting started +2017-12-15 16:39:07.678 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" started. +2017-12-15 16:39:07.679 +05:30 [Debug] Connection id ""0HLA3LH1CEDH8"" started. +2017-12-15 16:39:07.976 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-15 16:39:07.976 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-15 16:39:08.058 +05:30 [Information] Request finished in 138.3423ms 200 +2017-12-15 16:39:08.112 +05:30 [Debug] Connection id ""0HLA3LH1CEDH8"" completed keep alive response. +2017-12-15 16:39:09.544 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:39:10.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:39:10.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-15 16:39:10.246 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"11da2742-3eaf-4588-87ef-48d782e0edba"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-15 16:39:10.373 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-15 16:39:10.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:39:10.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-15 16:39:10.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-15 16:39:10.681 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:39:10.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:39:10.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:39:11.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 952.3942ms +2017-12-15 16:39:11.424 +05:30 [Information] Request finished in 3521.6464ms 200 application/json; charset=utf-8 +2017-12-15 16:39:11.428 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" completed keep alive response. +2017-12-15 16:39:11.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-15 16:39:11.867 +05:30 [Debug] Request did not match any routes. +2017-12-15 16:39:11.890 +05:30 [Debug] The request path "" does not match the path filter +2017-12-15 16:39:11.892 +05:30 [Information] Request finished in 30.7285ms 404 +2017-12-15 16:39:11.893 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" completed keep alive response. +2017-12-15 16:39:14.366 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:39:22.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:39:22.308 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:39:22.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:39:22.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11906.0649ms +2017-12-15 16:39:22.319 +05:30 [Information] Request finished in 12775.9587ms 200 application/json; charset=utf-8 +2017-12-15 16:39:22.320 +05:30 [Debug] Connection id ""0HLA3LH1CEDH8"" completed keep alive response. +2017-12-15 16:39:32.877 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:39:32.878 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:39:32.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:39:35.927 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:39:36.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:39:36.508 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:39:36.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:39:36.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.3739ms +2017-12-15 16:39:36.512 +05:30 [Information] Request finished in 3635.5755ms 200 application/json; charset=utf-8 +2017-12-15 16:39:36.512 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" completed keep alive response. +2017-12-15 16:39:36.544 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:39:36.545 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:39:36.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:39:39.593 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:39:40.185 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:39:40.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:39:40.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:39:40.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3640.1971ms +2017-12-15 16:39:40.191 +05:30 [Information] Request finished in 3646.1355ms 200 application/json; charset=utf-8 +2017-12-15 16:39:40.191 +05:30 [Debug] Connection id ""0HLA3LH1CEDH8"" completed keep alive response. +2017-12-15 16:39:40.229 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:39:40.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:39:40.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:39:40.555 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:39:40.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:39:40.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:39:43.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:39:43.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:39:44.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:39:44.185 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:39:44.185 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:39:44.186 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3955.0248ms +2017-12-15 16:39:44.188 +05:30 [Information] Request finished in 3960.4976ms 200 application/json; charset=utf-8 +2017-12-15 16:39:44.188 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" completed keep alive response. +2017-12-15 16:39:45.879 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:39:45.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:39:45.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:39:45.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5324.1031ms +2017-12-15 16:39:45.883 +05:30 [Information] Request finished in 5331.0215ms 200 application/json; charset=utf-8 +2017-12-15 16:39:45.885 +05:30 [Debug] Connection id ""0HLA3LH1CEDH8"" completed keep alive response. +2017-12-15 16:39:49.166 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:39:49.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:39:49.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:39:52.199 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:39:52.778 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:39:52.779 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:39:52.780 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:39:52.781 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3613.6977ms +2017-12-15 16:39:52.783 +05:30 [Information] Request finished in 3617.8291ms 200 application/json; charset=utf-8 +2017-12-15 16:39:52.783 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" completed keep alive response. +2017-12-15 16:39:52.799 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 16:39:52.800 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 16:39:52.802 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 16:39:55.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 16:39:59.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:39:59.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:39:59.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:39:59.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 6517.0886ms +2017-12-15 16:39:59.325 +05:30 [Information] Request finished in 6525.9682ms 200 application/json; charset=utf-8 +2017-12-15 16:39:59.325 +05:30 [Debug] Connection id ""0HLA3LH1CEDH8"" completed keep alive response. +2017-12-15 16:39:59.804 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:39:59.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:39:59.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:40:02.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:40:03.481 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:03.482 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:03.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:03.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3677.3956ms +2017-12-15 16:40:03.485 +05:30 [Information] Request finished in 3680.5483ms 200 application/json; charset=utf-8 +2017-12-15 16:40:03.485 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" completed keep alive response. +2017-12-15 16:40:03.522 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 16:40:03.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 16:40:03.526 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 16:40:06.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 16:40:08.687 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:08.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:08.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:08.723 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5196.5316ms +2017-12-15 16:40:08.725 +05:30 [Information] Request finished in 5203.6263ms 200 application/json; charset=utf-8 +2017-12-15 16:40:08.726 +05:30 [Debug] Connection id ""0HLA3LH1CEDH8"" completed keep alive response. +2017-12-15 16:40:10.716 +05:30 [Debug] Connection id ""0HLA3LH1CEDH9"" started. +2017-12-15 16:40:10.716 +05:30 [Debug] Connection id ""0HLA3LH1CEDHA"" started. +2017-12-15 16:40:10.717 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 16:40:10.717 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 16:40:10.717 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 16:40:10.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 16:40:10.718 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 16:40:10.719 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 16:40:10.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 16:40:10.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 16:40:10.741 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 16:40:10.743 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 16:40:10.745 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 16:40:10.745 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 16:40:10.825 +05:30 [Debug] Connection id ""0HLA3LH1CEDHC"" started. +2017-12-15 16:40:10.825 +05:30 [Debug] Connection id ""0HLA3LH1CEDHB"" started. +2017-12-15 16:40:11.544 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 16:40:11.545 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 16:40:11.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 16:40:12.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 16:40:12.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 16:40:12.555 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 16:40:15.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:40:15.736 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:40:15.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:40:15.765 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:40:15.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:40:15.800 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:40:16.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:16.347 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:16.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:16.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:16.372 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5651.576ms +2017-12-15 16:40:16.396 +05:30 [Information] Request finished in 5677.7013ms 200 application/json; charset=utf-8 +2017-12-15 16:40:16.397 +05:30 [Debug] Connection id ""0HLA3LH1CEDHA"" completed keep alive response. +2017-12-15 16:40:16.419 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 16:40:16.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 16:40:16.421 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 16:40:17.011 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:17.011 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:17.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:17.013 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:17.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6269.7454ms +2017-12-15 16:40:17.023 +05:30 [Information] Request finished in 6304.4209ms 200 application/json; charset=utf-8 +2017-12-15 16:40:17.023 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" completed keep alive response. +2017-12-15 16:40:18.073 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:18.073 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:18.074 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:18.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:18.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7369.2089ms +2017-12-15 16:40:18.092 +05:30 [Information] Request finished in 7375.2201ms 200 application/json; charset=utf-8 +2017-12-15 16:40:18.093 +05:30 [Debug] Connection id ""0HLA3LH1CEDH9"" completed keep alive response. +2017-12-15 16:40:18.310 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:40:18.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 16:40:18.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 16:40:18.376 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:18.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:18.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:18.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:18.378 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6831.204ms +2017-12-15 16:40:18.383 +05:30 [Information] Request finished in 6837.6008ms 200 application/json; charset=utf-8 +2017-12-15 16:40:18.383 +05:30 [Debug] Connection id ""0HLA3LH1CEDHC"" completed keep alive response. +2017-12-15 16:40:18.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:18.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:18.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:18.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:18.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6005.9959ms +2017-12-15 16:40:18.568 +05:30 [Information] Request finished in 6013.9748ms 200 application/json; charset=utf-8 +2017-12-15 16:40:18.569 +05:30 [Debug] Connection id ""0HLA3LH1CEDHB"" completed keep alive response. +2017-12-15 16:40:19.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:40:21.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:40:22.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:22.142 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:22.143 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:22.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:22.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5817.3396ms +2017-12-15 16:40:22.243 +05:30 [Information] Request finished in 5842.3409ms 200 application/json; charset=utf-8 +2017-12-15 16:40:22.243 +05:30 [Debug] Connection id ""0HLA3LH1CEDHA"" completed keep alive response. +2017-12-15 16:40:25.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:25.515 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:25.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:25.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:25.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7248.4227ms +2017-12-15 16:40:25.563 +05:30 [Information] Request finished in 7253.5602ms 200 application/json; charset=utf-8 +2017-12-15 16:40:25.563 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" completed keep alive response. +2017-12-15 16:40:25.593 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 16:40:25.594 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 16:40:25.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 16:40:25.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 16:40:25.596 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 16:40:25.596 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 16:40:25.619 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:40:25.619 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 16:40:25.622 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 16:40:25.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 16:40:25.625 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 16:40:25.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 16:40:25.806 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:40:25.877 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:40:26.513 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:40:26.514 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:40:27.774 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:40:27.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:40:28.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:40:28.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 16:40:30.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:30.423 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:30.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:30.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:30.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4799.9483ms +2017-12-15 16:40:30.432 +05:30 [Information] Request finished in 4835.2991ms 200 application/json; charset=utf-8 +2017-12-15 16:40:30.433 +05:30 [Debug] Connection id ""0HLA3LH1CEDHA"" completed keep alive response. +2017-12-15 16:40:30.792 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:30.792 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:30.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:30.794 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:30.840 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5209.9034ms +2017-12-15 16:40:30.849 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 16:40:30.850 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 16:40:30.853 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 16:40:30.854 +05:30 [Information] Request finished in 5261.4073ms 200 application/json; charset=utf-8 +2017-12-15 16:40:30.856 +05:30 [Debug] Connection id ""0HLA3LH1CEDHB"" completed keep alive response. +2017-12-15 16:40:31.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:31.224 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:31.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:31.226 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:31.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5618.6915ms +2017-12-15 16:40:31.239 +05:30 [Information] Request finished in 5647.7266ms 200 application/json; charset=utf-8 +2017-12-15 16:40:31.239 +05:30 [Debug] Connection id ""0HLA3LH1CEDHC"" completed keep alive response. +2017-12-15 16:40:39.499 +05:30 [Error] An unhandled exception has occurred while executing the request +System.FormatException: String was not recognized as a valid Boolean. + at System.Boolean.Parse(String value) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.<>c.b__5_8(FacebookPagePost t) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 210 + at System.Linq.Enumerable.Count[TSource](IEnumerable`1 source, Func`2 predicate) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.getfbPagePostAllDetails(String[] profileId, Int32 daysCount, Cache _redisCache, AppSettings _appSettings) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 210 + at Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet(Int64 userId) in D:\SBPROJECT\Developer\src\Api.Socioboard\Controllers\FacaebookPageReportsController.cs:line 91 + at lambda_method(Closure , Object , Object[] ) + at Microsoft.AspNetCore.Mvc.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__28.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__18.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Builder.RouterMiddleware.d__4.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.d__6.MoveNext() +2017-12-15 16:40:39.743 +05:30 [Debug] Connection id ""0HLA3LH1CEDH9"" received FIN. +2017-12-15 16:40:39.792 +05:30 [Information] Connection id ""0HLA3LH1CEDH9"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 16:40:39.792 +05:30 [Debug] Connection id ""0HLA3LH1CEDH9"" disconnecting. +2017-12-15 16:40:39.836 +05:30 [Information] Connection id ""0HLA3LH1CEDH9"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 16:40:39.837 +05:30 [Information] Request finished in 14245.4892ms 500 text/html; charset=utf-8 +2017-12-15 16:40:39.839 +05:30 [Debug] Connection id ""0HLA3LH1CEDH9"" stopped. +2017-12-15 16:40:41.536 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 16:40:41.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:41.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:41.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:41.975 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:41.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 11124.3858ms +2017-12-15 16:40:41.988 +05:30 [Information] Request finished in 11145.9645ms 200 application/json; charset=utf-8 +2017-12-15 16:40:41.989 +05:30 [Debug] Connection id ""0HLA3LH1CEDH7"" completed keep alive response. +2017-12-15 16:40:46.171 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:40:46.171 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:40:46.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:40:46.173 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:40:46.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 35441.2455ms +2017-12-15 16:40:46.190 +05:30 [Information] Request finished in 35473.9163ms 200 application/json; charset=utf-8 +2017-12-15 16:40:46.191 +05:30 [Debug] Connection id ""0HLA3LH1CEDH8"" completed keep alive response. +2017-12-15 16:40:53.547 +05:30 [Debug] Connection id ""0HLA3LH1CEDHA"" received FIN. +2017-12-15 16:50:05.504 +05:30 [Debug] Hosting starting +2017-12-15 16:50:05.940 +05:30 [Debug] Hosting started +2017-12-15 16:50:06.048 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" started. +2017-12-15 16:50:06.052 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" started. +2017-12-15 16:50:06.262 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-15 16:50:06.262 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-15 16:50:06.353 +05:30 [Information] Request finished in 129.9591ms 200 +2017-12-15 16:50:06.424 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" completed keep alive response. +2017-12-15 16:50:07.465 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:50:07.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-15 16:50:07.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:50:07.857 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"bd5401d0-1570-40df-8f49-1acc0ec8c126"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-15 16:50:07.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:50:07.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-15 16:50:08.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-15 16:50:08.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-15 16:50:08.215 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:50:08.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:08.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:08.523 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 537.5504ms +2017-12-15 16:50:08.617 +05:30 [Information] Request finished in 2417.0765ms 200 application/json; charset=utf-8 +2017-12-15 16:50:08.619 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" completed keep alive response. +2017-12-15 16:50:11.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:50:19.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:50:19.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:19.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:19.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11219.5866ms +2017-12-15 16:50:19.195 +05:30 [Information] Request finished in 11729.4496ms 200 application/json; charset=utf-8 +2017-12-15 16:50:19.195 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" completed keep alive response. +2017-12-15 16:50:28.845 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:50:28.847 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:50:28.848 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:50:29.728 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:50:29.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:50:29.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:50:31.964 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:50:32.564 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:50:32.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:32.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:32.566 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3716.6554ms +2017-12-15 16:50:32.568 +05:30 [Information] Request finished in 3725.0187ms 200 application/json; charset=utf-8 +2017-12-15 16:50:32.569 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" completed keep alive response. +2017-12-15 16:50:32.623 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:50:32.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:50:32.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:50:32.775 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:50:33.357 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:50:33.357 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:33.358 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:33.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.8967ms +2017-12-15 16:50:33.360 +05:30 [Information] Request finished in 3639.5384ms 200 application/json; charset=utf-8 +2017-12-15 16:50:33.361 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" completed keep alive response. +2017-12-15 16:50:35.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:50:35.740 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:50:35.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:50:35.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:50:36.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:50:36.286 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:36.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:36.289 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3664.9021ms +2017-12-15 16:50:36.293 +05:30 [Information] Request finished in 3671.1729ms 200 application/json; charset=utf-8 +2017-12-15 16:50:36.294 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" completed keep alive response. +2017-12-15 16:50:36.333 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:50:36.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:50:36.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:50:38.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:50:39.374 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:50:39.390 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:50:39.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:39.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:39.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3652.0139ms +2017-12-15 16:50:39.400 +05:30 [Information] Request finished in 3665.037ms 200 application/json; charset=utf-8 +2017-12-15 16:50:39.401 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" completed keep alive response. +2017-12-15 16:50:39.420 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 16:50:39.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 16:50:39.421 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 16:50:41.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:50:41.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:41.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:41.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5077.1552ms +2017-12-15 16:50:41.417 +05:30 [Information] Request finished in 5083.9945ms 200 application/json; charset=utf-8 +2017-12-15 16:50:41.418 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" completed keep alive response. +2017-12-15 16:50:42.537 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 16:50:44.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:50:44.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:44.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:44.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5322.929ms +2017-12-15 16:50:44.748 +05:30 [Information] Request finished in 5328.1552ms 200 application/json; charset=utf-8 +2017-12-15 16:50:44.748 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" completed keep alive response. +2017-12-15 16:50:45.125 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 16:50:45.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 16:50:45.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 16:50:48.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 16:50:48.739 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:50:48.739 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:48.741 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:48.743 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3615.3019ms +2017-12-15 16:50:48.748 +05:30 [Information] Request finished in 3622.9101ms 200 application/json; charset=utf-8 +2017-12-15 16:50:48.748 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" completed keep alive response. +2017-12-15 16:50:48.807 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 16:50:48.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 16:50:48.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 16:50:51.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 16:50:53.696 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:50:53.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:50:53.698 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:50:53.750 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4940.2864ms +2017-12-15 16:50:53.752 +05:30 [Information] Request finished in 4944.4635ms 200 application/json; charset=utf-8 +2017-12-15 16:50:53.753 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" completed keep alive response. +2017-12-15 16:50:55.067 +05:30 [Debug] Connection id ""0HLA3LN5J5JKN"" started. +2017-12-15 16:50:55.067 +05:30 [Debug] Connection id ""0HLA3LN5J5JKO"" started. +2017-12-15 16:50:55.072 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 16:50:55.073 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 16:50:55.074 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 16:50:55.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 16:50:55.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 16:50:55.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 16:50:55.081 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 16:50:55.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 16:50:55.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 16:50:55.087 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 16:50:55.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 16:50:55.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 16:50:55.186 +05:30 [Debug] Connection id ""0HLA3LN5J5JKP"" started. +2017-12-15 16:50:55.186 +05:30 [Debug] Connection id ""0HLA3LN5J5JKQ"" started. +2017-12-15 16:50:55.187 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 16:50:55.188 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 16:50:55.197 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 16:50:56.664 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 16:50:56.664 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 16:50:56.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 16:50:59.818 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:50:59.818 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:50:59.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:50:59.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:50:59.867 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:50:59.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:51:00.428 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:51:00.428 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:51:00.429 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:51:00.430 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:51:00.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5356.5618ms +2017-12-15 16:51:00.438 +05:30 [Information] Request finished in 5367.2013ms 200 application/json; charset=utf-8 +2017-12-15 16:51:00.438 +05:30 [Debug] Connection id ""0HLA3LN5J5JKN"" completed keep alive response. +2017-12-15 16:51:00.442 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 16:51:00.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 16:51:00.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 16:51:00.531 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:51:00.532 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:51:00.532 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:51:00.533 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:51:00.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5465.5051ms +2017-12-15 16:51:00.543 +05:30 [Information] Request finished in 5475.9755ms 200 application/json; charset=utf-8 +2017-12-15 16:51:00.544 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" completed keep alive response. +2017-12-15 16:51:02.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:51:02.480 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:51:02.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:51:02.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:51:02.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5813.7991ms +2017-12-15 16:51:02.487 +05:30 [Information] Request finished in 5821.4866ms 200 application/json; charset=utf-8 +2017-12-15 16:51:02.487 +05:30 [Debug] Connection id ""0HLA3LN5J5JKQ"" completed keep alive response. +2017-12-15 16:51:02.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:51:02.516 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:51:02.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:51:02.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:51:02.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7320.3825ms +2017-12-15 16:51:02.523 +05:30 [Information] Request finished in 7335.5684ms 200 application/json; charset=utf-8 +2017-12-15 16:51:02.523 +05:30 [Debug] Connection id ""0HLA3LN5J5JKP"" completed keep alive response. +2017-12-15 16:51:02.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:51:02.690 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:51:02.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:51:02.691 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:51:02.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7603.189ms +2017-12-15 16:51:02.696 +05:30 [Information] Request finished in 7610.4759ms 200 application/json; charset=utf-8 +2017-12-15 16:51:02.697 +05:30 [Debug] Connection id ""0HLA3LN5J5JKO"" completed keep alive response. +2017-12-15 16:51:03.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 16:51:06.010 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:51:06.010 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:51:06.011 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:51:06.020 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:51:06.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5671.0899ms +2017-12-15 16:51:06.123 +05:30 [Information] Request finished in 5681.3189ms 200 application/json; charset=utf-8 +2017-12-15 16:51:06.123 +05:30 [Debug] Connection id ""0HLA3LN5J5JKN"" completed keep alive response. +2017-12-15 16:51:10.046 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:51:10.114 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:51:10.692 +05:30 [Fatal] Sequence contains no elements +2017-12-15 16:51:10.693 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 16:51:21.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 16:51:21.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 16:51:21.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 16:51:21.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 16:51:21.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26907.4909ms +2017-12-15 16:51:21.996 +05:30 [Information] Request finished in 26928.2137ms 200 application/json; charset=utf-8 +2017-12-15 16:51:21.997 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" completed keep alive response. +2017-12-15 16:53:46.639 +05:30 [Debug] Connection id ""0HLA3LN5J5JKP"" received FIN. +2017-12-15 16:53:46.639 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" received FIN. +2017-12-15 16:53:46.639 +05:30 [Debug] Connection id ""0HLA3LN5J5JKO"" received FIN. +2017-12-15 16:53:46.640 +05:30 [Debug] Connection id ""0HLA3LN5J5JKQ"" received FIN. +2017-12-15 16:53:46.640 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" received FIN. +2017-12-15 16:53:46.640 +05:30 [Debug] Connection id ""0HLA3LN5J5JKN"" received FIN. +2017-12-15 16:53:46.640 +05:30 [Debug] Connection id ""0HLA3LN5J5JKP"" disconnecting. +2017-12-15 16:53:46.663 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" disconnecting. +2017-12-15 16:53:46.663 +05:30 [Debug] Connection id ""0HLA3LN5J5JKO"" disconnecting. +2017-12-15 16:53:46.664 +05:30 [Debug] Connection id ""0HLA3LN5J5JKN"" disconnecting. +2017-12-15 16:53:46.663 +05:30 [Debug] Connection id ""0HLA3LN5J5JKQ"" disconnecting. +2017-12-15 16:53:46.664 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" sending FIN. +2017-12-15 16:53:46.663 +05:30 [Debug] Connection id ""0HLA3LN5J5JKP"" sending FIN. +2017-12-15 16:53:46.663 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" disconnecting. +2017-12-15 16:53:46.666 +05:30 [Debug] Connection id ""0HLA3LN5J5JKO"" sending FIN. +2017-12-15 16:53:46.667 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" sending FIN. +2017-12-15 16:53:46.666 +05:30 [Debug] Connection id ""0HLA3LN5J5JKN"" sending FIN. +2017-12-15 16:53:46.667 +05:30 [Debug] Connection id ""0HLA3LN5J5JKQ"" sending FIN. +2017-12-15 16:53:46.671 +05:30 [Debug] Connection id ""0HLA3LN5J5JKQ"" sent FIN with status "0". +2017-12-15 16:53:46.671 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" sent FIN with status "0". +2017-12-15 16:53:46.673 +05:30 [Debug] Connection id ""0HLA3LN5J5JKL"" stopped. +2017-12-15 16:53:46.673 +05:30 [Debug] Connection id ""0HLA3LN5J5JKQ"" stopped. +2017-12-15 16:53:46.674 +05:30 [Debug] Connection id ""0HLA3LN5J5JKO"" sent FIN with status "0". +2017-12-15 16:53:46.674 +05:30 [Debug] Connection id ""0HLA3LN5J5JKN"" sent FIN with status "0". +2017-12-15 16:53:46.674 +05:30 [Debug] Connection id ""0HLA3LN5J5JKO"" stopped. +2017-12-15 16:53:46.675 +05:30 [Debug] Connection id ""0HLA3LN5J5JKP"" sent FIN with status "0". +2017-12-15 16:53:46.675 +05:30 [Debug] Connection id ""0HLA3LN5J5JKP"" stopped. +2017-12-15 16:53:46.674 +05:30 [Debug] Connection id ""0HLA3LN5J5JKN"" stopped. +2017-12-15 16:53:46.675 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" sent FIN with status "0". +2017-12-15 16:53:46.675 +05:30 [Debug] Connection id ""0HLA3LN5J5JKM"" stopped. +2017-12-15 17:49:36.852 +05:30 [Debug] Connection id ""0HLA3LN5J5JKR"" started. +2017-12-15 17:49:36.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 17:49:36.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 17:49:36.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 17:49:39.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 17:49:44.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 17:49:44.359 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 17:49:44.359 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 17:49:44.360 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 17:49:44.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7535.1159ms +2017-12-15 17:49:44.397 +05:30 [Information] Request finished in 7539.9776ms 200 application/json; charset=utf-8 +2017-12-15 17:49:44.397 +05:30 [Debug] Connection id ""0HLA3LN5J5JKR"" completed keep alive response. +2017-12-15 17:49:44.419 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 17:49:44.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 17:49:44.421 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 17:49:44.449 +05:30 [Debug] Connection id ""0HLA3LN5J5JKS"" started. +2017-12-15 17:49:44.450 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 17:49:44.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 17:49:44.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 17:49:44.457 +05:30 [Debug] Connection id ""0HLA3LN5J5JKT"" started. +2017-12-15 17:49:44.464 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 17:49:44.465 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 17:49:44.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 17:49:44.470 +05:30 [Debug] Connection id ""0HLA3LN5J5JKU"" started. +2017-12-15 17:49:44.476 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 17:49:44.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 17:49:44.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 17:49:47.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 17:49:47.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 17:49:47.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 17:49:47.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 17:49:49.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 17:49:49.951 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 17:49:49.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 17:49:49.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 17:49:49.967 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5487.7036ms +2017-12-15 17:49:49.969 +05:30 [Information] Request finished in 5494.8238ms 200 application/json; charset=utf-8 +2017-12-15 17:49:49.970 +05:30 [Debug] Connection id ""0HLA3LN5J5JKU"" completed keep alive response. +2017-12-15 17:49:49.980 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 17:49:49.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 17:49:49.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 17:49:52.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 17:49:52.295 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 17:49:52.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 17:49:52.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 17:49:52.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 7882.043ms +2017-12-15 17:49:52.306 +05:30 [Information] Request finished in 7887.5124ms 200 application/json; charset=utf-8 +2017-12-15 17:49:52.307 +05:30 [Debug] Connection id ""0HLA3LN5J5JKR"" completed keep alive response. +2017-12-15 17:49:52.737 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 17:49:52.738 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 17:49:52.738 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 17:49:52.739 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 17:49:52.743 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 8287.8604ms +2017-12-15 17:49:52.746 +05:30 [Information] Request finished in 8295.5839ms 200 application/json; charset=utf-8 +2017-12-15 17:49:52.746 +05:30 [Debug] Connection id ""0HLA3LN5J5JKS"" completed keep alive response. +2017-12-15 17:49:53.027 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 17:50:15.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 17:50:15.348 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 17:50:15.348 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 17:50:15.384 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 17:50:15.420 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 25417.2413ms +2017-12-15 17:50:15.422 +05:30 [Information] Request finished in 25442.4106ms 200 application/json; charset=utf-8 +2017-12-15 17:50:15.422 +05:30 [Debug] Connection id ""0HLA3LN5J5JKU"" completed keep alive response. +2017-12-15 17:50:29.016 +05:30 [Error] An unhandled exception has occurred while executing the request +System.FormatException: String was not recognized as a valid Boolean. + at System.Boolean.Parse(String value) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.<>c.b__5_8(FacebookPagePost t) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 210 + at System.Linq.Enumerable.Count[TSource](IEnumerable`1 source, Func`2 predicate) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.getfbPagePostAllDetails(String[] profileId, Int32 daysCount, Cache _redisCache, AppSettings _appSettings) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 210 + at Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet(Int64 userId) in D:\SBPROJECT\Developer\src\Api.Socioboard\Controllers\FacaebookPageReportsController.cs:line 91 + at lambda_method(Closure , Object , Object[] ) + at Microsoft.AspNetCore.Mvc.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__28.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__18.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Builder.RouterMiddleware.d__4.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.d__6.MoveNext() +2017-12-15 17:50:29.600 +05:30 [Debug] Connection id ""0HLA3LN5J5JKT"" received FIN. +2017-12-15 17:50:29.675 +05:30 [Debug] Connection id ""0HLA3LN5J5JKT"" disconnecting. +2017-12-15 17:50:29.680 +05:30 [Information] Connection id ""0HLA3LN5J5JKT"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 17:50:29.683 +05:30 [Debug] Connection id ""0HLA3LN5J5JKT"" stopped. +2017-12-15 17:50:29.763 +05:30 [Debug] Connection id ""0HLA3LN5J5JKT"" write of "4096" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 17:50:29.764 +05:30 [Debug] Connection id ""0HLA3LN5J5JKT"" write of "4096" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 17:50:29.764 +05:30 [Debug] Connection id ""0HLA3LN5J5JKT"" write of "3349" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 17:50:29.765 +05:30 [Debug] Connection id ""0HLA3LN5J5JKT"" write of "0" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 17:50:29.773 +05:30 [Information] Request finished in 45310.0751ms 500 text/html; charset=utf-8 +2017-12-15 17:52:26.638 +05:30 [Debug] Connection id ""0HLA3LN5J5JKR"" received FIN. +2017-12-15 17:52:26.638 +05:30 [Debug] Connection id ""0HLA3LN5J5JKS"" received FIN. +2017-12-15 17:52:26.638 +05:30 [Debug] Connection id ""0HLA3LN5J5JKR"" disconnecting. +2017-12-15 17:52:26.638 +05:30 [Debug] Connection id ""0HLA3LN5J5JKU"" received FIN. +2017-12-15 17:52:26.638 +05:30 [Debug] Connection id ""0HLA3LN5J5JKR"" sending FIN. +2017-12-15 17:52:26.639 +05:30 [Debug] Connection id ""0HLA3LN5J5JKS"" disconnecting. +2017-12-15 17:52:26.639 +05:30 [Debug] Connection id ""0HLA3LN5J5JKR"" sent FIN with status "0". +2017-12-15 17:52:26.639 +05:30 [Debug] Connection id ""0HLA3LN5J5JKR"" stopped. +2017-12-15 17:52:26.639 +05:30 [Debug] Connection id ""0HLA3LN5J5JKS"" sending FIN. +2017-12-15 17:52:26.639 +05:30 [Debug] Connection id ""0HLA3LN5J5JKU"" disconnecting. +2017-12-15 17:52:26.640 +05:30 [Debug] Connection id ""0HLA3LN5J5JKS"" sent FIN with status "0". +2017-12-15 17:52:26.640 +05:30 [Debug] Connection id ""0HLA3LN5J5JKS"" stopped. +2017-12-15 17:52:26.640 +05:30 [Debug] Connection id ""0HLA3LN5J5JKU"" sending FIN. +2017-12-15 17:52:26.640 +05:30 [Debug] Connection id ""0HLA3LN5J5JKU"" sent FIN with status "0". +2017-12-15 17:52:26.641 +05:30 [Debug] Connection id ""0HLA3LN5J5JKU"" stopped. +2017-12-15 18:00:31.000 +05:30 [Debug] Hosting starting +2017-12-15 18:00:31.214 +05:30 [Debug] Hosting started +2017-12-15 18:00:31.301 +05:30 [Debug] Connection id ""0HLA3MUGQALVP"" started. +2017-12-15 18:00:31.301 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" started. +2017-12-15 18:00:31.500 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-15 18:00:31.500 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-15 18:00:31.580 +05:30 [Information] Request finished in 115.5273ms 200 +2017-12-15 18:00:31.672 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:00:32.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-15 18:00:32.867 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"9bc13524-ae3c-40f6-a32f-8ed0ed0dce25"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-15 18:00:33.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-15 18:00:33.248 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-15 18:00:33.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-15 18:00:33.315 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:00:33.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:00:33.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:00:34.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1040.1321ms +2017-12-15 18:00:34.381 +05:30 [Information] Request finished in 2922.9579ms 200 application/json; charset=utf-8 +2017-12-15 18:00:34.384 +05:30 [Debug] Connection id ""0HLA3MUGQALVP"" completed keep alive response. +2017-12-15 18:00:34.876 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:00:34.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:00:34.881 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:00:38.693 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:00:47.279 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:00:47.286 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:00:47.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:00:47.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12408.9461ms +2017-12-15 18:00:47.297 +05:30 [Information] Request finished in 12422.4883ms 200 application/json; charset=utf-8 +2017-12-15 18:00:47.297 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:00:59.963 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:00:59.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:00:59.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:01:02.062 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:01:02.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:01:02.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:01:03.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:01:03.632 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:03.632 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:03.633 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:03.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3663.3843ms +2017-12-15 18:01:03.636 +05:30 [Information] Request finished in 3673.6401ms 200 application/json; charset=utf-8 +2017-12-15 18:01:03.636 +05:30 [Debug] Connection id ""0HLA3MUGQALVP"" completed keep alive response. +2017-12-15 18:01:03.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:01:03.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:01:03.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:01:05.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:01:05.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:05.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:05.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:05.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3647.7288ms +2017-12-15 18:01:05.714 +05:30 [Information] Request finished in 3656.2293ms 200 application/json; charset=utf-8 +2017-12-15 18:01:05.714 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:01:06.835 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:01:07.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:07.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:07.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:07.436 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3753.4349ms +2017-12-15 18:01:07.438 +05:30 [Information] Request finished in 3759.595ms 200 application/json; charset=utf-8 +2017-12-15 18:01:07.438 +05:30 [Debug] Connection id ""0HLA3MUGQALVP"" completed keep alive response. +2017-12-15 18:01:07.502 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:01:07.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:01:07.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:01:10.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:01:11.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:11.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:11.147 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:11.148 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3643.8039ms +2017-12-15 18:01:11.149 +05:30 [Information] Request finished in 3649.0419ms 200 application/json; charset=utf-8 +2017-12-15 18:01:11.149 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:01:12.368 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:01:12.369 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:01:12.370 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:01:15.414 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:01:16.010 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:16.010 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:16.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:16.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3642.6479ms +2017-12-15 18:01:16.015 +05:30 [Information] Request finished in 3649.597ms 200 application/json; charset=utf-8 +2017-12-15 18:01:16.015 +05:30 [Debug] Connection id ""0HLA3MUGQALVP"" completed keep alive response. +2017-12-15 18:01:16.036 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 18:01:16.036 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 18:01:16.075 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 18:01:19.175 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 18:01:21.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:21.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:21.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:21.660 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5583.5349ms +2017-12-15 18:01:21.662 +05:30 [Information] Request finished in 5627.0679ms 200 application/json; charset=utf-8 +2017-12-15 18:01:21.663 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:01:22.422 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:01:22.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:01:22.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:01:25.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:01:26.095 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:26.095 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:26.098 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:26.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3675.746ms +2017-12-15 18:01:26.114 +05:30 [Information] Request finished in 3700.9324ms 200 application/json; charset=utf-8 +2017-12-15 18:01:26.115 +05:30 [Debug] Connection id ""0HLA3MUGQALVP"" completed keep alive response. +2017-12-15 18:01:26.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 18:01:26.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 18:01:26.196 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 18:01:29.255 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 18:01:31.352 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:31.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:31.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:31.424 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5225.3092ms +2017-12-15 18:01:31.431 +05:30 [Information] Request finished in 5256.9801ms 200 application/json; charset=utf-8 +2017-12-15 18:01:31.432 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:01:35.028 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 18:01:35.029 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 18:01:35.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 18:01:35.029 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 18:01:35.039 +05:30 [Debug] Connection id ""0HLA3MUGQALVR"" started. +2017-12-15 18:01:35.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 18:01:35.041 +05:30 [Debug] Connection id ""0HLA3MUGQALVS"" started. +2017-12-15 18:01:35.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 18:01:35.045 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 18:01:35.045 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 18:01:35.047 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 18:01:35.115 +05:30 [Debug] Connection id ""0HLA3MUGQALVT"" started. +2017-12-15 18:01:35.126 +05:30 [Debug] Connection id ""0HLA3MUGQALVU"" started. +2017-12-15 18:01:35.560 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 18:01:35.561 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 18:01:35.562 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 18:01:36.585 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 18:01:36.586 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 18:01:36.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 18:01:37.499 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 18:01:37.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 18:01:37.501 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 18:01:40.637 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:01:40.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:01:40.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:01:40.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:01:40.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:01:40.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:01:41.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:41.303 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:01:41.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:41.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:41.314 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6268.7408ms +2017-12-15 18:01:41.317 +05:30 [Information] Request finished in 6289.0873ms 200 application/json; charset=utf-8 +2017-12-15 18:01:41.318 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:01:41.324 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 18:01:41.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 18:01:41.326 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 18:01:43.223 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:43.223 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:01:43.223 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:43.224 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:43.231 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8183.291ms +2017-12-15 18:01:43.234 +05:30 [Information] Request finished in 8191.9184ms 200 application/json; charset=utf-8 +2017-12-15 18:01:43.235 +05:30 [Debug] Connection id ""0HLA3MUGQALVR"" completed keep alive response. +2017-12-15 18:01:43.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:43.516 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:01:43.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:43.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:43.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6930.313ms +2017-12-15 18:01:43.522 +05:30 [Information] Request finished in 6985.0691ms 200 application/json; charset=utf-8 +2017-12-15 18:01:43.523 +05:30 [Debug] Connection id ""0HLA3MUGQALVT"" completed keep alive response. +2017-12-15 18:01:43.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:43.676 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:01:43.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:43.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:43.680 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8116.1658ms +2017-12-15 18:01:43.682 +05:30 [Information] Request finished in 8122.5524ms 200 application/json; charset=utf-8 +2017-12-15 18:01:43.682 +05:30 [Debug] Connection id ""0HLA3MUGQALVS"" completed keep alive response. +2017-12-15 18:01:43.752 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:43.752 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:01:43.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:43.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:43.755 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6252.9164ms +2017-12-15 18:01:43.757 +05:30 [Information] Request finished in 6258.8414ms 200 application/json; charset=utf-8 +2017-12-15 18:01:43.757 +05:30 [Debug] Connection id ""0HLA3MUGQALVU"" completed keep alive response. +2017-12-15 18:01:44.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:01:46.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:01:46.809 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:01:46.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:01:46.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:01:46.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5547.1469ms +2017-12-15 18:01:46.876 +05:30 [Information] Request finished in 5553.0698ms 200 application/json; charset=utf-8 +2017-12-15 18:01:46.877 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:01:51.259 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:01:51.327 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:01:51.959 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:01:51.960 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:02:03.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:03.641 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:03.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:03.643 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:03.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 28617.2267ms +2017-12-15 18:02:03.664 +05:30 [Information] Request finished in 28635.9093ms 200 application/json; charset=utf-8 +2017-12-15 18:02:03.664 +05:30 [Debug] Connection id ""0HLA3MUGQALVP"" completed keep alive response. +2017-12-15 18:02:06.311 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:02:06.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 18:02:06.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 18:02:09.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:02:13.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:13.822 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:13.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:13.823 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:13.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7550.4679ms +2017-12-15 18:02:13.866 +05:30 [Information] Request finished in 7554.8273ms 200 application/json; charset=utf-8 +2017-12-15 18:02:13.866 +05:30 [Debug] Connection id ""0HLA3MUGQALVR"" completed keep alive response. +2017-12-15 18:02:13.884 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 18:02:13.885 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 18:02:13.887 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 18:02:13.892 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 18:02:13.894 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 18:02:13.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 18:02:13.900 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 18:02:13.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 18:02:13.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 18:02:13.909 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:02:13.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:02:13.911 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:02:16.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:02:17.009 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:02:17.011 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:02:18.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:18.734 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:18.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:18.735 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:18.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4838.8455ms +2017-12-15 18:02:18.760 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:02:18.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:02:18.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:02:18.765 +05:30 [Information] Request finished in 4870.197ms 200 application/json; charset=utf-8 +2017-12-15 18:02:18.766 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:02:19.191 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-15 18:02:19.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-15 18:02:19.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-15 18:02:20.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:20.132 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:20.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:20.133 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:20.135 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 6245.0414ms +2017-12-15 18:02:20.138 +05:30 [Information] Request finished in 6254.4416ms 200 application/json; charset=utf-8 +2017-12-15 18:02:20.139 +05:30 [Debug] Connection id ""0HLA3MUGQALVT"" completed keep alive response. +2017-12-15 18:02:21.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 18:02:21.660 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:02:21.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 18:02:21.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 18:02:21.793 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:02:21.891 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:21.892 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:21.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:21.893 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:21.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 7993.9561ms +2017-12-15 18:02:21.904 +05:30 [Information] Request finished in 8019.655ms 200 application/json; charset=utf-8 +2017-12-15 18:02:21.905 +05:30 [Debug] Connection id ""0HLA3MUGQALVU"" completed keep alive response. +2017-12-15 18:02:22.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-15 18:02:22.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:22.256 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:22.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:22.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:22.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3499.9757ms +2017-12-15 18:02:22.269 +05:30 [Information] Request finished in 3510.7363ms 200 application/json; charset=utf-8 +2017-12-15 18:02:22.269 +05:30 [Debug] Connection id ""0HLA3MUGQALVP"" completed keep alive response. +2017-12-15 18:02:30.361 +05:30 [Error] An unhandled exception has occurred while executing the request +System.FormatException: Input string was not in a correct format. + at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + at System.Number.ParseInt64(String value, NumberStyles options, NumberFormatInfo numfmt) + at System.Convert.ToInt64(String value) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.<>c.b__5_8(FacebookPagePost t) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 211 + at System.Linq.Enumerable.Count[TSource](IEnumerable`1 source, Func`2 predicate) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.getfbPagePostAllDetails(String[] profileId, Int32 daysCount, Cache _redisCache, AppSettings _appSettings) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 211 + at Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet(Int64 userId) in D:\SBPROJECT\Developer\src\Api.Socioboard\Controllers\FacaebookPageReportsController.cs:line 91 + at lambda_method(Closure , Object , Object[] ) + at Microsoft.AspNetCore.Mvc.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__28.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__18.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Builder.RouterMiddleware.d__4.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.d__6.MoveNext() +2017-12-15 18:02:30.722 +05:30 [Debug] Connection id ""0HLA3MUGQALVS"" received FIN. +2017-12-15 18:02:30.745 +05:30 [Information] Connection id ""0HLA3MUGQALVS"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 18:02:30.747 +05:30 [Debug] Connection id ""0HLA3MUGQALVS"" disconnecting. +2017-12-15 18:02:30.753 +05:30 [Debug] Connection id ""0HLA3MUGQALVS"" stopped. +2017-12-15 18:02:30.764 +05:30 [Debug] Connection id ""0HLA3MUGQALVS"" write of "4096" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 18:02:30.765 +05:30 [Debug] Connection id ""0HLA3MUGQALVS"" write of "3720" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 18:02:30.765 +05:30 [Debug] Connection id ""0HLA3MUGQALVS"" write of "0" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 18:02:30.767 +05:30 [Information] Request finished in 16883.6375ms 500 text/html; charset=utf-8 +2017-12-15 18:02:32.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:02:32.603 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:32.604 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:32.604 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:32.605 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:32.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 10943.2854ms +2017-12-15 18:02:32.609 +05:30 [Information] Request finished in 10948.9253ms 200 application/json; charset=utf-8 +2017-12-15 18:02:32.610 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:02:32.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 18:02:32.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 18:02:32.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 18:02:32.626 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:02:32.635 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:02:32.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:02:32.639 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 18:02:32.645 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 18:02:32.646 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 18:02:33.292 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 18:02:33.293 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 18:02:33.294 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 18:02:36.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:02:36.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 18:02:36.409 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:02:36.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:02:36.501 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:36.501 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:36.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:36.502 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:36.504 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 17307.4041ms +2017-12-15 18:02:36.507 +05:30 [Information] Request finished in 17316.6849ms 200 application/json; charset=utf-8 +2017-12-15 18:02:36.508 +05:30 [Debug] Connection id ""0HLA3MUGQALVR"" completed keep alive response. +2017-12-15 18:02:36.512 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-15 18:02:36.513 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-15 18:02:36.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-15 18:02:36.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:36.870 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:36.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:36.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:36.907 +05:30 [Debug] Connection id ""0HLA3MUGQALVV"" started. +2017-12-15 18:02:36.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4257.7728ms +2017-12-15 18:02:36.931 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:02:36.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:02:36.932 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:02:36.945 +05:30 [Information] Request finished in 4307.2869ms 200 application/json; charset=utf-8 +2017-12-15 18:02:36.946 +05:30 [Debug] Connection id ""0HLA3MUGQALVU"" completed keep alive response. +2017-12-15 18:02:37.331 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:37.331 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:37.331 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:37.332 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:37.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:37.359 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:37.359 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:37.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:37.362 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4714.376ms +2017-12-15 18:02:37.363 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4735.8707ms +2017-12-15 18:02:37.366 +05:30 [Information] Request finished in 4742.1223ms 200 application/json; charset=utf-8 +2017-12-15 18:02:37.366 +05:30 [Debug] Connection id ""0HLA3MUGQALVP"" completed keep alive response. +2017-12-15 18:02:37.368 +05:30 [Information] Request finished in 4745.0373ms 200 application/json; charset=utf-8 +2017-12-15 18:02:37.369 +05:30 [Debug] Connection id ""0HLA3MUGQALVT"" completed keep alive response. +2017-12-15 18:02:45.473 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:02:45.473 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:02:45.474 +05:30 [Error] An unhandled exception has occurred while executing the request +System.FormatException: Input string was not in a correct format. + at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + at System.Number.ParseInt64(String value, NumberStyles options, NumberFormatInfo numfmt) + at System.Convert.ToInt64(String value) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.<>c.b__5_8(FacebookPagePost t) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 211 + at System.Linq.Enumerable.Count[TSource](IEnumerable`1 source, Func`2 predicate) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.getfbPagePostAllDetails(String[] profileId, Int32 daysCount, Cache _redisCache, AppSettings _appSettings) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 211 + at Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet(Int64 userId) in D:\SBPROJECT\Developer\src\Api.Socioboard\Controllers\FacaebookPageReportsController.cs:line 91 + at lambda_method(Closure , Object , Object[] ) + at Microsoft.AspNetCore.Mvc.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__28.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__18.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Builder.RouterMiddleware.d__4.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.d__6.MoveNext() +2017-12-15 18:02:45.484 +05:30 [Information] Request finished in 12192.0276ms 500 text/html; charset=utf-8 +2017-12-15 18:02:45.485 +05:30 [Debug] Connection id ""0HLA3MUGQALVQ"" completed keep alive response. +2017-12-15 18:02:45.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:02:45.920 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:02:45.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:02:45.922 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:02:45.930 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 8995.6328ms +2017-12-15 18:02:45.935 +05:30 [Information] Request finished in 9020.0227ms 200 application/json; charset=utf-8 +2017-12-15 18:02:45.936 +05:30 [Debug] Connection id ""0HLA3MUGQALVV"" completed keep alive response. +2017-12-15 18:02:49.089 +05:30 [Debug] Connection id ""0HLA3MUGQALVR"" received FIN. +2017-12-15 18:03:37.281 +05:30 [Debug] Hosting starting +2017-12-15 18:03:37.584 +05:30 [Debug] Hosting started +2017-12-15 18:03:37.725 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" started. +2017-12-15 18:03:37.727 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" started. +2017-12-15 18:03:37.988 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-15 18:03:37.987 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-15 18:03:38.071 +05:30 [Information] Request finished in 130.4399ms 200 +2017-12-15 18:03:38.126 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" completed keep alive response. +2017-12-15 18:03:39.126 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:03:39.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:03:39.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-15 18:03:39.512 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"eaf26512-c0ae-4f8b-9cec-91e994ff721c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-15 18:03:39.603 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-15 18:03:39.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:03:39.783 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-15 18:03:39.786 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-15 18:03:39.868 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:03:39.875 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:03:39.881 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:03:40.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 652.5569ms +2017-12-15 18:03:40.330 +05:30 [Information] Request finished in 2394.8416ms 200 application/json; charset=utf-8 +2017-12-15 18:03:40.332 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" completed keep alive response. +2017-12-15 18:03:43.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:03:49.591 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:03:49.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:03:49.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:03:49.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9988.9968ms +2017-12-15 18:03:49.601 +05:30 [Information] Request finished in 10479.4952ms 200 application/json; charset=utf-8 +2017-12-15 18:03:49.602 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" completed keep alive response. +2017-12-15 18:03:58.589 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:03:58.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:03:58.592 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:04:01.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:04:02.221 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:02.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:02.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:02.225 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3630.6112ms +2017-12-15 18:04:02.228 +05:30 [Information] Request finished in 3639.3338ms 200 application/json; charset=utf-8 +2017-12-15 18:04:02.228 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" completed keep alive response. +2017-12-15 18:04:02.263 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:04:02.264 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:04:02.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:04:05.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:04:05.497 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:04:05.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:04:05.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:04:05.852 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:05.853 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:05.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:05.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3589.5417ms +2017-12-15 18:04:05.863 +05:30 [Information] Request finished in 3599.7141ms 200 application/json; charset=utf-8 +2017-12-15 18:04:05.864 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" completed keep alive response. +2017-12-15 18:04:05.915 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:04:05.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:04:05.916 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:04:08.529 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:04:08.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:04:09.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:09.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:09.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:09.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3580.6341ms +2017-12-15 18:04:09.084 +05:30 [Information] Request finished in 3586.7942ms 200 application/json; charset=utf-8 +2017-12-15 18:04:09.085 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" completed keep alive response. +2017-12-15 18:04:10.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:10.968 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:10.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:10.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5062.5207ms +2017-12-15 18:04:10.989 +05:30 [Information] Request finished in 5074.6285ms 200 application/json; charset=utf-8 +2017-12-15 18:04:10.989 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" completed keep alive response. +2017-12-15 18:04:11.652 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:04:11.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:04:11.653 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:04:14.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:04:15.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:15.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:15.273 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:15.275 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3618.8595ms +2017-12-15 18:04:15.279 +05:30 [Information] Request finished in 3625.7601ms 200 application/json; charset=utf-8 +2017-12-15 18:04:15.279 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" completed keep alive response. +2017-12-15 18:04:15.314 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 18:04:15.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 18:04:15.316 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 18:04:18.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 18:04:20.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:20.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:20.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:20.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5421.0064ms +2017-12-15 18:04:20.743 +05:30 [Information] Request finished in 5429.2708ms 200 application/json; charset=utf-8 +2017-12-15 18:04:20.744 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" completed keep alive response. +2017-12-15 18:04:21.252 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:04:21.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:04:21.253 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:04:24.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:04:24.836 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:24.837 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:24.838 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:24.839 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3584.8986ms +2017-12-15 18:04:24.843 +05:30 [Information] Request finished in 3589.7899ms 200 application/json; charset=utf-8 +2017-12-15 18:04:24.843 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" completed keep alive response. +2017-12-15 18:04:24.887 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 18:04:24.888 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 18:04:24.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 18:04:27.939 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 18:04:29.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:29.689 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:29.691 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:29.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4823.4531ms +2017-12-15 18:04:29.723 +05:30 [Information] Request finished in 4836.2057ms 200 application/json; charset=utf-8 +2017-12-15 18:04:29.723 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" completed keep alive response. +2017-12-15 18:04:30.970 +05:30 [Debug] Connection id ""0HLA3N08C6HIV"" started. +2017-12-15 18:04:30.970 +05:30 [Debug] Connection id ""0HLA3N08C6HIU"" started. +2017-12-15 18:04:30.972 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 18:04:30.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 18:04:30.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 18:04:30.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 18:04:30.974 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 18:04:30.975 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 18:04:30.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 18:04:30.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 18:04:30.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 18:04:30.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 18:04:30.979 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 18:04:30.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 18:04:31.104 +05:30 [Debug] Connection id ""0HLA3N08C6HJ0"" started. +2017-12-15 18:04:31.104 +05:30 [Debug] Connection id ""0HLA3N08C6HJ1"" started. +2017-12-15 18:04:31.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 18:04:31.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 18:04:31.108 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 18:04:31.918 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 18:04:31.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 18:04:31.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 18:04:35.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:04:35.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:04:35.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:04:35.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:04:36.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:04:36.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:04:36.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:36.218 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:04:36.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:36.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:36.230 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5248.762ms +2017-12-15 18:04:36.233 +05:30 [Information] Request finished in 5261.4953ms 200 application/json; charset=utf-8 +2017-12-15 18:04:36.233 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" completed keep alive response. +2017-12-15 18:04:36.241 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 18:04:36.242 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 18:04:36.243 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 18:04:37.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:37.163 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:04:37.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:37.164 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:37.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6194.0939ms +2017-12-15 18:04:37.173 +05:30 [Information] Request finished in 6203.0012ms 200 application/json; charset=utf-8 +2017-12-15 18:04:37.173 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" completed keep alive response. +2017-12-15 18:04:37.316 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:37.317 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:04:37.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:37.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:37.335 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6357.0671ms +2017-12-15 18:04:37.337 +05:30 [Information] Request finished in 6364.7198ms 200 application/json; charset=utf-8 +2017-12-15 18:04:37.338 +05:30 [Debug] Connection id ""0HLA3N08C6HIV"" completed keep alive response. +2017-12-15 18:04:38.664 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:38.665 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:04:38.665 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:38.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:38.667 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7553.9079ms +2017-12-15 18:04:38.670 +05:30 [Information] Request finished in 7564.9406ms 200 application/json; charset=utf-8 +2017-12-15 18:04:38.671 +05:30 [Debug] Connection id ""0HLA3N08C6HJ1"" completed keep alive response. +2017-12-15 18:04:38.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:38.697 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:04:38.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:38.700 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:38.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6781.086ms +2017-12-15 18:04:38.704 +05:30 [Information] Request finished in 6787.9213ms 200 application/json; charset=utf-8 +2017-12-15 18:04:38.705 +05:30 [Debug] Connection id ""0HLA3N08C6HJ0"" completed keep alive response. +2017-12-15 18:04:39.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:04:41.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:41.817 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:04:41.818 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:41.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:41.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5640.0441ms +2017-12-15 18:04:41.886 +05:30 [Information] Request finished in 5647.3009ms 200 application/json; charset=utf-8 +2017-12-15 18:04:41.887 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" completed keep alive response. +2017-12-15 18:04:42.333 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:04:42.389 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:04:42.966 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:04:42.967 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:04:53.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:04:53.943 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:04:53.943 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:04:53.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:04:53.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 22979.3568ms +2017-12-15 18:04:53.962 +05:30 [Information] Request finished in 22988.5816ms 200 application/json; charset=utf-8 +2017-12-15 18:04:53.962 +05:30 [Debug] Connection id ""0HLA3N08C6HIU"" completed keep alive response. +2017-12-15 18:07:17.853 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" received FIN. +2017-12-15 18:07:17.853 +05:30 [Debug] Connection id ""0HLA3N08C6HJ1"" received FIN. +2017-12-15 18:07:17.854 +05:30 [Debug] Connection id ""0HLA3N08C6HIV"" received FIN. +2017-12-15 18:07:17.854 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" received FIN. +2017-12-15 18:07:17.854 +05:30 [Debug] Connection id ""0HLA3N08C6HJ0"" received FIN. +2017-12-15 18:07:17.854 +05:30 [Debug] Connection id ""0HLA3N08C6HIU"" received FIN. +2017-12-15 18:07:17.855 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" disconnecting. +2017-12-15 18:07:17.858 +05:30 [Debug] Connection id ""0HLA3N08C6HJ1"" disconnecting. +2017-12-15 18:07:17.859 +05:30 [Debug] Connection id ""0HLA3N08C6HIV"" disconnecting. +2017-12-15 18:07:17.859 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" disconnecting. +2017-12-15 18:07:17.859 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" sending FIN. +2017-12-15 18:07:17.860 +05:30 [Debug] Connection id ""0HLA3N08C6HJ0"" disconnecting. +2017-12-15 18:07:17.860 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" sending FIN. +2017-12-15 18:07:17.860 +05:30 [Debug] Connection id ""0HLA3N08C6HIU"" disconnecting. +2017-12-15 18:07:17.885 +05:30 [Debug] Connection id ""0HLA3N08C6HJ1"" sending FIN. +2017-12-15 18:07:17.885 +05:30 [Debug] Connection id ""0HLA3N08C6HIV"" sending FIN. +2017-12-15 18:07:17.886 +05:30 [Debug] Connection id ""0HLA3N08C6HJ0"" sending FIN. +2017-12-15 18:07:17.885 +05:30 [Debug] Connection id ""0HLA3N08C6HIU"" sending FIN. +2017-12-15 18:07:17.895 +05:30 [Debug] Connection id ""0HLA3N08C6HIU"" sent FIN with status "0". +2017-12-15 18:07:17.895 +05:30 [Debug] Connection id ""0HLA3N08C6HJ0"" sent FIN with status "0". +2017-12-15 18:07:17.899 +05:30 [Debug] Connection id ""0HLA3N08C6HIU"" stopped. +2017-12-15 18:07:17.899 +05:30 [Debug] Connection id ""0HLA3N08C6HJ0"" stopped. +2017-12-15 18:07:17.900 +05:30 [Debug] Connection id ""0HLA3N08C6HJ1"" sent FIN with status "0". +2017-12-15 18:07:17.900 +05:30 [Debug] Connection id ""0HLA3N08C6HIV"" sent FIN with status "0". +2017-12-15 18:07:17.900 +05:30 [Debug] Connection id ""0HLA3N08C6HJ1"" stopped. +2017-12-15 18:07:17.901 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" sent FIN with status "0". +2017-12-15 18:07:17.902 +05:30 [Debug] Connection id ""0HLA3N08C6HIS"" stopped. +2017-12-15 18:07:17.901 +05:30 [Debug] Connection id ""0HLA3N08C6HIV"" stopped. +2017-12-15 18:07:17.902 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" sent FIN with status "0". +2017-12-15 18:07:17.903 +05:30 [Debug] Connection id ""0HLA3N08C6HIT"" stopped. +2017-12-15 18:37:13.225 +05:30 [Debug] Connection id ""0HLA3N08C6HJ2"" started. +2017-12-15 18:37:13.227 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:37:13.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 18:37:13.229 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 18:37:16.318 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:37:20.575 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:37:20.575 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:37:20.576 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:37:20.576 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:37:20.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7382.0532ms +2017-12-15 18:37:20.614 +05:30 [Information] Request finished in 7388.4802ms 200 application/json; charset=utf-8 +2017-12-15 18:37:20.614 +05:30 [Debug] Connection id ""0HLA3N08C6HJ2"" completed keep alive response. +2017-12-15 18:37:20.663 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 18:37:20.664 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 18:37:20.666 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 18:37:20.725 +05:30 [Debug] Connection id ""0HLA3N08C6HJ3"" started. +2017-12-15 18:37:20.727 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 18:37:20.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 18:37:20.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 18:37:20.731 +05:30 [Debug] Connection id ""0HLA3N08C6HJ4"" started. +2017-12-15 18:37:20.731 +05:30 [Debug] Connection id ""0HLA3N08C6HJ5"" started. +2017-12-15 18:37:20.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 18:37:20.747 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 18:37:20.751 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:37:20.752 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:37:20.752 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 18:37:20.756 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:37:23.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:37:23.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 18:37:24.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:37:24.822 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:37:26.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:37:26.562 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:37:26.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:37:26.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:37:26.583 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5824.5251ms +2017-12-15 18:37:26.585 +05:30 [Debug] Connection id ""0HLA3N08C6HJ6"" started. +2017-12-15 18:37:26.609 +05:30 [Information] Request finished in 5836.136ms 200 application/json; charset=utf-8 +2017-12-15 18:37:26.609 +05:30 [Debug] Connection id ""0HLA3N08C6HJ5"" completed keep alive response. +2017-12-15 18:37:26.610 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:37:26.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:37:26.611 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:37:27.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:37:27.284 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:37:27.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:37:27.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:37:27.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 6532.8564ms +2017-12-15 18:37:27.291 +05:30 [Information] Request finished in 6556.322ms 200 application/json; charset=utf-8 +2017-12-15 18:37:27.291 +05:30 [Debug] Connection id ""0HLA3N08C6HJ4"" completed keep alive response. +2017-12-15 18:37:28.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:37:28.393 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:37:28.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:37:28.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:37:28.401 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 7669.7902ms +2017-12-15 18:37:28.404 +05:30 [Information] Request finished in 7677.5744ms 200 application/json; charset=utf-8 +2017-12-15 18:37:28.405 +05:30 [Debug] Connection id ""0HLA3N08C6HJ3"" completed keep alive response. +2017-12-15 18:37:29.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:37:30.479 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:37:30.480 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:37:30.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:37:30.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:37:30.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3877.5828ms +2017-12-15 18:37:30.498 +05:30 [Information] Request finished in 3888.2889ms 200 application/json; charset=utf-8 +2017-12-15 18:37:30.498 +05:30 [Debug] Connection id ""0HLA3N08C6HJ6"" completed keep alive response. +2017-12-15 18:38:04.818 +05:30 [Error] An unhandled exception has occurred while executing the request +System.FormatException: Input string was not in a correct format. + at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + at System.Number.ParseInt64(String value, NumberStyles options, NumberFormatInfo numfmt) + at System.Convert.ToInt64(String value) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.<>c.b__5_8(FacebookPagePost t) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 211 + at System.Linq.Enumerable.Count[TSource](IEnumerable`1 source, Func`2 predicate) + at Api.Socioboard.Repositories.FacaebookPageReportsRepositories.getfbPagePostAllDetails(String[] profileId, Int32 daysCount, Cache _redisCache, AppSettings _appSettings) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\FacaebookPageReportsRepositories.cs:line 211 + at Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet(Int64 userId) in D:\SBPROJECT\Developer\src\Api.Socioboard\Controllers\FacaebookPageReportsController.cs:line 91 + at lambda_method(Closure , Object , Object[] ) + at Microsoft.AspNetCore.Mvc.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__28.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__18.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Builder.RouterMiddleware.d__4.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.d__6.MoveNext() +2017-12-15 18:38:05.378 +05:30 [Debug] Connection id ""0HLA3N08C6HJ2"" received FIN. +2017-12-15 18:38:05.423 +05:30 [Information] Connection id ""0HLA3N08C6HJ2"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 18:38:05.424 +05:30 [Debug] Connection id ""0HLA3N08C6HJ2"" disconnecting. +2017-12-15 18:38:05.426 +05:30 [Debug] Connection id ""0HLA3N08C6HJ2"" stopped. +2017-12-15 18:38:05.437 +05:30 [Debug] Connection id ""0HLA3N08C6HJ2"" write of "4096" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 18:38:05.437 +05:30 [Debug] Connection id ""0HLA3N08C6HJ2"" write of "3692" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 18:38:05.438 +05:30 [Debug] Connection id ""0HLA3N08C6HJ2"" write of "0" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-15 18:38:05.439 +05:30 [Information] Request finished in 44775.7382ms 500 text/html; charset=utf-8 +2017-12-15 18:39:10.152 +05:30 [Debug] Hosting starting +2017-12-15 18:39:10.801 +05:30 [Debug] Hosting started +2017-12-15 18:39:10.946 +05:30 [Debug] Connection id ""0HLA3NK446USR"" started. +2017-12-15 18:39:10.946 +05:30 [Debug] Connection id ""0HLA3NK446USQ"" started. +2017-12-15 18:39:11.220 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-15 18:39:11.199 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-15 18:39:11.329 +05:30 [Information] Request finished in 144.0322ms 200 +2017-12-15 18:39:11.387 +05:30 [Debug] Connection id ""0HLA3NK446USR"" completed keep alive response. +2017-12-15 18:39:12.445 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:39:13.983 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-15 18:39:13.988 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:39:14.057 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"926b49b7-8992-4cf4-b2bc-aaed8b15f676"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-15 18:39:14.202 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-15 18:39:14.202 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:39:14.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-15 18:39:14.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-15 18:39:14.409 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:39:14.415 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:39:14.420 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:39:15.412 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1200.3691ms +2017-12-15 18:39:15.486 +05:30 [Information] Request finished in 4350.6573ms 200 application/json; charset=utf-8 +2017-12-15 18:39:15.489 +05:30 [Debug] Connection id ""0HLA3NK446USQ"" completed keep alive response. +2017-12-15 18:39:18.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:39:32.197 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:39:32.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:39:32.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:39:32.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 18011.6845ms +2017-12-15 18:39:32.222 +05:30 [Information] Request finished in 19776.897ms 200 application/json; charset=utf-8 +2017-12-15 18:39:32.223 +05:30 [Debug] Connection id ""0HLA3NK446USR"" completed keep alive response. +2017-12-15 18:39:55.016 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:39:55.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:39:55.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:39:58.079 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:39:58.667 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:39:58.667 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:39:58.673 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:39:58.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3653.2629ms +2017-12-15 18:39:58.695 +05:30 [Information] Request finished in 3677.1704ms 200 application/json; charset=utf-8 +2017-12-15 18:39:58.695 +05:30 [Debug] Connection id ""0HLA3NK446USQ"" completed keep alive response. +2017-12-15 18:39:59.388 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:39:59.389 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:39:59.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:39:59.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:39:59.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:39:59.391 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:40:02.457 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:40:02.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:40:03.044 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:03.044 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:03.045 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:03.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3654.701ms +2017-12-15 18:40:03.048 +05:30 [Information] Request finished in 3679.4408ms 200 application/json; charset=utf-8 +2017-12-15 18:40:03.048 +05:30 [Debug] Connection id ""0HLA3NK446USR"" completed keep alive response. +2017-12-15 18:40:03.268 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:40:03.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:40:03.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:40:04.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:04.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:04.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:04.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5292.7357ms +2017-12-15 18:40:04.688 +05:30 [Information] Request finished in 5319.6243ms 200 application/json; charset=utf-8 +2017-12-15 18:40:04.689 +05:30 [Debug] Connection id ""0HLA3NK446USQ"" completed keep alive response. +2017-12-15 18:40:06.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:40:06.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:06.884 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:06.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:06.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3614.8748ms +2017-12-15 18:40:06.891 +05:30 [Information] Request finished in 3628.4392ms 200 application/json; charset=utf-8 +2017-12-15 18:40:06.891 +05:30 [Debug] Connection id ""0HLA3NK446USR"" completed keep alive response. +2017-12-15 18:40:12.645 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:40:12.649 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:40:12.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:40:15.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:40:16.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:16.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:16.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:16.311 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3650.5108ms +2017-12-15 18:40:16.320 +05:30 [Information] Request finished in 3673.9524ms 200 application/json; charset=utf-8 +2017-12-15 18:40:16.322 +05:30 [Debug] Connection id ""0HLA3NK446USQ"" completed keep alive response. +2017-12-15 18:40:16.358 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 18:40:16.359 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 18:40:16.360 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 18:40:19.543 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 18:40:21.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:21.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:21.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:21.862 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5500.3735ms +2017-12-15 18:40:21.864 +05:30 [Information] Request finished in 5515.4393ms 200 application/json; charset=utf-8 +2017-12-15 18:40:21.865 +05:30 [Debug] Connection id ""0HLA3NK446USR"" completed keep alive response. +2017-12-15 18:40:22.109 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:40:22.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:40:22.110 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:40:25.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:40:25.740 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:25.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:25.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:25.743 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3632.129ms +2017-12-15 18:40:25.745 +05:30 [Information] Request finished in 3635.7522ms 200 application/json; charset=utf-8 +2017-12-15 18:40:25.746 +05:30 [Debug] Connection id ""0HLA3NK446USQ"" completed keep alive response. +2017-12-15 18:40:25.782 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 18:40:25.783 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 18:40:25.784 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 18:40:28.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 18:40:30.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:30.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:30.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:30.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5063.4341ms +2017-12-15 18:40:30.851 +05:30 [Information] Request finished in 5068.9119ms 200 application/json; charset=utf-8 +2017-12-15 18:40:30.851 +05:30 [Debug] Connection id ""0HLA3NK446USR"" completed keep alive response. +2017-12-15 18:40:33.324 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 18:40:33.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 18:40:33.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 18:40:33.330 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 18:40:33.330 +05:30 [Debug] Connection id ""0HLA3NK446USS"" started. +2017-12-15 18:40:33.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 18:40:33.331 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 18:40:33.332 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 18:40:33.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 18:40:33.340 +05:30 [Debug] Connection id ""0HLA3NK446UST"" started. +2017-12-15 18:40:33.344 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 18:40:33.345 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 18:40:33.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 18:40:33.373 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 18:40:33.483 +05:30 [Debug] Connection id ""0HLA3NK446USU"" started. +2017-12-15 18:40:33.497 +05:30 [Debug] Connection id ""0HLA3NK446USV"" started. +2017-12-15 18:40:34.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 18:40:34.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 18:40:34.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 18:40:35.311 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 18:40:35.312 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 18:40:35.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 18:40:38.469 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:40:38.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:40:38.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:40:38.517 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:40:38.543 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:40:38.601 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:40:39.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:39.756 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:40:39.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:39.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:39.760 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6427.3565ms +2017-12-15 18:40:39.764 +05:30 [Information] Request finished in 6433.8302ms 200 application/json; charset=utf-8 +2017-12-15 18:40:39.765 +05:30 [Debug] Connection id ""0HLA3NK446USR"" completed keep alive response. +2017-12-15 18:40:39.768 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 18:40:39.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 18:40:39.770 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 18:40:40.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:40.823 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:40:40.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:40.824 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:40:40.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:40.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:40.826 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:40.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:40.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7506.6869ms +2017-12-15 18:40:40.839 +05:30 [Information] Request finished in 7514.6721ms 200 application/json; charset=utf-8 +2017-12-15 18:40:40.839 +05:30 [Debug] Connection id ""0HLA3NK446USQ"" completed keep alive response. +2017-12-15 18:40:40.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7470.6619ms +2017-12-15 18:40:40.848 +05:30 [Information] Request finished in 7504.4023ms 200 application/json; charset=utf-8 +2017-12-15 18:40:40.849 +05:30 [Debug] Connection id ""0HLA3NK446UST"" completed keep alive response. +2017-12-15 18:40:41.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:41.211 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:40:41.211 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:41.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:41.213 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5899.4075ms +2017-12-15 18:40:41.215 +05:30 [Information] Request finished in 5904.5855ms 200 application/json; charset=utf-8 +2017-12-15 18:40:41.216 +05:30 [Debug] Connection id ""0HLA3NK446USV"" completed keep alive response. +2017-12-15 18:40:41.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:41.351 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:40:41.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:41.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:41.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7040.9501ms +2017-12-15 18:40:41.357 +05:30 [Information] Request finished in 7047.5344ms 200 application/json; charset=utf-8 +2017-12-15 18:40:41.358 +05:30 [Debug] Connection id ""0HLA3NK446USU"" completed keep alive response. +2017-12-15 18:40:46.604 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:40:46.676 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:40:46.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:40:47.317 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:40:47.319 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:40:50.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:50.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:40:50.032 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:50.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:50.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 10305.1916ms +2017-12-15 18:40:50.079 +05:30 [Information] Request finished in 10311.8005ms 200 application/json; charset=utf-8 +2017-12-15 18:40:50.081 +05:30 [Debug] Connection id ""0HLA3NK446USR"" completed keep alive response. +2017-12-15 18:40:57.202 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:40:57.202 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 18:40:57.203 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 18:40:58.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:40:58.888 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:40:58.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:40:58.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:40:58.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25537.9187ms +2017-12-15 18:40:58.914 +05:30 [Information] Request finished in 25582.1649ms 200 application/json; charset=utf-8 +2017-12-15 18:40:58.914 +05:30 [Debug] Connection id ""0HLA3NK446USS"" completed keep alive response. +2017-12-15 18:41:00.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:41:04.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:41:04.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:41:04.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:41:04.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:41:04.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7313.6865ms +2017-12-15 18:41:04.520 +05:30 [Information] Request finished in 7318.0932ms 200 application/json; charset=utf-8 +2017-12-15 18:41:04.520 +05:30 [Debug] Connection id ""0HLA3NK446USQ"" completed keep alive response. +2017-12-15 18:41:04.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 18:41:04.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 18:41:04.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 18:41:04.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 18:41:04.560 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 18:41:04.560 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 18:41:04.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 18:41:04.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 18:41:04.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 18:41:04.562 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:41:04.563 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:41:04.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:41:06.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 18:41:07.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:41:07.629 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:41:07.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:41:07.630 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:41:07.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:41:07.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:41:07.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:41:07.738 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3173.0156ms +2017-12-15 18:41:07.748 +05:30 [Information] Request finished in 3208.4469ms 200 application/json; charset=utf-8 +2017-12-15 18:41:07.748 +05:30 [Debug] Connection id ""0HLA3NK446USV"" completed keep alive response. +2017-12-15 18:41:08.428 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:41:08.428 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:41:08.429 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:41:08.429 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:41:08.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3886.6468ms +2017-12-15 18:41:08.461 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:41:08.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:41:08.463 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:41:08.465 +05:30 [Information] Request finished in 3901.9969ms 200 application/json; charset=utf-8 +2017-12-15 18:41:08.466 +05:30 [Debug] Connection id ""0HLA3NK446USR"" completed keep alive response. +2017-12-15 18:41:10.429 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:41:10.430 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:41:10.430 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:41:10.431 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:41:10.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5872.2639ms +2017-12-15 18:41:10.448 +05:30 [Information] Request finished in 5909.4048ms 200 application/json; charset=utf-8 +2017-12-15 18:41:10.449 +05:30 [Debug] Connection id ""0HLA3NK446UST"" completed keep alive response. +2017-12-15 18:41:11.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:41:12.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:41:12.189 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:41:12.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:41:12.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:41:12.202 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3736.4318ms +2017-12-15 18:41:12.209 +05:30 [Information] Request finished in 3749.5575ms 200 application/json; charset=utf-8 +2017-12-15 18:41:12.210 +05:30 [Debug] Connection id ""0HLA3NK446USS"" completed keep alive response. +2017-12-15 18:43:50.979 +05:30 [Debug] Hosting starting +2017-12-15 18:43:51.222 +05:30 [Debug] Hosting started +2017-12-15 18:43:51.459 +05:30 [Debug] Connection id ""0HLA3NMNNBPPC"" started. +2017-12-15 18:43:51.467 +05:30 [Debug] Connection id ""0HLA3NMNNBPPD"" started. +2017-12-15 18:43:51.738 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-15 18:43:51.738 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-15 18:43:51.811 +05:30 [Information] Request finished in 137.2155ms 200 +2017-12-15 18:43:51.863 +05:30 [Debug] Connection id ""0HLA3NMNNBPPD"" completed keep alive response. +2017-12-15 18:43:52.954 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:43:53.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-15 18:43:53.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:43:53.335 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d39169c3-0f6e-4be9-bd22-2f2f817ef049"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-15 18:43:53.418 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-15 18:43:53.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:43:53.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-15 18:43:53.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-15 18:43:53.620 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:43:53.626 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:43:53.650 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:43:53.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 554.612ms +2017-12-15 18:43:54.089 +05:30 [Information] Request finished in 2393.234ms 200 application/json; charset=utf-8 +2017-12-15 18:43:54.093 +05:30 [Debug] Connection id ""0HLA3NMNNBPPC"" completed keep alive response. +2017-12-15 18:43:57.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:44:03.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:44:03.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:44:03.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:44:03.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10255.0462ms +2017-12-15 18:44:03.689 +05:30 [Information] Request finished in 10737.1483ms 200 application/json; charset=utf-8 +2017-12-15 18:44:03.689 +05:30 [Debug] Connection id ""0HLA3NMNNBPPD"" completed keep alive response. +2017-12-15 18:44:13.143 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:44:13.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:44:13.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:44:16.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:44:16.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:44:16.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:44:16.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:44:16.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3727.1612ms +2017-12-15 18:44:16.882 +05:30 [Information] Request finished in 3737.9227ms 200 application/json; charset=utf-8 +2017-12-15 18:44:16.883 +05:30 [Debug] Connection id ""0HLA3NMNNBPPC"" completed keep alive response. +2017-12-15 18:44:17.053 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:44:17.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:44:17.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:44:18.719 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:44:18.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:44:18.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:44:20.086 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:44:20.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:44:20.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:44:20.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:44:20.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3554.5517ms +2017-12-15 18:44:20.618 +05:30 [Information] Request finished in 3565.4569ms 200 application/json; charset=utf-8 +2017-12-15 18:44:20.619 +05:30 [Debug] Connection id ""0HLA3NMNNBPPD"" completed keep alive response. +2017-12-15 18:44:20.672 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:44:20.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:44:20.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:44:21.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:44:22.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:44:22.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:44:22.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:44:22.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3577.1726ms +2017-12-15 18:44:22.300 +05:30 [Information] Request finished in 3584.648ms 200 application/json; charset=utf-8 +2017-12-15 18:44:22.301 +05:30 [Debug] Connection id ""0HLA3NMNNBPPC"" completed keep alive response. +2017-12-15 18:44:23.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:44:24.263 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:44:24.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:44:24.332 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:44:24.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3655.8732ms +2017-12-15 18:44:24.612 +05:30 [Information] Request finished in 3911.6774ms 200 application/json; charset=utf-8 +2017-12-15 18:44:24.614 +05:30 [Debug] Connection id ""0HLA3NMNNBPPD"" completed keep alive response. +2017-12-15 18:45:19.591 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:45:19.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:45:19.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:45:22.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:45:23.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:23.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:23.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:23.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3628.5057ms +2017-12-15 18:45:23.223 +05:30 [Information] Request finished in 3632.8349ms 200 application/json; charset=utf-8 +2017-12-15 18:45:23.224 +05:30 [Debug] Connection id ""0HLA3NMNNBPPC"" completed keep alive response. +2017-12-15 18:45:23.245 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 18:45:23.246 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 18:45:23.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 18:45:26.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 18:45:28.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:28.452 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:28.453 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:28.635 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5383.6338ms +2017-12-15 18:45:28.637 +05:30 [Information] Request finished in 5393.1046ms 200 application/json; charset=utf-8 +2017-12-15 18:45:28.638 +05:30 [Debug] Connection id ""0HLA3NMNNBPPD"" completed keep alive response. +2017-12-15 18:45:29.038 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:45:29.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:45:29.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:45:32.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:45:32.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:32.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:32.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:32.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3586.6857ms +2017-12-15 18:45:32.637 +05:30 [Information] Request finished in 3604.2577ms 200 application/json; charset=utf-8 +2017-12-15 18:45:32.637 +05:30 [Debug] Connection id ""0HLA3NMNNBPPC"" completed keep alive response. +2017-12-15 18:45:32.702 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 18:45:32.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 18:45:32.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 18:45:35.775 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 18:45:37.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:37.436 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:37.437 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:37.474 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4760.5613ms +2017-12-15 18:45:37.476 +05:30 [Information] Request finished in 4774.418ms 200 application/json; charset=utf-8 +2017-12-15 18:45:37.476 +05:30 [Debug] Connection id ""0HLA3NMNNBPPD"" completed keep alive response. +2017-12-15 18:45:39.038 +05:30 [Debug] Connection id ""0HLA3NMNNBPPE"" started. +2017-12-15 18:45:39.039 +05:30 [Debug] Connection id ""0HLA3NMNNBPPF"" started. +2017-12-15 18:45:39.040 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 18:45:39.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 18:45:39.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 18:45:39.046 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 18:45:39.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 18:45:39.048 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 18:45:39.077 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 18:45:39.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 18:45:39.090 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 18:45:39.129 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 18:45:39.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 18:45:39.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 18:45:39.177 +05:30 [Debug] Connection id ""0HLA3NMNNBPPG"" started. +2017-12-15 18:45:39.199 +05:30 [Debug] Connection id ""0HLA3NMNNBPPH"" started. +2017-12-15 18:45:39.771 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 18:45:39.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 18:45:39.776 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 18:45:40.343 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 18:45:40.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 18:45:40.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 18:45:43.392 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:45:43.423 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:45:43.490 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:45:43.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:45:43.540 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:45:43.586 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:45:43.960 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:43.961 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:45:43.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:43.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:43.972 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4922.6426ms +2017-12-15 18:45:43.979 +05:30 [Information] Request finished in 4962.4361ms 200 application/json; charset=utf-8 +2017-12-15 18:45:43.980 +05:30 [Debug] Connection id ""0HLA3NMNNBPPC"" completed keep alive response. +2017-12-15 18:45:44.011 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 18:45:44.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 18:45:44.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 18:45:45.916 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:45.916 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:45:45.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:45.922 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:45.933 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6841.0002ms +2017-12-15 18:45:45.935 +05:30 [Information] Request finished in 6894.6354ms 200 application/json; charset=utf-8 +2017-12-15 18:45:45.936 +05:30 [Debug] Connection id ""0HLA3NMNNBPPF"" completed keep alive response. +2017-12-15 18:45:46.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:46.127 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:45:46.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:46.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:46.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6352.0164ms +2017-12-15 18:45:46.131 +05:30 [Information] Request finished in 6360.4307ms 200 application/json; charset=utf-8 +2017-12-15 18:45:46.131 +05:30 [Debug] Connection id ""0HLA3NMNNBPPG"" completed keep alive response. +2017-12-15 18:45:46.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:46.220 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:45:46.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:46.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:46.225 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7092.5323ms +2017-12-15 18:45:46.228 +05:30 [Information] Request finished in 7189.3ms 200 application/json; charset=utf-8 +2017-12-15 18:45:46.229 +05:30 [Debug] Connection id ""0HLA3NMNNBPPE"" completed keep alive response. +2017-12-15 18:45:46.380 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:46.381 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:45:46.381 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:46.384 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:46.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6037.6313ms +2017-12-15 18:45:46.402 +05:30 [Information] Request finished in 6066.6829ms 200 application/json; charset=utf-8 +2017-12-15 18:45:46.402 +05:30 [Debug] Connection id ""0HLA3NMNNBPPH"" completed keep alive response. +2017-12-15 18:45:47.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:45:49.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:45:49.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:45:49.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:45:49.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:45:49.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5605.1403ms +2017-12-15 18:45:49.625 +05:30 [Information] Request finished in 5629.2493ms 200 application/json; charset=utf-8 +2017-12-15 18:45:49.625 +05:30 [Debug] Connection id ""0HLA3NMNNBPPC"" completed keep alive response. +2017-12-15 18:45:53.142 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:45:53.335 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:45:53.896 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:45:53.897 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:46:03.362 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:46:03.366 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 18:46:03.368 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 18:46:05.206 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:46:05.207 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:46:05.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:46:05.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:46:05.225 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26171.4049ms +2017-12-15 18:46:05.229 +05:30 [Information] Request finished in 26212.9908ms 200 application/json; charset=utf-8 +2017-12-15 18:46:05.229 +05:30 [Debug] Connection id ""0HLA3NMNNBPPD"" completed keep alive response. +2017-12-15 18:46:05.513 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:46:10.754 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:46:10.754 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:46:10.754 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:46:10.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:46:10.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7433.5136ms +2017-12-15 18:46:10.805 +05:30 [Information] Request finished in 7444.9817ms 200 application/json; charset=utf-8 +2017-12-15 18:46:10.805 +05:30 [Debug] Connection id ""0HLA3NMNNBPPF"" completed keep alive response. +2017-12-15 18:46:10.844 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 18:46:10.847 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 18:46:10.848 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 18:46:10.848 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 18:46:10.849 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 18:46:10.851 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 18:46:10.851 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 18:46:10.855 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 18:46:10.859 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:46:10.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:46:10.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 18:46:10.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:46:14.276 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:46:14.379 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:46:14.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 18:46:14.392 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:46:15.088 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:46:15.088 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:46:15.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:46:15.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:46:15.114 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4248.1359ms +2017-12-15 18:46:15.119 +05:30 [Information] Request finished in 4281.941ms 200 application/json; charset=utf-8 +2017-12-15 18:46:15.119 +05:30 [Debug] Connection id ""0HLA3NMNNBPPC"" completed keep alive response. +2017-12-15 18:46:15.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:46:15.127 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:46:15.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:46:17.325 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:46:17.325 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:46:17.326 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:46:17.327 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:46:17.332 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 6476.2296ms +2017-12-15 18:46:17.336 +05:30 [Information] Request finished in 6497.6478ms 200 application/json; charset=utf-8 +2017-12-15 18:46:17.336 +05:30 [Debug] Connection id ""0HLA3NMNNBPPH"" completed keep alive response. +2017-12-15 18:46:17.503 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:46:17.503 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:46:17.503 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:46:17.504 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:46:17.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 6653.5173ms +2017-12-15 18:46:17.526 +05:30 [Information] Request finished in 6686.7554ms 200 application/json; charset=utf-8 +2017-12-15 18:46:17.537 +05:30 [Debug] Connection id ""0HLA3NMNNBPPE"" completed keep alive response. +2017-12-15 18:46:21.386 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:47:36.016 +05:30 [Debug] Hosting starting +2017-12-15 18:47:36.410 +05:30 [Debug] Hosting started +2017-12-15 18:47:36.627 +05:30 [Debug] Connection id ""0HLA3NOQQM0UL"" started. +2017-12-15 18:47:36.627 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" started. +2017-12-15 18:47:36.989 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-15 18:47:37.011 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-15 18:47:37.085 +05:30 [Information] Request finished in 200.306ms 200 +2017-12-15 18:47:37.140 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" completed keep alive response. +2017-12-15 18:47:37.825 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:47:38.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:47:38.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-15 18:47:38.571 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b411a1dc-9579-4661-84a1-4d66db50b538"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-15 18:47:38.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:47:38.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-15 18:47:38.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-15 18:47:38.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-15 18:47:39.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:47:39.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:47:39.020 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:47:39.550 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 846.9472ms +2017-12-15 18:47:39.696 +05:30 [Information] Request finished in 2848.3574ms 200 application/json; charset=utf-8 +2017-12-15 18:47:39.700 +05:30 [Debug] Connection id ""0HLA3NOQQM0UL"" completed keep alive response. +2017-12-15 18:47:42.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:47:49.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:47:49.279 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:47:49.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:47:49.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10594.9797ms +2017-12-15 18:47:49.288 +05:30 [Information] Request finished in 11460.4988ms 200 application/json; charset=utf-8 +2017-12-15 18:47:49.290 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" completed keep alive response. +2017-12-15 18:47:59.256 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:47:59.256 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:47:59.264 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:48:02.318 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:48:02.904 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:48:02.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:48:02.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:48:02.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3642.2495ms +2017-12-15 18:48:02.912 +05:30 [Information] Request finished in 3656.4887ms 200 application/json; charset=utf-8 +2017-12-15 18:48:02.912 +05:30 [Debug] Connection id ""0HLA3NOQQM0UL"" completed keep alive response. +2017-12-15 18:48:02.974 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:48:02.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:48:02.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:48:06.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:48:06.618 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:48:06.618 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:48:06.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:48:06.620 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3642.1375ms +2017-12-15 18:48:06.622 +05:30 [Information] Request finished in 3647.9394ms 200 application/json; charset=utf-8 +2017-12-15 18:48:06.622 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" completed keep alive response. +2017-12-15 18:48:06.655 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:48:06.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:48:06.656 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:48:09.708 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:48:10.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:48:10.294 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:48:10.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:48:10.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3638.7991ms +2017-12-15 18:48:10.298 +05:30 [Information] Request finished in 3643.2777ms 200 application/json; charset=utf-8 +2017-12-15 18:48:10.298 +05:30 [Debug] Connection id ""0HLA3NOQQM0UL"" completed keep alive response. +2017-12-15 18:48:37.899 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:48:37.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:48:37.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:48:45.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:48:45.650 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:48:45.651 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:48:45.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:48:45.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7752.5628ms +2017-12-15 18:48:45.654 +05:30 [Information] Request finished in 7757.2771ms 200 application/json; charset=utf-8 +2017-12-15 18:48:45.655 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" completed keep alive response. +2017-12-15 18:49:26.717 +05:30 [Debug] Connection id ""0HLA3NOQQM0UL"" received FIN. +2017-12-15 18:49:26.719 +05:30 [Debug] Connection id ""0HLA3NOQQM0UL"" disconnecting. +2017-12-15 18:49:26.720 +05:30 [Debug] Connection id ""0HLA3NOQQM0UL"" sending FIN. +2017-12-15 18:49:26.734 +05:30 [Debug] Connection id ""0HLA3NOQQM0UL"" sent FIN with status "0". +2017-12-15 18:49:26.741 +05:30 [Debug] Connection id ""0HLA3NOQQM0UL"" stopped. +2017-12-15 18:51:16.735 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" received FIN. +2017-12-15 18:51:16.735 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" disconnecting. +2017-12-15 18:51:16.736 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" sending FIN. +2017-12-15 18:51:16.736 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" sent FIN with status "0". +2017-12-15 18:51:16.737 +05:30 [Debug] Connection id ""0HLA3NOQQM0UM"" stopped. +2017-12-15 18:55:56.739 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" started. +2017-12-15 18:55:56.744 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:55:56.744 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:55:56.745 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:55:59.797 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:56:01.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:01.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:01.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:01.792 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5044.6791ms +2017-12-15 18:56:01.797 +05:30 [Information] Request finished in 5053.8124ms 200 application/json; charset=utf-8 +2017-12-15 18:56:01.798 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" completed keep alive response. +2017-12-15 18:56:01.827 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-15 18:56:01.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-15 18:56:01.829 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-15 18:56:04.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-15 18:56:07.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:07.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:07.009 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:07.155 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5325.7377ms +2017-12-15 18:56:07.157 +05:30 [Information] Request finished in 5331.7153ms 200 application/json; charset=utf-8 +2017-12-15 18:56:07.157 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" completed keep alive response. +2017-12-15 18:56:07.471 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-15 18:56:07.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-15 18:56:07.472 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-15 18:56:10.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-15 18:56:11.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:11.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:11.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:11.061 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3585.5213ms +2017-12-15 18:56:11.065 +05:30 [Information] Request finished in 3593.4887ms 200 application/json; charset=utf-8 +2017-12-15 18:56:11.065 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" completed keep alive response. +2017-12-15 18:56:11.116 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-15 18:56:11.117 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-15 18:56:11.118 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-15 18:56:14.176 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-15 18:56:15.928 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:15.928 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:15.930 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:15.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4850.3036ms +2017-12-15 18:56:15.972 +05:30 [Information] Request finished in 4856.2896ms 200 application/json; charset=utf-8 +2017-12-15 18:56:15.973 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" completed keep alive response. +2017-12-15 18:56:18.517 +05:30 [Debug] Connection id ""0HLA3NOQQM0UO"" started. +2017-12-15 18:56:18.518 +05:30 [Debug] Connection id ""0HLA3NOQQM0UP"" started. +2017-12-15 18:56:18.520 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-15 18:56:18.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-15 18:56:18.522 +05:30 [Debug] Connection id ""0HLA3NOQQM0UQ"" started. +2017-12-15 18:56:18.522 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-15 18:56:18.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-15 18:56:18.523 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-15 18:56:18.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-15 18:56:18.545 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-15 18:56:18.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-15 18:56:18.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-15 18:56:18.548 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-15 18:56:18.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-15 18:56:18.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-15 18:56:18.675 +05:30 [Debug] Connection id ""0HLA3NOQQM0UR"" started. +2017-12-15 18:56:18.675 +05:30 [Debug] Connection id ""0HLA3NOQQM0US"" started. +2017-12-15 18:56:18.676 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-15 18:56:18.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-15 18:56:18.700 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-15 18:56:18.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-15 18:56:18.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-15 18:56:18.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-15 18:56:20.758 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:56:20.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:56:21.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:56:21.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:56:21.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:56:21.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:21.896 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:56:21.897 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:21.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:21.902 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3353.5972ms +2017-12-15 18:56:21.904 +05:30 [Information] Request finished in 3383.3999ms 200 application/json; charset=utf-8 +2017-12-15 18:56:21.905 +05:30 [Debug] Connection id ""0HLA3NOQQM0UP"" completed keep alive response. +2017-12-15 18:56:22.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-15 18:56:22.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-15 18:56:22.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-15 18:56:22.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:22.856 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:56:22.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:22.861 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:22.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4345.3201ms +2017-12-15 18:56:22.874 +05:30 [Information] Request finished in 4355.9789ms 200 application/json; charset=utf-8 +2017-12-15 18:56:22.875 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" completed keep alive response. +2017-12-15 18:56:24.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:24.599 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:56:24.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:24.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:24.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:24.603 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:56:24.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:24.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:24.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5901.675ms +2017-12-15 18:56:24.612 +05:30 [Information] Request finished in 5935.3575ms 200 application/json; charset=utf-8 +2017-12-15 18:56:24.613 +05:30 [Debug] Connection id ""0HLA3NOQQM0UR"" completed keep alive response. +2017-12-15 18:56:24.655 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5919.2209ms +2017-12-15 18:56:24.696 +05:30 [Information] Request finished in 5990.7736ms 200 application/json; charset=utf-8 +2017-12-15 18:56:24.696 +05:30 [Debug] Connection id ""0HLA3NOQQM0US"" completed keep alive response. +2017-12-15 18:56:25.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:56:25.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:56:26.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:26.615 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:56:26.615 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:26.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:26.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8065.4221ms +2017-12-15 18:56:26.618 +05:30 [Information] Request finished in 8094.5707ms 200 application/json; charset=utf-8 +2017-12-15 18:56:26.619 +05:30 [Debug] Connection id ""0HLA3NOQQM0UQ"" completed keep alive response. +2017-12-15 18:56:27.696 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:27.696 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:56:27.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:27.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:27.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5604.4897ms +2017-12-15 18:56:27.743 +05:30 [Information] Request finished in 5659.9586ms 200 application/json; charset=utf-8 +2017-12-15 18:56:27.744 +05:30 [Debug] Connection id ""0HLA3NOQQM0UP"" completed keep alive response. +2017-12-15 18:56:30.694 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:56:30.953 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:56:31.530 +05:30 [Fatal] Sequence contains no elements +2017-12-15 18:56:31.532 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-15 18:56:42.672 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:56:42.673 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:56:42.673 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:56:42.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:56:42.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24150.034ms +2017-12-15 18:56:42.707 +05:30 [Information] Request finished in 24185.5832ms 200 application/json; charset=utf-8 +2017-12-15 18:56:42.708 +05:30 [Debug] Connection id ""0HLA3NOQQM0UO"" completed keep alive response. +2017-12-15 18:57:12.575 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:57:12.575 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-15 18:57:12.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-15 18:57:15.621 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:57:19.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:57:19.869 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:57:19.869 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:57:19.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:57:19.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7356.0607ms +2017-12-15 18:57:19.943 +05:30 [Information] Request finished in 7365.9393ms 200 application/json; charset=utf-8 +2017-12-15 18:57:19.943 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" completed keep alive response. +2017-12-15 18:57:20.004 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-15 18:57:20.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-15 18:57:20.008 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-15 18:57:20.009 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-15 18:57:20.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-15 18:57:20.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-15 18:57:20.023 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:57:20.024 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:57:20.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:57:20.048 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-15 18:57:20.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-15 18:57:20.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-15 18:57:22.176 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-15 18:57:22.235 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:57:23.115 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:57:23.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-15 18:57:24.185 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:57:24.186 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:57:24.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:57:24.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:57:24.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4181.1305ms +2017-12-15 18:57:24.212 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-15 18:57:24.212 +05:30 [Information] Request finished in 4189.3594ms 200 application/json; charset=utf-8 +2017-12-15 18:57:24.212 +05:30 [Debug] Connection id ""0HLA3NOQQM0UP"" completed keep alive response. +2017-12-15 18:57:24.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-15 18:57:24.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-15 18:57:24.757 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:57:24.758 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:57:24.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:57:24.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:57:24.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4760.023ms +2017-12-15 18:57:24.774 +05:30 [Information] Request finished in 4774.1418ms 200 application/json; charset=utf-8 +2017-12-15 18:57:24.775 +05:30 [Debug] Connection id ""0HLA3NOQQM0US"" completed keep alive response. +2017-12-15 18:57:26.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:57:26.111 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:57:26.111 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:57:26.112 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:57:26.114 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 6098.3255ms +2017-12-15 18:57:26.117 +05:30 [Information] Request finished in 6117.25ms 200 application/json; charset=utf-8 +2017-12-15 18:57:26.118 +05:30 [Debug] Connection id ""0HLA3NOQQM0UR"" completed keep alive response. +2017-12-15 18:57:27.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-15 18:57:28.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:57:28.144 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:57:28.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:57:28.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:57:28.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3936.0215ms +2017-12-15 18:57:28.153 +05:30 [Information] Request finished in 3940.8251ms 200 application/json; charset=utf-8 +2017-12-15 18:57:28.153 +05:30 [Debug] Connection id ""0HLA3NOQQM0UO"" completed keep alive response. +2017-12-15 18:57:55.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-15 18:57:55.899 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-15 18:57:55.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-15 18:57:55.900 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-15 18:57:55.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 35854.8014ms +2017-12-15 18:57:55.910 +05:30 [Information] Request finished in 35862.7017ms 200 application/json; charset=utf-8 +2017-12-15 18:57:55.910 +05:30 [Debug] Connection id ""0HLA3NOQQM0UQ"" completed keep alive response. +2017-12-15 18:58:36.735 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" received FIN. +2017-12-15 18:58:36.735 +05:30 [Debug] Connection id ""0HLA3NOQQM0US"" received FIN. +2017-12-15 18:58:36.735 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" disconnecting. +2017-12-15 18:58:36.735 +05:30 [Debug] Connection id ""0HLA3NOQQM0UP"" received FIN. +2017-12-15 18:58:36.736 +05:30 [Debug] Connection id ""0HLA3NOQQM0UO"" received FIN. +2017-12-15 18:58:36.735 +05:30 [Debug] Connection id ""0HLA3NOQQM0US"" disconnecting. +2017-12-15 18:58:36.736 +05:30 [Debug] Connection id ""0HLA3NOQQM0UO"" disconnecting. +2017-12-15 18:58:36.736 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" sending FIN. +2017-12-15 18:58:36.736 +05:30 [Debug] Connection id ""0HLA3NOQQM0US"" sending FIN. +2017-12-15 18:58:36.736 +05:30 [Debug] Connection id ""0HLA3NOQQM0UP"" disconnecting. +2017-12-15 18:58:36.737 +05:30 [Debug] Connection id ""0HLA3NOQQM0UO"" sending FIN. +2017-12-15 18:58:36.737 +05:30 [Debug] Connection id ""0HLA3NOQQM0UR"" received FIN. +2017-12-15 18:58:36.737 +05:30 [Debug] Connection id ""0HLA3NOQQM0UO"" sent FIN with status "0". +2017-12-15 18:58:36.738 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" sent FIN with status "0". +2017-12-15 18:58:36.759 +05:30 [Debug] Connection id ""0HLA3NOQQM0UR"" disconnecting. +2017-12-15 18:58:36.759 +05:30 [Debug] Connection id ""0HLA3NOQQM0UN"" stopped. +2017-12-15 18:58:36.759 +05:30 [Debug] Connection id ""0HLA3NOQQM0UO"" stopped. +2017-12-15 18:58:36.759 +05:30 [Debug] Connection id ""0HLA3NOQQM0UP"" sending FIN. +2017-12-15 18:58:36.759 +05:30 [Debug] Connection id ""0HLA3NOQQM0US"" sent FIN with status "0". +2017-12-15 18:58:36.759 +05:30 [Debug] Connection id ""0HLA3NOQQM0US"" stopped. +2017-12-15 18:58:36.759 +05:30 [Debug] Connection id ""0HLA3NOQQM0UR"" sending FIN. +2017-12-15 18:58:36.760 +05:30 [Debug] Connection id ""0HLA3NOQQM0UR"" sent FIN with status "0". +2017-12-15 18:58:36.760 +05:30 [Debug] Connection id ""0HLA3NOQQM0UR"" stopped. +2017-12-15 18:58:36.760 +05:30 [Debug] Connection id ""0HLA3NOQQM0UP"" sent FIN with status "0". +2017-12-15 18:58:36.760 +05:30 [Debug] Connection id ""0HLA3NOQQM0UP"" stopped. +2017-12-15 19:00:26.720 +05:30 [Debug] Connection id ""0HLA3NOQQM0UQ"" received FIN. +2017-12-15 19:00:26.720 +05:30 [Debug] Connection id ""0HLA3NOQQM0UQ"" disconnecting. +2017-12-15 19:00:26.721 +05:30 [Debug] Connection id ""0HLA3NOQQM0UQ"" sending FIN. +2017-12-15 19:00:26.721 +05:30 [Debug] Connection id ""0HLA3NOQQM0UQ"" sent FIN with status "0". +2017-12-15 19:00:26.721 +05:30 [Debug] Connection id ""0HLA3NOQQM0UQ"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171216.txt b/src/Api.Socioboard/wwwroot/log/log-20171216.txt new file mode 100644 index 000000000..d3552e6fb --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171216.txt @@ -0,0 +1,662 @@ +2017-12-16 12:17:58.839 +05:30 [Debug] Hosting starting +2017-12-16 12:17:59.308 +05:30 [Debug] Hosting started +2017-12-16 12:17:59.415 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" started. +2017-12-16 12:17:59.419 +05:30 [Debug] Connection id ""0HLA4A3P2RRC5"" started. +2017-12-16 12:17:59.728 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-16 12:17:59.728 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-16 12:17:59.957 +05:30 [Information] Request finished in 174.9246ms 200 +2017-12-16 12:18:00.059 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" completed keep alive response. +2017-12-16 12:18:01.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-16 12:18:01.750 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"7e9ea762-f992-4bcb-874f-a944373cce56"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-16 12:18:02.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-16 12:18:02.149 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-16 12:18:02.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-16 12:18:02.203 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 12:18:02.211 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 12:18:02.213 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 12:18:02.670 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 626.303ms +2017-12-16 12:18:02.764 +05:30 [Information] Request finished in 3095.5914ms 200 application/json; charset=utf-8 +2017-12-16 12:18:02.767 +05:30 [Debug] Connection id ""0HLA4A3P2RRC5"" completed keep alive response. +2017-12-16 12:18:02.846 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-16 12:18:02.849 +05:30 [Debug] Request did not match any routes. +2017-12-16 12:18:02.863 +05:30 [Debug] The request path "" does not match the path filter +2017-12-16 12:18:02.866 +05:30 [Information] Request finished in 20.8953ms 404 +2017-12-16 12:18:02.867 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" completed keep alive response. +2017-12-16 12:18:03.178 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 12:18:03.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 12:18:03.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 12:18:06.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 12:18:14.936 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 12:18:14.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 12:18:14.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 12:18:14.971 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11787.3442ms +2017-12-16 12:18:14.976 +05:30 [Information] Request finished in 11809.1436ms 200 application/json; charset=utf-8 +2017-12-16 12:18:14.976 +05:30 [Debug] Connection id ""0HLA4A3P2RRC5"" completed keep alive response. +2017-12-16 12:18:27.129 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 12:18:27.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 12:18:27.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 12:18:30.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 12:18:30.728 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 12:18:30.728 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 12:18:30.729 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 12:18:30.731 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3597.0523ms +2017-12-16 12:18:30.736 +05:30 [Information] Request finished in 3605.6859ms 200 application/json; charset=utf-8 +2017-12-16 12:18:30.737 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" completed keep alive response. +2017-12-16 12:18:30.874 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 12:18:30.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 12:18:30.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 12:18:33.931 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 12:18:34.465 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 12:18:34.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 12:18:34.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 12:18:34.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3591.903ms +2017-12-16 12:18:34.472 +05:30 [Information] Request finished in 3601.0021ms 200 application/json; charset=utf-8 +2017-12-16 12:18:34.473 +05:30 [Debug] Connection id ""0HLA4A3P2RRC5"" completed keep alive response. +2017-12-16 12:18:34.510 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 12:18:34.511 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 12:18:34.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 12:18:37.546 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 12:18:38.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 12:18:38.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 12:18:38.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 12:18:38.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3573.5348ms +2017-12-16 12:18:38.089 +05:30 [Information] Request finished in 3580.8606ms 200 application/json; charset=utf-8 +2017-12-16 12:18:38.089 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" completed keep alive response. +2017-12-16 12:19:50.016 +05:30 [Debug] Connection id ""0HLA4A3P2RRC5"" received FIN. +2017-12-16 12:19:50.016 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" received FIN. +2017-12-16 12:19:50.018 +05:30 [Debug] Connection id ""0HLA4A3P2RRC5"" disconnecting. +2017-12-16 12:19:50.019 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" disconnecting. +2017-12-16 12:19:50.020 +05:30 [Debug] Connection id ""0HLA4A3P2RRC5"" sending FIN. +2017-12-16 12:19:50.020 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" sending FIN. +2017-12-16 12:19:50.033 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" sent FIN with status "0". +2017-12-16 12:19:50.033 +05:30 [Debug] Connection id ""0HLA4A3P2RRC5"" sent FIN with status "0". +2017-12-16 12:19:50.036 +05:30 [Debug] Connection id ""0HLA4A3P2RRC5"" stopped. +2017-12-16 12:19:50.036 +05:30 [Debug] Connection id ""0HLA4A3P2RRC4"" stopped. +2017-12-16 12:37:53.178 +05:30 [Debug] Connection id ""0HLA4A3P2RRC6"" started. +2017-12-16 12:37:53.180 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 12:37:53.181 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 12:37:53.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 12:37:56.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 12:37:58.456 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 12:37:58.456 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 12:37:58.457 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 12:37:58.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5275.3298ms +2017-12-16 12:37:58.461 +05:30 [Information] Request finished in 5280.1681ms 200 application/json; charset=utf-8 +2017-12-16 12:37:58.462 +05:30 [Debug] Connection id ""0HLA4A3P2RRC6"" completed keep alive response. +2017-12-16 12:40:00.014 +05:30 [Debug] Connection id ""0HLA4A3P2RRC6"" received FIN. +2017-12-16 12:40:00.015 +05:30 [Debug] Connection id ""0HLA4A3P2RRC6"" disconnecting. +2017-12-16 12:40:00.015 +05:30 [Debug] Connection id ""0HLA4A3P2RRC6"" sending FIN. +2017-12-16 12:40:00.016 +05:30 [Debug] Connection id ""0HLA4A3P2RRC6"" sent FIN with status "0". +2017-12-16 12:40:00.016 +05:30 [Debug] Connection id ""0HLA4A3P2RRC6"" stopped. +2017-12-16 13:11:25.459 +05:30 [Debug] Hosting starting +2017-12-16 13:11:25.690 +05:30 [Debug] Hosting started +2017-12-16 13:11:25.893 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" started. +2017-12-16 13:11:25.894 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" started. +2017-12-16 13:11:26.144 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-16 13:11:26.143 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-16 13:11:26.218 +05:30 [Information] Request finished in 159.9949ms 200 +2017-12-16 13:11:26.271 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" completed keep alive response. +2017-12-16 13:11:27.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-16 13:11:27.290 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"e1e27a99-d534-47ba-b0fe-abf6459db0b6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-16 13:11:27.357 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:11:27.358 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:11:27.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-16 13:11:27.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:11:27.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-16 13:11:27.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-16 13:11:27.662 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:11:27.668 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:11:27.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:11:27.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 508.3504ms +2017-12-16 13:11:28.002 +05:30 [Information] Request finished in 1958.5476ms 200 application/json; charset=utf-8 +2017-12-16 13:11:28.004 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" completed keep alive response. +2017-12-16 13:11:31.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:11:37.468 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:11:37.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:11:37.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:11:37.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10056.8133ms +2017-12-16 13:11:37.480 +05:30 [Information] Request finished in 10143.3087ms 200 application/json; charset=utf-8 +2017-12-16 13:11:37.480 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" completed keep alive response. +2017-12-16 13:11:46.951 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:11:46.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:11:46.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:11:48.954 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:11:48.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:11:48.956 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:11:50.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:11:50.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:11:50.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:11:50.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:11:50.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3632.6705ms +2017-12-16 13:11:50.591 +05:30 [Information] Request finished in 3641.8366ms 200 application/json; charset=utf-8 +2017-12-16 13:11:50.591 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" completed keep alive response. +2017-12-16 13:11:50.627 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:11:50.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:11:50.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:11:51.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:11:52.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:11:52.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:11:52.553 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:11:52.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3597.5832ms +2017-12-16 13:11:52.557 +05:30 [Information] Request finished in 3605.7525ms 200 application/json; charset=utf-8 +2017-12-16 13:11:52.557 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" completed keep alive response. +2017-12-16 13:11:53.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:11:54.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:11:54.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:11:54.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:11:54.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3657.3381ms +2017-12-16 13:11:54.369 +05:30 [Information] Request finished in 3730.6925ms 200 application/json; charset=utf-8 +2017-12-16 13:11:54.370 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" completed keep alive response. +2017-12-16 13:11:54.475 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:11:54.475 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:11:54.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:11:57.508 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:11:58.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:11:58.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:11:58.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:11:58.077 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3600.5462ms +2017-12-16 13:11:58.080 +05:30 [Information] Request finished in 3605.2356ms 200 application/json; charset=utf-8 +2017-12-16 13:11:58.080 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" completed keep alive response. +2017-12-16 13:12:00.665 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:12:00.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:12:00.665 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:12:03.701 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:12:04.266 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:04.267 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:04.270 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:04.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3605.2001ms +2017-12-16 13:12:04.294 +05:30 [Information] Request finished in 3621.822ms 200 application/json; charset=utf-8 +2017-12-16 13:12:04.295 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" completed keep alive response. +2017-12-16 13:12:04.331 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 57 +2017-12-16 13:12:04.331 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-16 13:12:04.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-16 13:12:07.443 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-16 13:12:09.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:09.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:09.536 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:09.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5349.6122ms +2017-12-16 13:12:09.691 +05:30 [Information] Request finished in 5360.5883ms 200 application/json; charset=utf-8 +2017-12-16 13:12:09.692 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" completed keep alive response. +2017-12-16 13:12:09.905 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateTrialStatus application/x-www-form-urlencoded 9 +2017-12-16 13:12:09.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateTrialStatus"'. +2017-12-16 13:12:09.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateTrialStatus (Api.Socioboard)" +2017-12-16 13:12:12.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateTrialStatus (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:12:14.655 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateTrialStatus (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:14.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:14.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:14.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateTrialStatus (Api.Socioboard)" in 4750.3924ms +2017-12-16 13:12:14.663 +05:30 [Information] Request finished in 4757.1723ms 200 application/json; charset=utf-8 +2017-12-16 13:12:14.664 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" completed keep alive response. +2017-12-16 13:12:17.897 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:12:17.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:12:17.898 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:12:20.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:12:21.521 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:21.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:21.522 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:21.523 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.3681ms +2017-12-16 13:12:21.525 +05:30 [Information] Request finished in 3628.9851ms 200 application/json; charset=utf-8 +2017-12-16 13:12:21.525 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" completed keep alive response. +2017-12-16 13:12:21.571 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487122&groupId= +2017-12-16 13:12:21.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-16 13:12:21.573 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-16 13:12:24.619 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487122", ""]) - ModelState is Valid +2017-12-16 13:12:26.456 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:26.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:26.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:26.513 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4925.9807ms +2017-12-16 13:12:26.523 +05:30 [Information] Request finished in 4950.3979ms 200 application/json; charset=utf-8 +2017-12-16 13:12:26.524 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" completed keep alive response. +2017-12-16 13:12:28.196 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ8"" started. +2017-12-16 13:12:28.197 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ9"" started. +2017-12-16 13:12:28.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=487122 +2017-12-16 13:12:28.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=487122 +2017-12-16 13:12:28.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-16 13:12:28.199 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-16 13:12:28.200 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487122 +2017-12-16 13:12:28.200 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-16 13:12:28.200 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-16 13:12:28.200 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-16 13:12:28.203 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-16 13:12:28.203 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139183 +2017-12-16 13:12:28.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-16 13:12:28.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-16 13:12:28.325 +05:30 [Debug] Connection id ""0HLA4B1KM7VJB"" started. +2017-12-16 13:12:28.325 +05:30 [Debug] Connection id ""0HLA4B1KM7VJA"" started. +2017-12-16 13:12:29.089 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1139183&userId=487122 +2017-12-16 13:12:29.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-16 13:12:29.100 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-16 13:12:30.093 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=487122 +2017-12-16 13:12:30.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-16 13:12:30.094 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-16 13:12:33.183 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:12:33.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:12:33.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:12:33.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1139183"]) - ModelState is Valid +2017-12-16 13:12:33.314 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139183"]) - ModelState is Valid +2017-12-16 13:12:33.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:12:34.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:34.480 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:12:34.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:34.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:34.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6281.2672ms +2017-12-16 13:12:34.489 +05:30 [Information] Request finished in 6292.5002ms 200 application/json; charset=utf-8 +2017-12-16 13:12:34.489 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" completed keep alive response. +2017-12-16 13:12:34.496 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1139183 +2017-12-16 13:12:34.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-16 13:12:34.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-16 13:12:35.302 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:35.303 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:12:35.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:35.305 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:35.315 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7111.5508ms +2017-12-16 13:12:35.318 +05:30 [Information] Request finished in 7120.6502ms 200 application/json; charset=utf-8 +2017-12-16 13:12:35.318 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ8"" completed keep alive response. +2017-12-16 13:12:35.594 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:35.595 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:12:35.595 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:35.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:35.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7399.2985ms +2017-12-16 13:12:35.608 +05:30 [Information] Request finished in 7411.3846ms 200 application/json; charset=utf-8 +2017-12-16 13:12:35.609 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ9"" completed keep alive response. +2017-12-16 13:12:35.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:35.617 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:12:35.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:35.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:35.628 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7421.2096ms +2017-12-16 13:12:35.630 +05:30 [Information] Request finished in 7434.5737ms 200 application/json; charset=utf-8 +2017-12-16 13:12:35.631 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" completed keep alive response. +2017-12-16 13:12:36.113 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:36.113 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:12:36.113 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:36.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:36.115 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6018.945ms +2017-12-16 13:12:36.121 +05:30 [Information] Request finished in 6027.3668ms 200 application/json; charset=utf-8 +2017-12-16 13:12:36.121 +05:30 [Debug] Connection id ""0HLA4B1KM7VJA"" completed keep alive response. +2017-12-16 13:12:36.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:36.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:12:36.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:36.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:36.137 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7031.9943ms +2017-12-16 13:12:36.140 +05:30 [Information] Request finished in 7049.0658ms 200 application/json; charset=utf-8 +2017-12-16 13:12:36.140 +05:30 [Debug] Connection id ""0HLA4B1KM7VJB"" completed keep alive response. +2017-12-16 13:12:37.560 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1139183"]) - ModelState is Valid +2017-12-16 13:12:38.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:12:38.811 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:12:38.811 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:12:38.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:12:38.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4347.6621ms +2017-12-16 13:12:38.850 +05:30 [Information] Request finished in 4355.9253ms 200 application/json; charset=utf-8 +2017-12-16 13:12:38.850 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" completed keep alive response. +2017-12-16 13:15:06.244 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ8"" received FIN. +2017-12-16 13:15:06.244 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ9"" received FIN. +2017-12-16 13:15:06.245 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" received FIN. +2017-12-16 13:15:06.245 +05:30 [Debug] Connection id ""0HLA4B1KM7VJA"" received FIN. +2017-12-16 13:15:06.245 +05:30 [Debug] Connection id ""0HLA4B1KM7VJB"" received FIN. +2017-12-16 13:15:06.246 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" received FIN. +2017-12-16 13:15:06.271 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ8"" disconnecting. +2017-12-16 13:15:06.271 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" disconnecting. +2017-12-16 13:15:06.272 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ9"" disconnecting. +2017-12-16 13:15:06.273 +05:30 [Debug] Connection id ""0HLA4B1KM7VJA"" disconnecting. +2017-12-16 13:15:06.274 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ9"" sending FIN. +2017-12-16 13:15:06.275 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" disconnecting. +2017-12-16 13:15:06.273 +05:30 [Debug] Connection id ""0HLA4B1KM7VJB"" disconnecting. +2017-12-16 13:15:06.273 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ8"" sending FIN. +2017-12-16 13:15:06.279 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" sending FIN. +2017-12-16 13:15:06.279 +05:30 [Debug] Connection id ""0HLA4B1KM7VJA"" sending FIN. +2017-12-16 13:15:06.279 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" sending FIN. +2017-12-16 13:15:06.280 +05:30 [Debug] Connection id ""0HLA4B1KM7VJB"" sending FIN. +2017-12-16 13:15:06.287 +05:30 [Debug] Connection id ""0HLA4B1KM7VJA"" sent FIN with status "0". +2017-12-16 13:15:06.287 +05:30 [Debug] Connection id ""0HLA4B1KM7VJB"" sent FIN with status "0". +2017-12-16 13:15:06.291 +05:30 [Debug] Connection id ""0HLA4B1KM7VJA"" stopped. +2017-12-16 13:15:06.291 +05:30 [Debug] Connection id ""0HLA4B1KM7VJB"" stopped. +2017-12-16 13:15:06.292 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" sent FIN with status "0". +2017-12-16 13:15:06.293 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ6"" stopped. +2017-12-16 13:15:06.293 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" sent FIN with status "0". +2017-12-16 13:15:06.293 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ8"" sent FIN with status "0". +2017-12-16 13:15:06.294 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ8"" stopped. +2017-12-16 13:15:06.294 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ7"" stopped. +2017-12-16 13:15:06.295 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ9"" sent FIN with status "0". +2017-12-16 13:15:06.295 +05:30 [Debug] Connection id ""0HLA4B1KM7VJ9"" stopped. +2017-12-16 13:17:20.804 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" started. +2017-12-16 13:17:20.823 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:17:20.824 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:17:20.824 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:17:23.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:17:24.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:24.456 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:24.457 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:24.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3633.1918ms +2017-12-16 13:17:24.462 +05:30 [Information] Request finished in 3655.1188ms 200 application/json; charset=utf-8 +2017-12-16 13:17:24.463 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" completed keep alive response. +2017-12-16 13:17:25.504 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:17:25.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:17:25.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:17:28.102 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" started. +2017-12-16 13:17:28.105 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:17:28.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:17:28.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:17:28.570 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:17:29.174 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:29.175 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:29.176 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:29.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3655.8381ms +2017-12-16 13:17:29.179 +05:30 [Information] Request finished in 3675.8145ms 200 application/json; charset=utf-8 +2017-12-16 13:17:29.179 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" completed keep alive response. +2017-12-16 13:17:29.208 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:17:29.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:17:29.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:17:31.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:17:31.726 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:31.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:31.728 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:31.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3620.5944ms +2017-12-16 13:17:31.732 +05:30 [Information] Request finished in 3628.5173ms 200 application/json; charset=utf-8 +2017-12-16 13:17:31.733 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" completed keep alive response. +2017-12-16 13:17:32.263 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:17:32.795 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:32.796 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:32.797 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:32.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3585.012ms +2017-12-16 13:17:32.802 +05:30 [Information] Request finished in 3593.2587ms 200 application/json; charset=utf-8 +2017-12-16 13:17:32.802 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" completed keep alive response. +2017-12-16 13:17:32.812 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487122&groupId=1139183 +2017-12-16 13:17:32.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-16 13:17:32.813 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-16 13:17:35.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487122", "1139183"]) - ModelState is Valid +2017-12-16 13:17:37.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:37.577 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:37.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:37.581 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4766.436ms +2017-12-16 13:17:37.584 +05:30 [Information] Request finished in 4772.5237ms 200 application/json; charset=utf-8 +2017-12-16 13:17:37.585 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" completed keep alive response. +2017-12-16 13:17:38.496 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" started. +2017-12-16 13:17:38.496 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" started. +2017-12-16 13:17:38.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=487122 +2017-12-16 13:17:38.499 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139183 +2017-12-16 13:17:38.499 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-16 13:17:38.499 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-16 13:17:38.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-16 13:17:38.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-16 13:17:38.500 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487122 +2017-12-16 13:17:38.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-16 13:17:38.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-16 13:17:38.507 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=487122 +2017-12-16 13:17:38.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-16 13:17:38.509 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-16 13:17:38.578 +05:30 [Debug] Connection id ""0HLA4B1KM7VJG"" started. +2017-12-16 13:17:38.578 +05:30 [Debug] Connection id ""0HLA4B1KM7VJH"" started. +2017-12-16 13:17:38.582 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=487122 +2017-12-16 13:17:38.583 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1139183&userId=487122 +2017-12-16 13:17:38.583 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-16 13:17:38.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-16 13:17:38.586 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-16 13:17:38.587 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-16 13:17:41.565 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139183"]) - ModelState is Valid +2017-12-16 13:17:41.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:17:41.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:17:41.661 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:17:41.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:17:41.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1139183"]) - ModelState is Valid +2017-12-16 13:17:42.262 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:42.263 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:17:42.263 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:42.264 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:42.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3764.4002ms +2017-12-16 13:17:42.270 +05:30 [Information] Request finished in 3774.1098ms 200 application/json; charset=utf-8 +2017-12-16 13:17:42.270 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" completed keep alive response. +2017-12-16 13:17:42.273 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1139183 +2017-12-16 13:17:42.273 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-16 13:17:42.274 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-16 13:17:42.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:42.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:42.315 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:17:42.315 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:17:42.315 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:42.315 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:42.316 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:42.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:42.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3817.6656ms +2017-12-16 13:17:42.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3811.4722ms +2017-12-16 13:17:42.325 +05:30 [Information] Request finished in 3829.3029ms 200 application/json; charset=utf-8 +2017-12-16 13:17:42.326 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" completed keep alive response. +2017-12-16 13:17:42.327 +05:30 [Information] Request finished in 3830.3485ms 200 application/json; charset=utf-8 +2017-12-16 13:17:42.328 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" completed keep alive response. +2017-12-16 13:17:42.798 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:42.798 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:17:42.798 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:42.799 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:42.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4296.5623ms +2017-12-16 13:17:42.802 +05:30 [Information] Request finished in 4304.6584ms 200 application/json; charset=utf-8 +2017-12-16 13:17:42.802 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" completed keep alive response. +2017-12-16 13:17:42.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:42.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:17:42.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:42.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:42.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4292.1037ms +2017-12-16 13:17:42.881 +05:30 [Information] Request finished in 4301.0038ms 200 application/json; charset=utf-8 +2017-12-16 13:17:42.882 +05:30 [Debug] Connection id ""0HLA4B1KM7VJG"" completed keep alive response. +2017-12-16 13:17:42.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:42.925 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:17:42.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:42.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:42.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4339.4512ms +2017-12-16 13:17:42.929 +05:30 [Information] Request finished in 4348.8807ms 200 application/json; charset=utf-8 +2017-12-16 13:17:42.929 +05:30 [Debug] Connection id ""0HLA4B1KM7VJH"" completed keep alive response. +2017-12-16 13:17:45.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1139183"]) - ModelState is Valid +2017-12-16 13:17:46.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:17:46.487 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:17:46.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:17:46.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:17:46.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4215.0894ms +2017-12-16 13:17:46.492 +05:30 [Information] Request finished in 4219.2793ms 200 application/json; charset=utf-8 +2017-12-16 13:17:46.493 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" completed keep alive response. +2017-12-16 13:18:32.809 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:18:32.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:18:32.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:18:35.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:18:36.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:18:36.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:18:36.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:18:36.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3616.5364ms +2017-12-16 13:18:36.434 +05:30 [Information] Request finished in 3645.2978ms 200 application/json; charset=utf-8 +2017-12-16 13:18:36.434 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" completed keep alive response. +2017-12-16 13:18:37.040 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:18:37.041 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:18:37.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:18:40.094 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:18:40.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:18:40.662 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:18:40.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:18:40.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3621.8347ms +2017-12-16 13:18:40.665 +05:30 [Information] Request finished in 3627.0376ms 200 application/json; charset=utf-8 +2017-12-16 13:18:40.666 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" completed keep alive response. +2017-12-16 13:18:40.685 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:18:40.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:18:40.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:18:43.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:18:44.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:18:44.337 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:18:44.338 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:18:44.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3652.348ms +2017-12-16 13:18:44.342 +05:30 [Information] Request finished in 3657.7362ms 200 application/json; charset=utf-8 +2017-12-16 13:18:44.343 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" completed keep alive response. +2017-12-16 13:18:44.349 +05:30 [Debug] Connection id ""0HLA4B1KM7VJG"" received FIN. +2017-12-16 13:18:44.350 +05:30 [Debug] Connection id ""0HLA4B1KM7VJH"" received FIN. +2017-12-16 13:18:44.350 +05:30 [Debug] Connection id ""0HLA4B1KM7VJG"" disconnecting. +2017-12-16 13:18:44.351 +05:30 [Debug] Connection id ""0HLA4B1KM7VJH"" disconnecting. +2017-12-16 13:18:44.351 +05:30 [Debug] Connection id ""0HLA4B1KM7VJG"" sending FIN. +2017-12-16 13:18:44.352 +05:30 [Debug] Connection id ""0HLA4B1KM7VJH"" sending FIN. +2017-12-16 13:18:44.352 +05:30 [Debug] Connection id ""0HLA4B1KM7VJG"" sent FIN with status "0". +2017-12-16 13:18:44.352 +05:30 [Debug] Connection id ""0HLA4B1KM7VJH"" sent FIN with status "0". +2017-12-16 13:18:44.352 +05:30 [Debug] Connection id ""0HLA4B1KM7VJG"" stopped. +2017-12-16 13:18:44.352 +05:30 [Debug] Connection id ""0HLA4B1KM7VJH"" stopped. +2017-12-16 13:18:44.354 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:18:44.355 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:18:44.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:18:47.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:18:47.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:18:47.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:18:47.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:18:47.999 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3642.5612ms +2017-12-16 13:18:48.002 +05:30 [Information] Request finished in 3649.8167ms 200 application/json; charset=utf-8 +2017-12-16 13:18:48.002 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" completed keep alive response. +2017-12-16 13:18:53.451 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:18:53.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:18:53.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:18:56.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:18:57.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:18:57.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:18:57.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:18:57.082 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3627.4394ms +2017-12-16 13:18:57.086 +05:30 [Information] Request finished in 3634.3279ms 200 application/json; charset=utf-8 +2017-12-16 13:18:57.086 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" completed keep alive response. +2017-12-16 13:19:08.820 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:19:08.820 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:19:08.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:19:11.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:19:12.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:12.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:12.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:12.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3654.6551ms +2017-12-16 13:19:12.479 +05:30 [Information] Request finished in 3659.198ms 200 application/json; charset=utf-8 +2017-12-16 13:19:12.479 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" completed keep alive response. +2017-12-16 13:19:12.486 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 57 +2017-12-16 13:19:12.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-16 13:19:12.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-16 13:19:15.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-16 13:19:17.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:17.294 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:17.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:17.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4806.6997ms +2017-12-16 13:19:17.298 +05:30 [Information] Request finished in 4811.9589ms 200 application/json; charset=utf-8 +2017-12-16 13:19:17.299 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" completed keep alive response. +2017-12-16 13:19:17.337 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-16 13:19:17.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-16 13:19:17.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-16 13:19:20.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-16 13:19:21.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:21.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:21.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:21.015 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3671.4937ms +2017-12-16 13:19:21.021 +05:30 [Information] Request finished in 3683.6824ms 200 application/json; charset=utf-8 +2017-12-16 13:19:21.022 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" completed keep alive response. +2017-12-16 13:19:21.031 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487122&groupId= +2017-12-16 13:19:21.032 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-16 13:19:21.032 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-16 13:19:24.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487122", ""]) - ModelState is Valid +2017-12-16 13:19:25.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:25.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:25.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:25.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4728.9698ms +2017-12-16 13:19:25.770 +05:30 [Information] Request finished in 4736.6654ms 200 application/json; charset=utf-8 +2017-12-16 13:19:25.771 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" completed keep alive response. +2017-12-16 13:19:26.620 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=487122 +2017-12-16 13:19:26.622 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-16 13:19:26.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-16 13:19:26.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487122 +2017-12-16 13:19:26.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-16 13:19:26.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-16 13:19:26.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=487122 +2017-12-16 13:19:26.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-16 13:19:26.630 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-16 13:19:26.630 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139183 +2017-12-16 13:19:26.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-16 13:19:26.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-16 13:19:26.702 +05:30 [Debug] Connection id ""0HLA4B1KM7VJJ"" started. +2017-12-16 13:19:26.702 +05:30 [Debug] Connection id ""0HLA4B1KM7VJI"" started. +2017-12-16 13:19:26.725 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=487122 +2017-12-16 13:19:26.726 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1139183&userId=487122 +2017-12-16 13:19:26.726 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-16 13:19:26.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-16 13:19:26.726 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-16 13:19:26.727 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-16 13:19:29.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:19:29.733 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139183"]) - ModelState is Valid +2017-12-16 13:19:29.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:19:30.659 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1139183"]) - ModelState is Valid +2017-12-16 13:19:30.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:30.661 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:19:30.661 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:19:30.663 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:30.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["487122"]) - ModelState is Valid +2017-12-16 13:19:30.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:30.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4056.2181ms +2017-12-16 13:19:30.690 +05:30 [Information] Request finished in 4070.6193ms 200 application/json; charset=utf-8 +2017-12-16 13:19:30.691 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" completed keep alive response. +2017-12-16 13:19:30.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1139183 +2017-12-16 13:19:30.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-16 13:19:30.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-16 13:19:30.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:30.776 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:19:30.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:30.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:30.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4141.4016ms +2017-12-16 13:19:30.779 +05:30 [Information] Request finished in 4160.7463ms 200 application/json; charset=utf-8 +2017-12-16 13:19:30.780 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" completed keep alive response. +2017-12-16 13:19:30.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:30.921 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:19:30.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:30.922 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:30.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4294.1675ms +2017-12-16 13:19:30.924 +05:30 [Information] Request finished in 4304.3549ms 200 application/json; charset=utf-8 +2017-12-16 13:19:30.925 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" completed keep alive response. +2017-12-16 13:19:31.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:31.283 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:19:31.283 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:31.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:31.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 4660.1406ms +2017-12-16 13:19:31.293 +05:30 [Information] Request finished in 4674.6582ms 200 application/json; charset=utf-8 +2017-12-16 13:19:31.293 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" completed keep alive response. +2017-12-16 13:19:31.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:31.828 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:19:31.828 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:31.829 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:31.831 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5103.1206ms +2017-12-16 13:19:31.833 +05:30 [Information] Request finished in 5129.8837ms 200 application/json; charset=utf-8 +2017-12-16 13:19:31.833 +05:30 [Debug] Connection id ""0HLA4B1KM7VJJ"" completed keep alive response. +2017-12-16 13:19:32.124 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:32.124 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:19:32.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:32.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:32.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5398.1758ms +2017-12-16 13:19:32.128 +05:30 [Information] Request finished in 5401.8967ms 200 application/json; charset=utf-8 +2017-12-16 13:19:32.128 +05:30 [Debug] Connection id ""0HLA4B1KM7VJI"" completed keep alive response. +2017-12-16 13:19:33.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1139183"]) - ModelState is Valid +2017-12-16 13:19:34.935 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-16 13:19:34.936 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-16 13:19:34.936 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-16 13:19:34.936 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-16 13:19:34.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4240.9195ms +2017-12-16 13:19:34.939 +05:30 [Information] Request finished in 4245.1371ms 200 application/json; charset=utf-8 +2017-12-16 13:19:34.939 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" completed keep alive response. +2017-12-16 13:20:36.242 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" received FIN. +2017-12-16 13:20:36.242 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" received FIN. +2017-12-16 13:20:36.243 +05:30 [Debug] Connection id ""0HLA4B1KM7VJI"" received FIN. +2017-12-16 13:20:36.243 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" disconnecting. +2017-12-16 13:20:36.243 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" received FIN. +2017-12-16 13:20:36.245 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" received FIN. +2017-12-16 13:20:36.245 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" disconnecting. +2017-12-16 13:20:36.247 +05:30 [Debug] Connection id ""0HLA4B1KM7VJJ"" received FIN. +2017-12-16 13:20:36.246 +05:30 [Debug] Connection id ""0HLA4B1KM7VJI"" disconnecting. +2017-12-16 13:20:36.250 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" disconnecting. +2017-12-16 13:20:36.250 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" sending FIN. +2017-12-16 13:20:36.247 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" sending FIN. +2017-12-16 13:20:36.272 +05:30 [Debug] Connection id ""0HLA4B1KM7VJJ"" disconnecting. +2017-12-16 13:20:36.273 +05:30 [Debug] Connection id ""0HLA4B1KM7VJI"" sending FIN. +2017-12-16 13:20:36.247 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" disconnecting. +2017-12-16 13:20:36.273 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" sent FIN with status "0". +2017-12-16 13:20:36.273 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" sending FIN. +2017-12-16 13:20:36.274 +05:30 [Debug] Connection id ""0HLA4B1KM7VJC"" stopped. +2017-12-16 13:20:36.274 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" sent FIN with status "0". +2017-12-16 13:20:36.275 +05:30 [Debug] Connection id ""0HLA4B1KM7VJE"" stopped. +2017-12-16 13:20:36.274 +05:30 [Debug] Connection id ""0HLA4B1KM7VJJ"" sending FIN. +2017-12-16 13:20:36.275 +05:30 [Debug] Connection id ""0HLA4B1KM7VJI"" sent FIN with status "0". +2017-12-16 13:20:36.276 +05:30 [Debug] Connection id ""0HLA4B1KM7VJI"" stopped. +2017-12-16 13:20:36.275 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" sending FIN. +2017-12-16 13:20:36.276 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" sent FIN with status "0". +2017-12-16 13:20:36.277 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" sent FIN with status "0". +2017-12-16 13:20:36.277 +05:30 [Debug] Connection id ""0HLA4B1KM7VJF"" stopped. +2017-12-16 13:20:36.277 +05:30 [Debug] Connection id ""0HLA4B1KM7VJD"" stopped. +2017-12-16 13:20:36.278 +05:30 [Debug] Connection id ""0HLA4B1KM7VJJ"" sent FIN with status "0". +2017-12-16 13:20:36.278 +05:30 [Debug] Connection id ""0HLA4B1KM7VJJ"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171218.txt b/src/Api.Socioboard/wwwroot/log/log-20171218.txt new file mode 100644 index 000000000..6e6a3a110 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171218.txt @@ -0,0 +1,5773 @@ +2017-12-18 11:03:09.220 +05:30 [Debug] Hosting starting +2017-12-18 11:03:10.223 +05:30 [Debug] Hosting started +2017-12-18 11:03:10.414 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" started. +2017-12-18 11:03:10.416 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" started. +2017-12-18 11:03:10.693 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 11:03:10.693 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 11:03:10.896 +05:30 [Information] Request finished in 119.1139ms 200 +2017-12-18 11:03:10.948 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" completed keep alive response. +2017-12-18 11:03:14.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 11:03:14.659 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cab76325-94c6-4111-a5e2-a23a37ec26c1"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 11:03:14.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 11:03:15.214 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 11:03:15.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 11:03:15.308 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 11:03:15.315 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:03:15.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:03:16.071 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 11:03:16.072 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 11:03:16.074 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 11:03:16.211 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1248.9799ms +2017-12-18 11:03:16.393 +05:30 [Information] Request finished in 5754.5365ms 200 application/json; charset=utf-8 +2017-12-18 11:03:16.397 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" completed keep alive response. +2017-12-18 11:03:16.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-18 11:03:16.506 +05:30 [Debug] Request did not match any routes. +2017-12-18 11:03:16.521 +05:30 [Debug] The request path "" does not match the path filter +2017-12-18 11:03:16.523 +05:30 [Information] Request finished in 19.7692ms 404 +2017-12-18 11:03:16.524 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" completed keep alive response. +2017-12-18 11:03:19.941 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 11:03:30.733 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:03:30.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:03:30.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:03:30.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14686.8397ms +2017-12-18 11:03:30.771 +05:30 [Information] Request finished in 14697.8479ms 200 application/json; charset=utf-8 +2017-12-18 11:03:30.772 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" completed keep alive response. +2017-12-18 11:03:45.422 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 11:03:45.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 11:03:45.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 11:03:48.470 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 11:03:49.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:03:49.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:03:49.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:03:49.075 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3649.1309ms +2017-12-18 11:03:49.077 +05:30 [Information] Request finished in 3654.7484ms 200 application/json; charset=utf-8 +2017-12-18 11:03:49.078 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" completed keep alive response. +2017-12-18 11:03:49.272 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 11:03:49.273 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 11:03:49.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 11:03:50.626 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 11:03:50.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 11:03:50.627 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 11:03:52.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 11:03:52.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:03:52.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:03:52.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:03:52.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3644.0951ms +2017-12-18 11:03:52.922 +05:30 [Information] Request finished in 3649.0628ms 200 application/json; charset=utf-8 +2017-12-18 11:03:52.922 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" completed keep alive response. +2017-12-18 11:03:52.988 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 11:03:52.989 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 11:03:52.989 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 11:03:53.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 11:03:54.272 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:03:54.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:03:54.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:03:54.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3647.6002ms +2017-12-18 11:03:54.285 +05:30 [Information] Request finished in 3657.5916ms 200 application/json; charset=utf-8 +2017-12-18 11:03:54.286 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" completed keep alive response. +2017-12-18 11:03:56.114 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 11:03:56.712 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:03:56.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:03:56.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:03:56.714 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3723.5216ms +2017-12-18 11:03:56.715 +05:30 [Information] Request finished in 3727.5062ms 200 application/json; charset=utf-8 +2017-12-18 11:03:56.716 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" completed keep alive response. +2017-12-18 11:04:06.560 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 11:04:06.561 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 11:04:06.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 11:04:09.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 11:04:10.196 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:10.196 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:10.197 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:10.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3636.1072ms +2017-12-18 11:04:10.211 +05:30 [Information] Request finished in 3648.3733ms 200 application/json; charset=utf-8 +2017-12-18 11:04:10.211 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" completed keep alive response. +2017-12-18 11:04:10.245 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 11:04:10.245 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 11:04:10.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 11:04:13.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 11:04:15.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:15.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:15.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:15.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5637.8967ms +2017-12-18 11:04:15.888 +05:30 [Information] Request finished in 5653.6984ms 200 application/json; charset=utf-8 +2017-12-18 11:04:15.889 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" completed keep alive response. +2017-12-18 11:04:16.146 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 11:04:16.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 11:04:16.148 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 11:04:19.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 11:04:19.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:19.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:19.797 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:19.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3650.1626ms +2017-12-18 11:04:19.810 +05:30 [Information] Request finished in 3663.6979ms 200 application/json; charset=utf-8 +2017-12-18 11:04:19.811 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" completed keep alive response. +2017-12-18 11:04:19.913 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 11:04:19.914 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 11:04:19.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 11:04:22.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 11:04:24.968 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:24.968 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:24.969 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:25.017 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5093.0069ms +2017-12-18 11:04:25.018 +05:30 [Information] Request finished in 5108.8428ms 200 application/json; charset=utf-8 +2017-12-18 11:04:25.019 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" completed keep alive response. +2017-12-18 11:04:27.219 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 11:04:27.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 11:04:27.224 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 11:04:27.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 11:04:27.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 11:04:27.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 11:04:27.417 +05:30 [Debug] Connection id ""0HLA5R39LKPCF"" started. +2017-12-18 11:04:27.418 +05:30 [Debug] Connection id ""0HLA5R39LKPCG"" started. +2017-12-18 11:04:27.419 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 11:04:27.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 11:04:27.420 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 11:04:27.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 11:04:27.421 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 11:04:27.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 11:04:27.438 +05:30 [Debug] Connection id ""0HLA5R39LKPCI"" started. +2017-12-18 11:04:27.438 +05:30 [Debug] Connection id ""0HLA5R39LKPCH"" started. +2017-12-18 11:04:28.220 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 11:04:28.221 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 11:04:28.222 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 11:04:29.222 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 11:04:29.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 11:04:29.224 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 11:04:32.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 11:04:32.448 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 11:04:32.451 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 11:04:32.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 11:04:32.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 11:04:32.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 11:04:33.751 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:33.752 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 11:04:33.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:33.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:33.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4531.3146ms +2017-12-18 11:04:33.761 +05:30 [Information] Request finished in 4537.1724ms 200 application/json; charset=utf-8 +2017-12-18 11:04:33.761 +05:30 [Debug] Connection id ""0HLA5R39LKPCH"" completed keep alive response. +2017-12-18 11:04:33.764 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 11:04:33.765 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 11:04:33.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 11:04:34.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:34.772 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 11:04:34.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:34.775 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:34.815 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:34.816 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 11:04:34.816 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:34.835 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7400.8514ms +2017-12-18 11:04:34.842 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:34.848 +05:30 [Information] Request finished in 7418.5819ms 200 application/json; charset=utf-8 +2017-12-18 11:04:34.849 +05:30 [Debug] Connection id ""0HLA5R39LKPCF"" completed keep alive response. +2017-12-18 11:04:34.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6641.4646ms +2017-12-18 11:04:34.894 +05:30 [Information] Request finished in 6673.0699ms 200 application/json; charset=utf-8 +2017-12-18 11:04:34.894 +05:30 [Debug] Connection id ""0HLA5R39LKPCI"" completed keep alive response. +2017-12-18 11:04:35.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:35.241 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 11:04:35.241 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:35.242 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:35.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 8018.2393ms +2017-12-18 11:04:35.247 +05:30 [Information] Request finished in 8028.2557ms 200 application/json; charset=utf-8 +2017-12-18 11:04:35.248 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" completed keep alive response. +2017-12-18 11:04:35.398 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:35.398 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 11:04:35.398 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:35.399 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:35.401 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 8161.9897ms +2017-12-18 11:04:35.403 +05:30 [Information] Request finished in 8169.88ms 200 application/json; charset=utf-8 +2017-12-18 11:04:35.403 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" completed keep alive response. +2017-12-18 11:04:40.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 11:04:41.985 +05:30 [Fatal] Sequence contains no elements +2017-12-18 11:04:42.177 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 11:04:42.812 +05:30 [Fatal] Sequence contains no elements +2017-12-18 11:04:42.813 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 11:04:43.556 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:43.556 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 11:04:43.556 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:43.558 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:43.602 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 9833.9658ms +2017-12-18 11:04:43.605 +05:30 [Information] Request finished in 9840.9106ms 200 application/json; charset=utf-8 +2017-12-18 11:04:43.606 +05:30 [Debug] Connection id ""0HLA5R39LKPCH"" completed keep alive response. +2017-12-18 11:04:51.269 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-18 11:04:51.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-18 11:04:51.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-18 11:04:54.332 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-18 11:04:54.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:04:54.866 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 11:04:54.867 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:04:54.868 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:04:54.895 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27463.6902ms +2017-12-18 11:04:54.923 +05:30 [Information] Request finished in 27485.4981ms 200 application/json; charset=utf-8 +2017-12-18 11:04:54.935 +05:30 [Debug] Connection id ""0HLA5R39LKPCG"" completed keep alive response. +2017-12-18 11:05:14.301 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 11:05:14.301 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 11:05:14.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 11:05:14.302 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 11:05:14.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 23080.3769ms +2017-12-18 11:05:14.357 +05:30 [Information] Request finished in 23087.7568ms 200 application/json; charset=utf-8 +2017-12-18 11:05:14.358 +05:30 [Debug] Connection id ""0HLA5R39LKPCF"" completed keep alive response. +2017-12-18 11:06:50.394 +05:30 [Debug] Connection id ""0HLA5R39LKPCI"" received FIN. +2017-12-18 11:06:50.394 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" received FIN. +2017-12-18 11:06:50.395 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" received FIN. +2017-12-18 11:06:50.395 +05:30 [Debug] Connection id ""0HLA5R39LKPCH"" received FIN. +2017-12-18 11:06:50.395 +05:30 [Debug] Connection id ""0HLA5R39LKPCF"" received FIN. +2017-12-18 11:06:50.395 +05:30 [Debug] Connection id ""0HLA5R39LKPCG"" received FIN. +2017-12-18 11:06:50.396 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" disconnecting. +2017-12-18 11:06:50.401 +05:30 [Debug] Connection id ""0HLA5R39LKPCI"" disconnecting. +2017-12-18 11:06:50.401 +05:30 [Debug] Connection id ""0HLA5R39LKPCH"" disconnecting. +2017-12-18 11:06:50.401 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" sending FIN. +2017-12-18 11:06:50.402 +05:30 [Debug] Connection id ""0HLA5R39LKPCG"" disconnecting. +2017-12-18 11:06:50.401 +05:30 [Debug] Connection id ""0HLA5R39LKPCF"" disconnecting. +2017-12-18 11:06:50.401 +05:30 [Debug] Connection id ""0HLA5R39LKPCI"" sending FIN. +2017-12-18 11:06:50.403 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" disconnecting. +2017-12-18 11:06:50.405 +05:30 [Debug] Connection id ""0HLA5R39LKPCH"" sending FIN. +2017-12-18 11:06:50.405 +05:30 [Debug] Connection id ""0HLA5R39LKPCF"" sending FIN. +2017-12-18 11:06:50.406 +05:30 [Debug] Connection id ""0HLA5R39LKPCG"" sending FIN. +2017-12-18 11:06:50.406 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" sending FIN. +2017-12-18 11:06:50.413 +05:30 [Debug] Connection id ""0HLA5R39LKPCG"" sent FIN with status "0". +2017-12-18 11:06:50.413 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" sent FIN with status "0". +2017-12-18 11:06:50.416 +05:30 [Debug] Connection id ""0HLA5R39LKPCG"" stopped. +2017-12-18 11:06:50.416 +05:30 [Debug] Connection id ""0HLA5R39LKPCE"" stopped. +2017-12-18 11:06:50.416 +05:30 [Debug] Connection id ""0HLA5R39LKPCH"" sent FIN with status "0". +2017-12-18 11:06:50.416 +05:30 [Debug] Connection id ""0HLA5R39LKPCF"" sent FIN with status "0". +2017-12-18 11:06:50.417 +05:30 [Debug] Connection id ""0HLA5R39LKPCF"" stopped. +2017-12-18 11:06:50.417 +05:30 [Debug] Connection id ""0HLA5R39LKPCH"" stopped. +2017-12-18 11:06:50.417 +05:30 [Debug] Connection id ""0HLA5R39LKPCI"" sent FIN with status "0". +2017-12-18 11:06:50.417 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" sent FIN with status "0". +2017-12-18 11:06:50.417 +05:30 [Debug] Connection id ""0HLA5R39LKPCI"" stopped. +2017-12-18 11:06:50.418 +05:30 [Debug] Connection id ""0HLA5R39LKPCD"" stopped. +2017-12-18 12:22:25.923 +05:30 [Debug] Hosting starting +2017-12-18 12:22:26.139 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" started. +2017-12-18 12:22:26.155 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" started. +2017-12-18 12:22:26.165 +05:30 [Debug] Hosting started +2017-12-18 12:22:26.340 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 12:22:26.339 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 12:22:26.418 +05:30 [Information] Request finished in 131.1026ms 200 +2017-12-18 12:22:26.498 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" completed keep alive response. +2017-12-18 12:22:27.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 12:22:27.769 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a8341dd9-9c53-4a5e-923c-ca213a9a604d"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 12:22:28.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 12:22:28.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 12:22:28.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 12:22:28.302 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:22:28.308 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:22:28.310 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:22:28.332 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:22:28.334 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:22:28.336 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:22:28.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 503.3898ms +2017-12-18 12:22:28.694 +05:30 [Information] Request finished in 2422.881ms 200 application/json; charset=utf-8 +2017-12-18 12:22:28.698 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" completed keep alive response. +2017-12-18 12:22:31.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:22:38.265 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:22:38.268 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:22:38.270 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:22:38.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9936.2999ms +2017-12-18 12:22:38.277 +05:30 [Information] Request finished in 9944.755ms 200 application/json; charset=utf-8 +2017-12-18 12:22:38.277 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" completed keep alive response. +2017-12-18 12:22:47.908 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:22:47.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:22:47.910 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:22:49.164 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:22:49.165 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:22:49.166 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:22:51.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:22:51.529 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:22:51.530 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:22:51.530 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:22:51.531 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3619.1028ms +2017-12-18 12:22:51.533 +05:30 [Information] Request finished in 3627.7986ms 200 application/json; charset=utf-8 +2017-12-18 12:22:51.534 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" completed keep alive response. +2017-12-18 12:22:51.569 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:22:51.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:22:51.570 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:22:52.249 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:22:53.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:22:53.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:22:53.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:22:53.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3912.0444ms +2017-12-18 12:22:53.082 +05:30 [Information] Request finished in 3918.3389ms 200 application/json; charset=utf-8 +2017-12-18 12:22:53.082 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" completed keep alive response. +2017-12-18 12:22:54.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:22:55.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:22:55.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:22:55.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:22:55.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3676.8383ms +2017-12-18 12:22:55.267 +05:30 [Information] Request finished in 3694.6352ms 200 application/json; charset=utf-8 +2017-12-18 12:22:55.268 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" completed keep alive response. +2017-12-18 12:22:55.330 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:22:55.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:22:55.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:22:58.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:22:58.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:22:58.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:22:58.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:22:58.901 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3565.5354ms +2017-12-18 12:22:58.904 +05:30 [Information] Request finished in 3580.2119ms 200 application/json; charset=utf-8 +2017-12-18 12:22:58.904 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" completed keep alive response. +2017-12-18 12:22:59.128 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:22:59.128 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:22:59.129 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:23:02.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:23:02.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:02.706 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:02.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:02.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3578.0414ms +2017-12-18 12:23:02.712 +05:30 [Information] Request finished in 3585.6816ms 200 application/json; charset=utf-8 +2017-12-18 12:23:02.713 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" completed keep alive response. +2017-12-18 12:23:02.734 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 12:23:02.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 12:23:02.756 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 12:23:05.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 12:23:08.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:08.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:08.102 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:08.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5542.5955ms +2017-12-18 12:23:08.317 +05:30 [Information] Request finished in 5584.0933ms 200 application/json; charset=utf-8 +2017-12-18 12:23:08.317 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" completed keep alive response. +2017-12-18 12:23:08.746 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:23:08.747 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:23:08.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:23:11.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:23:12.316 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:12.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:12.318 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:12.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3570.7569ms +2017-12-18 12:23:12.324 +05:30 [Information] Request finished in 3576.3019ms 200 application/json; charset=utf-8 +2017-12-18 12:23:12.324 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" completed keep alive response. +2017-12-18 12:23:12.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 12:23:12.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 12:23:12.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 12:23:15.448 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 12:23:17.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:17.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:17.169 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:17.205 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4795.6294ms +2017-12-18 12:23:17.207 +05:30 [Information] Request finished in 4803.4982ms 200 application/json; charset=utf-8 +2017-12-18 12:23:17.207 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" completed keep alive response. +2017-12-18 12:23:18.572 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 12:23:18.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 12:23:18.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 12:23:18.581 +05:30 [Debug] Connection id ""0HLA5SFIVQJPF"" started. +2017-12-18 12:23:18.585 +05:30 [Debug] Connection id ""0HLA5SFIVQJPG"" started. +2017-12-18 12:23:18.588 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 12:23:18.592 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 12:23:18.592 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 12:23:18.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 12:23:18.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 12:23:18.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 12:23:18.600 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 12:23:18.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 12:23:18.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 12:23:18.734 +05:30 [Debug] Connection id ""0HLA5SFIVQJPH"" started. +2017-12-18 12:23:18.735 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 12:23:18.736 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 12:23:18.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 12:23:18.746 +05:30 [Debug] Connection id ""0HLA5SFIVQJPI"" started. +2017-12-18 12:23:19.419 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 12:23:19.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 12:23:19.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 12:23:23.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:23:23.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:23:23.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:23:23.615 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:23:23.617 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:23:23.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:23:24.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:24.721 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:23:24.721 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:24.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:24.724 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6127.4653ms +2017-12-18 12:23:24.726 +05:30 [Information] Request finished in 6139.0697ms 200 application/json; charset=utf-8 +2017-12-18 12:23:24.726 +05:30 [Debug] Connection id ""0HLA5SFIVQJPG"" completed keep alive response. +2017-12-18 12:23:24.729 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 12:23:24.730 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 12:23:24.731 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 12:23:25.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:25.773 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:23:25.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:25.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:25.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7211.5258ms +2017-12-18 12:23:25.789 +05:30 [Information] Request finished in 7219.2553ms 200 application/json; charset=utf-8 +2017-12-18 12:23:25.789 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" completed keep alive response. +2017-12-18 12:23:25.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:25.898 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:23:25.898 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:25.898 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:25.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7307.1506ms +2017-12-18 12:23:25.914 +05:30 [Information] Request finished in 7325.8378ms 200 application/json; charset=utf-8 +2017-12-18 12:23:25.914 +05:30 [Debug] Connection id ""0HLA5SFIVQJPF"" completed keep alive response. +2017-12-18 12:23:26.533 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:26.533 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:23:26.534 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:26.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:26.538 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7796.3528ms +2017-12-18 12:23:26.541 +05:30 [Information] Request finished in 7805.0726ms 200 application/json; charset=utf-8 +2017-12-18 12:23:26.542 +05:30 [Debug] Connection id ""0HLA5SFIVQJPH"" completed keep alive response. +2017-12-18 12:23:26.649 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:26.649 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:23:26.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:26.649 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:26.649 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7229.0054ms +2017-12-18 12:23:26.649 +05:30 [Information] Request finished in 7240.0898ms 200 application/json; charset=utf-8 +2017-12-18 12:23:26.649 +05:30 [Debug] Connection id ""0HLA5SFIVQJPI"" completed keep alive response. +2017-12-18 12:23:27.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:23:30.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:30.388 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:23:30.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:30.403 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:30.466 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5741.1529ms +2017-12-18 12:23:30.466 +05:30 [Information] Request finished in 5746.2715ms 200 application/json; charset=utf-8 +2017-12-18 12:23:30.466 +05:30 [Debug] Connection id ""0HLA5SFIVQJPG"" completed keep alive response. +2017-12-18 12:23:33.402 +05:30 [Fatal] Sequence contains no elements +2017-12-18 12:23:33.493 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 12:23:34.063 +05:30 [Fatal] Sequence contains no elements +2017-12-18 12:23:34.094 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 12:23:47.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:23:47.285 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:23:47.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:23:47.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:23:47.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 28708.9953ms +2017-12-18 12:23:47.301 +05:30 [Information] Request finished in 28733.4465ms 200 application/json; charset=utf-8 +2017-12-18 12:23:47.301 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" completed keep alive response. +2017-12-18 12:26:07.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPH"" received FIN. +2017-12-18 12:26:07.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" received FIN. +2017-12-18 12:26:07.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPG"" received FIN. +2017-12-18 12:26:07.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPF"" received FIN. +2017-12-18 12:26:07.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPI"" received FIN. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPH"" disconnecting. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" disconnecting. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" received FIN. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPG"" disconnecting. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPF"" disconnecting. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPI"" disconnecting. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPH"" sending FIN. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" disconnecting. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPF"" sending FIN. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPI"" sending FIN. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPG"" sending FIN. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" sending FIN. +2017-12-18 12:26:07.150 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" sending FIN. +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" sent FIN with status "0". +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPG"" sent FIN with status "0". +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPE"" stopped. +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" sent FIN with status "0". +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPD"" stopped. +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPI"" sent FIN with status "0". +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPG"" stopped. +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPI"" stopped. +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPH"" sent FIN with status "0". +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPF"" sent FIN with status "0". +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPF"" stopped. +2017-12-18 12:26:07.166 +05:30 [Debug] Connection id ""0HLA5SFIVQJPH"" stopped. +2017-12-18 12:30:12.222 +05:30 [Debug] Connection id ""0HLA5SFIVQJPJ"" started. +2017-12-18 12:30:12.227 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-18 12:30:12.227 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-18 12:30:12.229 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-18 12:30:15.294 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-18 12:30:35.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:30:35.374 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:30:35.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:30:35.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:30:35.406 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 23173.5804ms +2017-12-18 12:30:35.411 +05:30 [Information] Request finished in 23184.5185ms 200 application/json; charset=utf-8 +2017-12-18 12:30:35.412 +05:30 [Debug] Connection id ""0HLA5SFIVQJPJ"" completed keep alive response. +2017-12-18 12:31:37.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPJ"" received FIN. +2017-12-18 12:31:37.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPJ"" disconnecting. +2017-12-18 12:31:37.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPJ"" sending FIN. +2017-12-18 12:31:37.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPJ"" sent FIN with status "0". +2017-12-18 12:31:37.119 +05:30 [Debug] Connection id ""0HLA5SFIVQJPJ"" stopped. +2017-12-18 12:33:02.764 +05:30 [Debug] Connection id ""0HLA5SFIVQJPK"" started. +2017-12-18 12:33:02.768 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=fb_1155481037833115,fb_1452799044811364&userId=48&message=https%3A%2F%2Fwww.nytimes.com%2F2017%2F12%2F16%2Fbusiness%2Fthe-winners-and-losers-in-the-tax-bill.html&imagePath=https%3A%2F%2Fstatic01.nyt.com%2Fimages%2F2017%2F12%2F17%2Fbusiness%2F17WINNERS-1%2F17WINNERS-1-facebookJumbo.jpg multipart/form-data; boundary=----WebKitFormBoundarypIdrC9g9GfGs9Rci 145 +2017-12-18 12:33:02.770 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-18 12:33:02.774 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-18 12:33:05.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["https://www.nytimes.com/2017/12/16/business/the-winners-and-losers-in-the-tax-bill.html", "fb_1155481037833115,fb_1452799044811364", "48", "https://static01.nyt.com/images/2017/12/17/business/17WINNERS-1/17WINNERS-1-facebookJumbo.jpg", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-18 12:33:52.078 +05:30 [Debug] Hosting starting +2017-12-18 12:33:52.388 +05:30 [Debug] Hosting started +2017-12-18 12:33:52.523 +05:30 [Debug] Connection id ""0HLA5SLVHL1TO"" started. +2017-12-18 12:33:52.525 +05:30 [Debug] Connection id ""0HLA5SLVHL1TP"" started. +2017-12-18 12:33:52.748 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 12:33:52.761 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 12:33:52.840 +05:30 [Information] Request finished in 145.5579ms 200 +2017-12-18 12:33:52.894 +05:30 [Debug] Connection id ""0HLA5SLVHL1TP"" completed keep alive response. +2017-12-18 12:33:53.936 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:33:54.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:33:54.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 12:33:54.431 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"80a97a93-45ea-4cc8-b8de-c974d01bcbce"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 12:33:54.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 12:33:54.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:33:54.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 12:33:54.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 12:33:54.744 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:33:54.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:33:54.752 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:33:55.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 626.4762ms +2017-12-18 12:33:55.216 +05:30 [Information] Request finished in 2540.8809ms 200 application/json; charset=utf-8 +2017-12-18 12:33:55.218 +05:30 [Debug] Connection id ""0HLA5SLVHL1TO"" completed keep alive response. +2017-12-18 12:33:58.446 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:34:05.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:34:05.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:34:05.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:34:05.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10673.0624ms +2017-12-18 12:34:05.197 +05:30 [Information] Request finished in 11260.1171ms 200 application/json; charset=utf-8 +2017-12-18 12:34:05.197 +05:30 [Debug] Connection id ""0HLA5SLVHL1TP"" completed keep alive response. +2017-12-18 12:34:15.175 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:34:15.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:34:15.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:34:18.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:34:19.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:34:19.220 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:34:19.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:34:19.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4041.6561ms +2017-12-18 12:34:19.225 +05:30 [Information] Request finished in 4050.4265ms 200 application/json; charset=utf-8 +2017-12-18 12:34:19.225 +05:30 [Debug] Connection id ""0HLA5SLVHL1TO"" completed keep alive response. +2017-12-18 12:34:19.292 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:34:19.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:34:19.294 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:34:22.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:34:23.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:34:23.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:34:23.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:34:23.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3964.4782ms +2017-12-18 12:34:23.262 +05:30 [Information] Request finished in 3971.1322ms 200 application/json; charset=utf-8 +2017-12-18 12:34:23.263 +05:30 [Debug] Connection id ""0HLA5SLVHL1TP"" completed keep alive response. +2017-12-18 12:34:23.316 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:34:23.317 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:34:23.317 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:34:26.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:34:26.949 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:34:26.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:34:26.950 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:34:26.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3633.338ms +2017-12-18 12:34:26.954 +05:30 [Information] Request finished in 3639.9556ms 200 application/json; charset=utf-8 +2017-12-18 12:34:26.954 +05:30 [Debug] Connection id ""0HLA5SLVHL1TO"" completed keep alive response. +2017-12-18 12:34:54.377 +05:30 [Debug] Hosting starting +2017-12-18 12:34:54.648 +05:30 [Debug] Hosting started +2017-12-18 12:34:54.710 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" started. +2017-12-18 12:34:54.710 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" started. +2017-12-18 12:34:55.069 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 12:34:55.101 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 12:34:55.172 +05:30 [Information] Request finished in 195.0878ms 200 +2017-12-18 12:34:55.234 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" completed keep alive response. +2017-12-18 12:34:55.485 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:34:56.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 12:34:56.348 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:34:56.412 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"fec22b86-ab91-4933-830d-21c600cd7759"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 12:34:56.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 12:34:56.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:34:56.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 12:34:56.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 12:34:56.732 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:34:56.739 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:34:56.741 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:34:56.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 458.7496ms +2017-12-18 12:34:57.066 +05:30 [Information] Request finished in 2103.3865ms 200 application/json; charset=utf-8 +2017-12-18 12:34:57.069 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" completed keep alive response. +2017-12-18 12:35:00.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:35:06.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:35:06.352 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:35:06.354 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:35:06.361 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9814.827ms +2017-12-18 12:35:06.368 +05:30 [Information] Request finished in 10882.6579ms 200 application/json; charset=utf-8 +2017-12-18 12:35:06.369 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" completed keep alive response. +2017-12-18 12:35:15.514 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:35:15.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:35:15.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:35:18.577 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:35:19.123 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:35:19.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:35:19.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:35:19.125 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3608.2057ms +2017-12-18 12:35:19.127 +05:30 [Information] Request finished in 3613.021ms 200 application/json; charset=utf-8 +2017-12-18 12:35:19.127 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" completed keep alive response. +2017-12-18 12:35:19.184 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:35:19.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:35:19.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:35:22.221 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:35:22.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:35:22.765 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:35:22.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:35:22.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3580.8106ms +2017-12-18 12:35:22.768 +05:30 [Information] Request finished in 3584.4836ms 200 application/json; charset=utf-8 +2017-12-18 12:35:22.768 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" completed keep alive response. +2017-12-18 12:35:22.793 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:35:22.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:35:22.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:35:25.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:35:26.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:35:26.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:35:26.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:35:26.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3602.4054ms +2017-12-18 12:35:26.401 +05:30 [Information] Request finished in 3608.174ms 200 application/json; charset=utf-8 +2017-12-18 12:35:26.402 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" completed keep alive response. +2017-12-18 12:35:34.127 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:35:34.128 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:35:34.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:35:37.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:35:37.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:35:37.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:35:37.715 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:35:37.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3587.9899ms +2017-12-18 12:35:37.721 +05:30 [Information] Request finished in 3601.9669ms 200 application/json; charset=utf-8 +2017-12-18 12:35:37.722 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" completed keep alive response. +2017-12-18 12:35:40.256 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:35:40.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:35:40.258 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:35:43.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:35:43.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:35:43.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:35:43.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:35:43.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3648.0654ms +2017-12-18 12:35:43.913 +05:30 [Information] Request finished in 3657.7372ms 200 application/json; charset=utf-8 +2017-12-18 12:35:43.914 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" completed keep alive response. +2017-12-18 12:35:43.942 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 12:35:43.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 12:35:43.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 12:35:47.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 12:35:49.148 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:35:49.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:35:49.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:35:49.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5295.6594ms +2017-12-18 12:35:49.263 +05:30 [Information] Request finished in 5324.8519ms 200 application/json; charset=utf-8 +2017-12-18 12:35:49.263 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" completed keep alive response. +2017-12-18 12:35:49.536 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 12:35:49.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 12:35:49.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 12:35:52.593 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 12:35:53.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:35:53.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:35:53.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:35:53.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3603.1198ms +2017-12-18 12:35:53.143 +05:30 [Information] Request finished in 3606.4877ms 200 application/json; charset=utf-8 +2017-12-18 12:35:53.143 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" completed keep alive response. +2017-12-18 12:35:53.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 12:35:53.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 12:35:53.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 12:35:56.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 12:35:58.022 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:35:58.022 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:35:58.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:35:58.055 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4854.8049ms +2017-12-18 12:35:58.058 +05:30 [Information] Request finished in 4860.3807ms 200 application/json; charset=utf-8 +2017-12-18 12:35:58.058 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" completed keep alive response. +2017-12-18 12:35:59.325 +05:30 [Debug] Connection id ""0HLA5SMI2N2S7"" started. +2017-12-18 12:35:59.325 +05:30 [Debug] Connection id ""0HLA5SMI2N2S6"" started. +2017-12-18 12:35:59.325 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 12:35:59.326 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 12:35:59.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 12:35:59.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 12:35:59.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 12:35:59.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 12:35:59.330 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 12:35:59.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 12:35:59.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 12:35:59.352 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 12:35:59.353 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 12:35:59.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 12:35:59.429 +05:30 [Debug] Connection id ""0HLA5SMI2N2S8"" started. +2017-12-18 12:35:59.429 +05:30 [Debug] Connection id ""0HLA5SMI2N2S9"" started. +2017-12-18 12:35:59.867 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 12:35:59.868 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 12:35:59.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 12:36:00.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 12:36:00.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 12:36:00.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 12:36:03.518 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:36:03.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:36:03.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:36:03.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:36:03.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:36:03.795 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:36:04.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:36:04.416 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:36:04.416 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:36:04.417 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:36:04.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5100.0077ms +2017-12-18 12:36:04.431 +05:30 [Information] Request finished in 5107.0365ms 200 application/json; charset=utf-8 +2017-12-18 12:36:04.431 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" completed keep alive response. +2017-12-18 12:36:04.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 12:36:04.443 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 12:36:04.448 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 12:36:06.048 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:36:06.048 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:36:06.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:36:06.050 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:36:06.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6704.709ms +2017-12-18 12:36:06.078 +05:30 [Information] Request finished in 6749.4606ms 200 application/json; charset=utf-8 +2017-12-18 12:36:06.078 +05:30 [Debug] Connection id ""0HLA5SMI2N2S7"" completed keep alive response. +2017-12-18 12:36:06.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:36:06.349 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:36:06.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:36:06.350 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:36:06.352 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6482.4306ms +2017-12-18 12:36:06.354 +05:30 [Information] Request finished in 6487.6111ms 200 application/json; charset=utf-8 +2017-12-18 12:36:06.354 +05:30 [Debug] Connection id ""0HLA5SMI2N2S8"" completed keep alive response. +2017-12-18 12:36:06.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:36:06.392 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:36:06.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:36:06.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:36:06.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7064.7347ms +2017-12-18 12:36:06.399 +05:30 [Information] Request finished in 7072.7659ms 200 application/json; charset=utf-8 +2017-12-18 12:36:06.400 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" completed keep alive response. +2017-12-18 12:36:06.573 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:36:06.574 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:36:06.574 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:36:06.576 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:36:06.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6173.8093ms +2017-12-18 12:36:06.578 +05:30 [Information] Request finished in 6179.0914ms 200 application/json; charset=utf-8 +2017-12-18 12:36:06.579 +05:30 [Debug] Connection id ""0HLA5SMI2N2S9"" completed keep alive response. +2017-12-18 12:36:07.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 12:36:10.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:36:10.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:36:10.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:36:10.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:36:10.103 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5653.4854ms +2017-12-18 12:36:10.105 +05:30 [Information] Request finished in 5663.6578ms 200 application/json; charset=utf-8 +2017-12-18 12:36:10.106 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" completed keep alive response. +2017-12-18 12:36:13.088 +05:30 [Fatal] Sequence contains no elements +2017-12-18 12:36:13.145 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 12:36:13.721 +05:30 [Fatal] Sequence contains no elements +2017-12-18 12:36:13.722 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 12:36:18.972 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-18 12:36:18.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-18 12:36:18.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-18 12:36:22.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-18 12:36:31.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:36:31.132 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:36:31.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:36:31.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:36:31.171 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 31807.2198ms +2017-12-18 12:36:31.178 +05:30 [Information] Request finished in 31849.5507ms 200 application/json; charset=utf-8 +2017-12-18 12:36:31.178 +05:30 [Debug] Connection id ""0HLA5SMI2N2S6"" completed keep alive response. +2017-12-18 12:36:32.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:36:32.186 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:36:32.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 12:36:32.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:36:32.230 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 13252.4383ms +2017-12-18 12:36:32.233 +05:30 [Information] Request finished in 13260.1289ms 200 application/json; charset=utf-8 +2017-12-18 12:36:32.233 +05:30 [Debug] Connection id ""0HLA5SMI2N2S7"" completed keep alive response. +2017-12-18 12:38:06.231 +05:30 [Debug] Connection id ""0HLA5SMI2N2S8"" received FIN. +2017-12-18 12:38:06.231 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" received FIN. +2017-12-18 12:38:06.232 +05:30 [Debug] Connection id ""0HLA5SMI2N2S7"" received FIN. +2017-12-18 12:38:06.232 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" disconnecting. +2017-12-18 12:38:06.233 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" sending FIN. +2017-12-18 12:38:06.234 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" received FIN. +2017-12-18 12:38:06.235 +05:30 [Debug] Connection id ""0HLA5SMI2N2S9"" received FIN. +2017-12-18 12:38:06.235 +05:30 [Debug] Connection id ""0HLA5SMI2N2S6"" received FIN. +2017-12-18 12:38:06.246 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" sent FIN with status "0". +2017-12-18 12:38:06.249 +05:30 [Debug] Connection id ""0HLA5SMI2N2S5"" stopped. +2017-12-18 12:38:06.250 +05:30 [Debug] Connection id ""0HLA5SMI2N2SA"" started. +2017-12-18 12:38:06.251 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" disconnecting. +2017-12-18 12:38:06.254 +05:30 [Debug] Connection id ""0HLA5SMI2N2S6"" disconnecting. +2017-12-18 12:38:06.256 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" sending FIN. +2017-12-18 12:38:06.257 +05:30 [Debug] Connection id ""0HLA5SMI2N2S6"" sending FIN. +2017-12-18 12:38:06.251 +05:30 [Debug] Connection id ""0HLA5SMI2N2S9"" disconnecting. +2017-12-18 12:38:06.251 +05:30 [Debug] Connection id ""0HLA5SMI2N2S7"" disconnecting. +2017-12-18 12:38:06.259 +05:30 [Debug] Connection id ""0HLA5SMI2N2S7"" sending FIN. +2017-12-18 12:38:06.260 +05:30 [Debug] Connection id ""0HLA5SMI2N2S7"" sent FIN with status "0". +2017-12-18 12:38:06.258 +05:30 [Debug] Connection id ""0HLA5SMI2N2S6"" sent FIN with status "0". +2017-12-18 12:38:06.261 +05:30 [Debug] Connection id ""0HLA5SMI2N2S6"" stopped. +2017-12-18 12:38:06.252 +05:30 [Debug] Connection id ""0HLA5SMI2N2S8"" disconnecting. +2017-12-18 12:38:06.286 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=fb_1452799044811364&userId=48&message=https%3A%2F%2Fwww.nytimes.com%2F2017%2F12%2F16%2Fbusiness%2Fthe-winners-and-losers-in-the-tax-bill.html&imagePath=https%3A%2F%2Fstatic01.nyt.com%2Fimages%2F2017%2F12%2F17%2Fbusiness%2F17WINNERS-1%2F17WINNERS-1-facebookJumbo.jpg multipart/form-data; boundary=----WebKitFormBoundaryiS1U1g2EVF278iiA 145 +2017-12-18 12:38:06.286 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-18 12:38:06.300 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-18 12:38:06.261 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" sent FIN with status "0". +2017-12-18 12:38:06.302 +05:30 [Debug] Connection id ""0HLA5SMI2N2S4"" stopped. +2017-12-18 12:38:06.303 +05:30 [Debug] Connection id ""0HLA5SMI2N2S9"" sending FIN. +2017-12-18 12:38:06.304 +05:30 [Debug] Connection id ""0HLA5SMI2N2S9"" sent FIN with status "0". +2017-12-18 12:38:06.260 +05:30 [Debug] Connection id ""0HLA5SMI2N2S7"" stopped. +2017-12-18 12:38:06.305 +05:30 [Debug] Connection id ""0HLA5SMI2N2S9"" stopped. +2017-12-18 12:38:06.305 +05:30 [Debug] Connection id ""0HLA5SMI2N2S8"" sending FIN. +2017-12-18 12:38:06.306 +05:30 [Debug] Connection id ""0HLA5SMI2N2S8"" sent FIN with status "0". +2017-12-18 12:38:06.306 +05:30 [Debug] Connection id ""0HLA5SMI2N2S8"" stopped. +2017-12-18 12:38:09.400 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["https://www.nytimes.com/2017/12/16/business/the-winners-and-losers-in-the-tax-bill.html", "fb_1452799044811364", "48", "https://static01.nyt.com/images/2017/12/17/business/17WINNERS-1/17WINNERS-1-facebookJumbo.jpg", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-18 12:39:36.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 12:39:36.999 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 12:39:37.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 12:39:37.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 12:39:37.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 90701.9019ms +2017-12-18 12:39:37.011 +05:30 [Information] Request finished in 90755.6273ms 200 text/plain; charset=utf-8 +2017-12-18 12:39:37.012 +05:30 [Debug] Connection id ""0HLA5SMI2N2SA"" completed keep alive response. +2017-12-18 12:40:35.414 +05:30 [Debug] Connection id ""0HLA5SMI2N2SA"" received FIN. +2017-12-18 13:51:37.692 +05:30 [Debug] Hosting starting +2017-12-18 13:51:39.532 +05:30 [Debug] Hosting started +2017-12-18 13:51:39.783 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" started. +2017-12-18 13:51:39.783 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" started. +2017-12-18 13:51:40.287 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 13:51:40.283 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 13:51:40.411 +05:30 [Information] Request finished in 258.2172ms 200 +2017-12-18 13:51:40.543 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" completed keep alive response. +2017-12-18 13:51:46.033 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 13:51:46.075 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"918a3d3d-c7bb-4198-a873-08b909daa107"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 13:51:46.469 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 13:51:46.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 13:51:46.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 13:51:47.037 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 13:51:47.044 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:51:47.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:51:47.829 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 13:51:47.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 13:51:47.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 13:51:48.211 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1734.5935ms +2017-12-18 13:51:48.708 +05:30 [Information] Request finished in 8581.0852ms 200 application/json; charset=utf-8 +2017-12-18 13:51:48.712 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" completed keep alive response. +2017-12-18 13:51:53.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 13:52:07.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:52:07.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:52:07.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:52:07.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 19399.5853ms +2017-12-18 13:52:07.255 +05:30 [Information] Request finished in 19425.101ms 200 application/json; charset=utf-8 +2017-12-18 13:52:07.256 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" completed keep alive response. +2017-12-18 13:52:26.768 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 13:52:26.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 13:52:26.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 13:52:29.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 13:52:30.365 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:52:30.366 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:52:30.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:52:30.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3596.0773ms +2017-12-18 13:52:30.370 +05:30 [Information] Request finished in 3604.2898ms 200 application/json; charset=utf-8 +2017-12-18 13:52:30.370 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" completed keep alive response. +2017-12-18 13:52:30.419 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 13:52:30.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 13:52:30.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 13:52:31.413 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 13:52:31.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 13:52:31.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 13:52:33.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 13:52:34.173 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:52:34.174 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:52:34.174 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:52:34.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3754.6233ms +2017-12-18 13:52:34.178 +05:30 [Information] Request finished in 3761.4254ms 200 application/json; charset=utf-8 +2017-12-18 13:52:34.179 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" completed keep alive response. +2017-12-18 13:52:34.218 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 13:52:34.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 13:52:34.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 13:52:34.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 13:52:34.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:52:34.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:52:34.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:52:34.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3573.4282ms +2017-12-18 13:52:34.998 +05:30 [Information] Request finished in 3585.1429ms 200 application/json; charset=utf-8 +2017-12-18 13:52:34.999 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" completed keep alive response. +2017-12-18 13:52:37.366 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 13:52:37.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:52:37.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:52:37.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:52:37.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3686.8152ms +2017-12-18 13:52:37.951 +05:30 [Information] Request finished in 3710.9786ms 200 application/json; charset=utf-8 +2017-12-18 13:52:37.951 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" completed keep alive response. +2017-12-18 13:53:11.883 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 13:53:11.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 13:53:11.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 13:53:14.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 13:53:15.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:15.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:15.448 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:15.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3564.4239ms +2017-12-18 13:53:15.450 +05:30 [Information] Request finished in 3568.8193ms 200 application/json; charset=utf-8 +2017-12-18 13:53:15.450 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" completed keep alive response. +2017-12-18 13:53:15.468 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 13:53:15.469 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 13:53:15.509 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 13:53:18.823 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 13:53:21.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:21.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:21.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:21.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5741.212ms +2017-12-18 13:53:21.253 +05:30 [Information] Request finished in 5785.5204ms 200 application/json; charset=utf-8 +2017-12-18 13:53:21.253 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" completed keep alive response. +2017-12-18 13:53:21.512 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 13:53:21.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 13:53:21.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 13:53:24.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 13:53:25.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:25.089 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:25.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:25.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3577.3151ms +2017-12-18 13:53:25.094 +05:30 [Information] Request finished in 3581.923ms 200 application/json; charset=utf-8 +2017-12-18 13:53:25.095 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" completed keep alive response. +2017-12-18 13:53:25.136 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 13:53:25.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 13:53:25.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 13:53:28.214 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 13:53:30.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:30.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:30.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:30.149 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5003.7852ms +2017-12-18 13:53:30.151 +05:30 [Information] Request finished in 5015.2543ms 200 application/json; charset=utf-8 +2017-12-18 13:53:30.151 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" completed keep alive response. +2017-12-18 13:53:31.886 +05:30 [Debug] Connection id ""0HLA5U1EFP192"" started. +2017-12-18 13:53:31.886 +05:30 [Debug] Connection id ""0HLA5U1EFP193"" started. +2017-12-18 13:53:31.889 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 13:53:31.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 13:53:31.893 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 13:53:31.893 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 13:53:31.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 13:53:31.898 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 13:53:31.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 13:53:31.909 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 13:53:31.909 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 13:53:31.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 13:53:31.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 13:53:31.930 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 13:53:32.017 +05:30 [Debug] Connection id ""0HLA5U1EFP194"" started. +2017-12-18 13:53:32.017 +05:30 [Debug] Connection id ""0HLA5U1EFP195"" started. +2017-12-18 13:53:32.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 13:53:32.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 13:53:32.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 13:53:33.666 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 13:53:33.666 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 13:53:33.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 13:53:36.865 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 13:53:36.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 13:53:36.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 13:53:36.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 13:53:36.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 13:53:36.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 13:53:39.207 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:39.208 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 13:53:39.208 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:39.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:39.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7313.0258ms +2017-12-18 13:53:39.272 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:39.273 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 13:53:39.274 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:39.272 +05:30 [Information] Request finished in 7364.1204ms 200 application/json; charset=utf-8 +2017-12-18 13:53:39.276 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" completed keep alive response. +2017-12-18 13:53:39.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:39.285 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7352.883ms +2017-12-18 13:53:39.291 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 13:53:39.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 13:53:39.294 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 13:53:39.295 +05:30 [Information] Request finished in 7403.7282ms 200 application/json; charset=utf-8 +2017-12-18 13:53:39.295 +05:30 [Debug] Connection id ""0HLA5U1EFP192"" completed keep alive response. +2017-12-18 13:53:39.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:39.713 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 13:53:39.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:39.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:39.717 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6046.31ms +2017-12-18 13:53:39.720 +05:30 [Information] Request finished in 6053.1173ms 200 application/json; charset=utf-8 +2017-12-18 13:53:39.721 +05:30 [Debug] Connection id ""0HLA5U1EFP195"" completed keep alive response. +2017-12-18 13:53:39.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:39.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 13:53:39.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:39.809 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:39.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7140.8079ms +2017-12-18 13:53:39.813 +05:30 [Information] Request finished in 7146.8138ms 200 application/json; charset=utf-8 +2017-12-18 13:53:39.813 +05:30 [Debug] Connection id ""0HLA5U1EFP194"" completed keep alive response. +2017-12-18 13:53:39.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:39.891 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 13:53:39.891 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:39.892 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:39.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7993.3917ms +2017-12-18 13:53:39.896 +05:30 [Information] Request finished in 8007.5624ms 200 application/json; charset=utf-8 +2017-12-18 13:53:39.896 +05:30 [Debug] Connection id ""0HLA5U1EFP193"" completed keep alive response. +2017-12-18 13:53:42.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 13:53:44.424 +05:30 [Fatal] Sequence contains no elements +2017-12-18 13:53:44.566 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 13:53:45.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:45.002 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 13:53:45.002 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:45.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:45.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5773.676ms +2017-12-18 13:53:45.077 +05:30 [Information] Request finished in 5783.6612ms 200 application/json; charset=utf-8 +2017-12-18 13:53:45.078 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" completed keep alive response. +2017-12-18 13:53:45.199 +05:30 [Fatal] Sequence contains no elements +2017-12-18 13:53:45.202 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 13:53:58.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 13:53:58.154 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 13:53:58.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 13:53:58.155 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 13:53:58.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26254.1075ms +2017-12-18 13:53:58.169 +05:30 [Information] Request finished in 26288.8922ms 200 application/json; charset=utf-8 +2017-12-18 13:53:58.170 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" completed keep alive response. +2017-12-18 13:55:19.731 +05:30 [Debug] Connection id ""0HLA5U1EFP192"" received FIN. +2017-12-18 13:55:19.731 +05:30 [Debug] Connection id ""0HLA5U1EFP195"" received FIN. +2017-12-18 13:55:19.732 +05:30 [Debug] Connection id ""0HLA5U1EFP194"" received FIN. +2017-12-18 13:55:19.732 +05:30 [Debug] Connection id ""0HLA5U1EFP193"" received FIN. +2017-12-18 13:55:19.733 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" received FIN. +2017-12-18 13:55:19.733 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" received FIN. +2017-12-18 13:55:19.733 +05:30 [Debug] Connection id ""0HLA5U1EFP192"" disconnecting. +2017-12-18 13:55:19.734 +05:30 [Debug] Connection id ""0HLA5U1EFP195"" disconnecting. +2017-12-18 13:55:19.762 +05:30 [Debug] Connection id ""0HLA5U1EFP195"" sending FIN. +2017-12-18 13:55:19.762 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" disconnecting. +2017-12-18 13:55:19.762 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" disconnecting. +2017-12-18 13:55:19.736 +05:30 [Debug] Connection id ""0HLA5U1EFP192"" sending FIN. +2017-12-18 13:55:19.759 +05:30 [Debug] Connection id ""0HLA5U1EFP193"" disconnecting. +2017-12-18 13:55:19.761 +05:30 [Debug] Connection id ""0HLA5U1EFP194"" disconnecting. +2017-12-18 13:55:19.766 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" sending FIN. +2017-12-18 13:55:19.766 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" sending FIN. +2017-12-18 13:55:19.767 +05:30 [Debug] Connection id ""0HLA5U1EFP194"" sending FIN. +2017-12-18 13:55:19.767 +05:30 [Debug] Connection id ""0HLA5U1EFP193"" sending FIN. +2017-12-18 13:55:19.778 +05:30 [Debug] Connection id ""0HLA5U1EFP194"" sent FIN with status "0". +2017-12-18 13:55:19.778 +05:30 [Debug] Connection id ""0HLA5U1EFP193"" sent FIN with status "0". +2017-12-18 13:55:19.781 +05:30 [Debug] Connection id ""0HLA5U1EFP194"" stopped. +2017-12-18 13:55:19.782 +05:30 [Debug] Connection id ""0HLA5U1EFP193"" stopped. +2017-12-18 13:55:19.782 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" sent FIN with status "0". +2017-12-18 13:55:19.782 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" sent FIN with status "0". +2017-12-18 13:55:19.782 +05:30 [Debug] Connection id ""0HLA5U1EFP190"" stopped. +2017-12-18 13:55:19.783 +05:30 [Debug] Connection id ""0HLA5U1EFP191"" stopped. +2017-12-18 13:55:19.783 +05:30 [Debug] Connection id ""0HLA5U1EFP192"" sent FIN with status "0". +2017-12-18 13:55:19.783 +05:30 [Debug] Connection id ""0HLA5U1EFP195"" sent FIN with status "0". +2017-12-18 13:55:19.784 +05:30 [Debug] Connection id ""0HLA5U1EFP195"" stopped. +2017-12-18 13:55:19.783 +05:30 [Debug] Connection id ""0HLA5U1EFP192"" stopped. +2017-12-18 13:59:42.675 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" started. +2017-12-18 13:59:42.684 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-18 13:59:42.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-18 13:59:42.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-18 13:59:45.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-18 14:00:07.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:00:07.645 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:00:07.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:00:07.647 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:00:07.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 24987.8992ms +2017-12-18 14:00:07.677 +05:30 [Information] Request finished in 24995.4008ms 200 application/json; charset=utf-8 +2017-12-18 14:00:07.678 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" completed keep alive response. +2017-12-18 14:00:21.671 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=fb_1452799044811364&userId=48&message=http%3A%2F%2Fwww.cnn.com%2Finteractive%2F2013%2F11%2Ftravel%2Fatl24%2Findex.html&imagePath=http%3A%2F%2Fi2.cdn.turner.com%2Fcnn%2Fdam%2Fassets%2F131119221012-atl24-pilots-in-plane-story-top.jpg multipart/form-data; boundary=----WebKitFormBoundaryUqfpaUKCm4Ljxoz6 145 +2017-12-18 14:00:21.672 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-18 14:00:21.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-18 14:00:24.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["http://www.cnn.com/interactive/2013/11/travel/atl24/index.html", "fb_1452799044811364", "48", "http://i2.cdn.turner.com/cnn/dam/assets/131119221012-atl24-pilots-in-plane-story-top.jpg", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-18 14:00:24.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:00:24.847 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:00:24.847 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 14:00:24.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:00:34.592 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 12915.2142ms +2017-12-18 14:00:34.609 +05:30 [Information] Request finished in 12936.4943ms 200 text/plain; charset=utf-8 +2017-12-18 14:00:34.610 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" completed keep alive response. +2017-12-18 14:00:40.997 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 14:00:40.999 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 14:00:41.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 14:00:44.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 14:00:44.591 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:00:44.591 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:00:44.594 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:00:44.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3593.9821ms +2017-12-18 14:00:44.606 +05:30 [Information] Request finished in 3605.3065ms 200 application/json; charset=utf-8 +2017-12-18 14:00:44.607 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" completed keep alive response. +2017-12-18 14:00:44.633 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 14:00:44.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 14:00:44.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 14:00:47.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 14:00:49.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:00:49.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:00:49.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:00:49.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4663.3226ms +2017-12-18 14:00:49.303 +05:30 [Information] Request finished in 4677.4426ms 200 application/json; charset=utf-8 +2017-12-18 14:00:49.303 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" completed keep alive response. +2017-12-18 14:00:52.531 +05:30 [Debug] Connection id ""0HLA5U1EFP197"" started. +2017-12-18 14:00:52.532 +05:30 [Debug] Connection id ""0HLA5U1EFP199"" started. +2017-12-18 14:00:52.532 +05:30 [Debug] Connection id ""0HLA5U1EFP198"" started. +2017-12-18 14:00:52.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 14:00:52.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 14:00:52.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 14:00:52.576 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 14:00:52.586 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 14:00:52.586 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 14:00:52.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 14:00:52.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 14:00:52.603 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 14:00:52.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 14:00:52.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 14:00:52.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 14:00:52.748 +05:30 [Debug] Connection id ""0HLA5U1EFP19A"" started. +2017-12-18 14:00:52.755 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-18 14:00:52.757 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-18 14:00:52.758 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-18 14:00:53.004 +05:30 [Debug] Connection id ""0HLA5U1EFP19B"" started. +2017-12-18 14:00:53.008 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 14:00:53.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 14:00:53.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 14:00:55.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 14:00:55.648 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 14:00:55.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 14:00:55.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 14:00:55.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-18 14:00:57.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 14:00:58.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:00:58.388 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:00:58.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:00:58.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:00:58.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5841.3722ms +2017-12-18 14:00:58.393 +05:30 [Information] Request finished in 5862.1571ms 200 application/json; charset=utf-8 +2017-12-18 14:00:58.394 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" completed keep alive response. +2017-12-18 14:00:58.398 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 14:00:58.399 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 14:00:58.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 14:00:58.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:00:58.677 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:00:58.678 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:00:58.679 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:00:58.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 5923.8108ms +2017-12-18 14:00:58.685 +05:30 [Information] Request finished in 5935.8297ms 200 application/json; charset=utf-8 +2017-12-18 14:00:58.686 +05:30 [Debug] Connection id ""0HLA5U1EFP19A"" completed keep alive response. +2017-12-18 14:00:59.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:00:59.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:00:59.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:00:59.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:00:59.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6929.0898ms +2017-12-18 14:00:59.522 +05:30 [Information] Request finished in 6988.0345ms 200 application/json; charset=utf-8 +2017-12-18 14:00:59.522 +05:30 [Debug] Connection id ""0HLA5U1EFP199"" completed keep alive response. +2017-12-18 14:00:59.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:00:59.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:00:59.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:00:59.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:00:59.893 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7242.1999ms +2017-12-18 14:00:59.919 +05:30 [Information] Request finished in 7379.9756ms 200 application/json; charset=utf-8 +2017-12-18 14:00:59.920 +05:30 [Debug] Connection id ""0HLA5U1EFP198"" completed keep alive response. +2017-12-18 14:01:00.501 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:01:00.502 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:01:00.502 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:01:00.524 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:01:00.527 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7514.4937ms +2017-12-18 14:01:00.531 +05:30 [Information] Request finished in 7521.4696ms 200 application/json; charset=utf-8 +2017-12-18 14:01:00.532 +05:30 [Debug] Connection id ""0HLA5U1EFP19B"" completed keep alive response. +2017-12-18 14:01:01.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 14:01:02.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:01:02.782 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:01:02.783 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:01:02.784 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:01:02.785 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4385.1022ms +2017-12-18 14:01:02.788 +05:30 [Information] Request finished in 4389.6762ms 200 application/json; charset=utf-8 +2017-12-18 14:01:02.789 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" completed keep alive response. +2017-12-18 14:01:07.296 +05:30 [Fatal] Sequence contains no elements +2017-12-18 14:01:07.298 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 14:01:07.880 +05:30 [Fatal] Sequence contains no elements +2017-12-18 14:01:07.881 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 14:01:21.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:01:21.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:01:21.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 14:01:21.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:01:21.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 28466.4912ms +2017-12-18 14:01:21.143 +05:30 [Information] Request finished in 28600.6305ms 200 application/json; charset=utf-8 +2017-12-18 14:01:21.144 +05:30 [Debug] Connection id ""0HLA5U1EFP197"" completed keep alive response. +2017-12-18 14:01:27.301 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=lkfb_1155481037833115&userId=48&message=http%3A%2F%2Ffeeds.reuters.com%2F~r%2Freuters%2FtopNews%2F~3%2FtTQjL463Rks%2Foracle-corp-to-buy-australias-aconex-for-1-19-billion-idUSKBN1EB0TL&imagePath=https%3A%2F%2Fs1.reutersmedia.net%2Fresources%2Fr%2F%3Fm%3D02%26d%3D20171217%26t%3D2%26i%3D1215224915%26w%3D1200%26r%3DLYNXMPEDBG0S1 multipart/form-data; boundary=----WebKitFormBoundarySlVySlrpDC4NNSzY 145 +2017-12-18 14:01:27.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-18 14:01:27.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-18 14:01:30.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["http://feeds.reuters.com/~r/reuters/topNews/~3/tTQjL463Rks/oracle-corp-to-buy-australias-aconex-for-1-19-billion-idUSKBN1EB0TL", "lkfb_1155481037833115", "48", "https://s1.reutersmedia.net/resources/r/?m=02&d=20171217&t=2&i=1215224915&w=1200&r=LYNXMPEDBG0S1", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-18 14:01:46.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 14:01:46.624 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 14:01:46.625 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 14:01:46.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 14:01:46.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 19325.1445ms +2017-12-18 14:01:46.631 +05:30 [Information] Request finished in 19330.2323ms 200 text/plain; charset=utf-8 +2017-12-18 14:01:46.631 +05:30 [Debug] Connection id ""0HLA5U1EFP19A"" completed keep alive response. +2017-12-18 14:02:39.728 +05:30 [Debug] Connection id ""0HLA5U1EFP199"" received FIN. +2017-12-18 14:02:39.728 +05:30 [Debug] Connection id ""0HLA5U1EFP198"" received FIN. +2017-12-18 14:02:39.728 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" received FIN. +2017-12-18 14:02:39.728 +05:30 [Debug] Connection id ""0HLA5U1EFP19B"" received FIN. +2017-12-18 14:02:39.729 +05:30 [Debug] Connection id ""0HLA5U1EFP197"" received FIN. +2017-12-18 14:02:39.729 +05:30 [Debug] Connection id ""0HLA5U1EFP199"" disconnecting. +2017-12-18 14:02:39.729 +05:30 [Debug] Connection id ""0HLA5U1EFP198"" disconnecting. +2017-12-18 14:02:39.731 +05:30 [Debug] Connection id ""0HLA5U1EFP19B"" disconnecting. +2017-12-18 14:02:39.731 +05:30 [Debug] Connection id ""0HLA5U1EFP198"" sending FIN. +2017-12-18 14:02:39.732 +05:30 [Debug] Connection id ""0HLA5U1EFP19B"" sending FIN. +2017-12-18 14:02:39.732 +05:30 [Debug] Connection id ""0HLA5U1EFP197"" disconnecting. +2017-12-18 14:02:39.730 +05:30 [Debug] Connection id ""0HLA5U1EFP199"" sending FIN. +2017-12-18 14:02:39.733 +05:30 [Debug] Connection id ""0HLA5U1EFP19B"" sent FIN with status "0". +2017-12-18 14:02:39.733 +05:30 [Debug] Connection id ""0HLA5U1EFP19B"" stopped. +2017-12-18 14:02:39.733 +05:30 [Debug] Connection id ""0HLA5U1EFP199"" sent FIN with status "0". +2017-12-18 14:02:39.734 +05:30 [Debug] Connection id ""0HLA5U1EFP198"" sent FIN with status "0". +2017-12-18 14:02:39.735 +05:30 [Debug] Connection id ""0HLA5U1EFP199"" stopped. +2017-12-18 14:02:39.736 +05:30 [Debug] Connection id ""0HLA5U1EFP198"" stopped. +2017-12-18 14:02:39.736 +05:30 [Debug] Connection id ""0HLA5U1EFP197"" sending FIN. +2017-12-18 14:02:39.730 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" disconnecting. +2017-12-18 14:02:39.736 +05:30 [Debug] Connection id ""0HLA5U1EFP197"" sent FIN with status "0". +2017-12-18 14:02:39.737 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" sending FIN. +2017-12-18 14:02:39.737 +05:30 [Debug] Connection id ""0HLA5U1EFP197"" stopped. +2017-12-18 14:02:39.737 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" sent FIN with status "0". +2017-12-18 14:02:39.739 +05:30 [Debug] Connection id ""0HLA5U1EFP196"" stopped. +2017-12-18 14:04:29.729 +05:30 [Debug] Connection id ""0HLA5U1EFP19A"" received FIN. +2017-12-18 14:04:29.729 +05:30 [Debug] Connection id ""0HLA5U1EFP19A"" disconnecting. +2017-12-18 14:04:29.730 +05:30 [Debug] Connection id ""0HLA5U1EFP19A"" sending FIN. +2017-12-18 14:04:29.730 +05:30 [Debug] Connection id ""0HLA5U1EFP19A"" sent FIN with status "0". +2017-12-18 14:04:29.731 +05:30 [Debug] Connection id ""0HLA5U1EFP19A"" stopped. +2017-12-18 15:34:41.111 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" started. +2017-12-18 15:34:41.351 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:34:41.560 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:34:41.569 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:34:45.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:34:49.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:34:49.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:34:49.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:34:49.153 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7581.4351ms +2017-12-18 15:34:49.169 +05:30 [Information] Request finished in 7920.4373ms 200 application/json; charset=utf-8 +2017-12-18 15:34:49.170 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:34:50.882 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:34:50.882 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:34:50.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:34:53.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:34:53.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:34:53.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:34:53.799 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:34:53.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2916.2747ms +2017-12-18 15:34:53.803 +05:30 [Information] Request finished in 2920.4603ms 200 application/json; charset=utf-8 +2017-12-18 15:34:53.803 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:35:16.247 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:35:16.248 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:35:16.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:35:20.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:35:20.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:35:20.783 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:35:20.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:35:20.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4535.3639ms +2017-12-18 15:35:20.838 +05:30 [Information] Request finished in 4589.971ms 200 application/json; charset=utf-8 +2017-12-18 15:35:20.840 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:35:21.790 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:35:21.791 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:35:21.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:35:25.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:35:25.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:35:25.624 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:35:25.625 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:35:25.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3833.7842ms +2017-12-18 15:35:25.665 +05:30 [Information] Request finished in 3844.6057ms 200 application/json; charset=utf-8 +2017-12-18 15:35:25.665 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:35:26.082 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:35:26.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:35:26.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:35:29.448 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:35:30.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:35:30.034 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:35:30.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:35:30.036 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3951.9756ms +2017-12-18 15:35:30.038 +05:30 [Information] Request finished in 3955.8023ms 200 application/json; charset=utf-8 +2017-12-18 15:35:30.039 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:35:41.338 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:35:41.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:35:41.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:35:44.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:35:44.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:35:44.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:35:44.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:35:44.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3620.9334ms +2017-12-18 15:35:44.966 +05:30 [Information] Request finished in 3626.1661ms 200 application/json; charset=utf-8 +2017-12-18 15:35:44.966 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:35:49.607 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:35:49.608 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:35:49.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:35:52.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:35:53.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:35:53.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:35:53.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:35:53.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3676.625ms +2017-12-18 15:35:53.288 +05:30 [Information] Request finished in 3680.3997ms 200 application/json; charset=utf-8 +2017-12-18 15:35:53.288 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:35:53.460 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 15:35:53.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 15:35:53.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 15:35:56.628 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 15:35:59.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:35:59.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:35:59.122 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:35:59.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5788.3525ms +2017-12-18 15:35:59.252 +05:30 [Information] Request finished in 5792.8347ms 200 application/json; charset=utf-8 +2017-12-18 15:35:59.253 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:35:59.408 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:35:59.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:35:59.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:36:01.527 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:36:02.102 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:02.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:02.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:02.105 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2694.466ms +2017-12-18 15:36:02.107 +05:30 [Information] Request finished in 2700.4678ms 200 application/json; charset=utf-8 +2017-12-18 15:36:02.107 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:36:02.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 15:36:02.170 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 15:36:02.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 15:36:05.248 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 15:36:07.626 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:07.626 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:07.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:07.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5500.8722ms +2017-12-18 15:36:07.677 +05:30 [Information] Request finished in 5507.148ms 200 application/json; charset=utf-8 +2017-12-18 15:36:07.678 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:36:09.266 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 15:36:09.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 15:36:09.448 +05:30 [Debug] Connection id ""0HLA5U1EFP19D"" started. +2017-12-18 15:36:09.448 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 15:36:09.474 +05:30 [Debug] Connection id ""0HLA5U1EFP19F"" started. +2017-12-18 15:36:09.474 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" started. +2017-12-18 15:36:09.496 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 15:36:09.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 15:36:09.537 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 15:36:09.538 +05:30 [Debug] Connection id ""0HLA5U1EFP19G"" started. +2017-12-18 15:36:09.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 15:36:09.550 +05:30 [Debug] Connection id ""0HLA5U1EFP19H"" started. +2017-12-18 15:36:09.551 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 15:36:09.552 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 15:36:09.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 15:36:09.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 15:36:09.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 15:36:10.129 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 15:36:10.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 15:36:10.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 15:36:11.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 15:36:11.127 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 15:36:11.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 15:36:14.341 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:36:14.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:36:14.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:36:14.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:36:14.947 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:36:14.988 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:36:16.188 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:16.189 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:36:16.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:16.190 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:16.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6638.9871ms +2017-12-18 15:36:16.197 +05:30 [Information] Request finished in 6699.5049ms 200 application/json; charset=utf-8 +2017-12-18 15:36:16.197 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" completed keep alive response. +2017-12-18 15:36:16.222 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 15:36:16.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 15:36:16.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 15:36:16.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:16.952 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:36:16.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:16.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:16.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7505.1401ms +2017-12-18 15:36:16.959 +05:30 [Information] Request finished in 7693.3308ms 200 application/json; charset=utf-8 +2017-12-18 15:36:16.960 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:36:17.402 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:17.403 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:36:17.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:17.445 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:17.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7929.9777ms +2017-12-18 15:36:17.474 +05:30 [Information] Request finished in 7997.8776ms 200 application/json; charset=utf-8 +2017-12-18 15:36:17.475 +05:30 [Debug] Connection id ""0HLA5U1EFP19D"" completed keep alive response. +2017-12-18 15:36:17.862 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:17.862 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:36:17.862 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:17.863 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:17.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6736.3522ms +2017-12-18 15:36:17.866 +05:30 [Information] Request finished in 6739.6903ms 200 application/json; charset=utf-8 +2017-12-18 15:36:17.866 +05:30 [Debug] Connection id ""0HLA5U1EFP19H"" completed keep alive response. +2017-12-18 15:36:17.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:17.903 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:36:17.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:17.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:17.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7783.0849ms +2017-12-18 15:36:18.137 +05:30 [Information] Request finished in 8006.6879ms 200 application/json; charset=utf-8 +2017-12-18 15:36:18.137 +05:30 [Debug] Connection id ""0HLA5U1EFP19G"" completed keep alive response. +2017-12-18 15:36:19.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:36:22.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:22.021 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:36:22.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:22.022 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:22.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5824.407ms +2017-12-18 15:36:22.055 +05:30 [Information] Request finished in 5831.9841ms 200 application/json; charset=utf-8 +2017-12-18 15:36:22.055 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" completed keep alive response. +2017-12-18 15:36:24.658 +05:30 [Fatal] Sequence contains no elements +2017-12-18 15:36:24.886 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 15:36:25.521 +05:30 [Fatal] Sequence contains no elements +2017-12-18 15:36:25.522 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 15:36:38.804 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:38.804 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:36:38.805 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:38.806 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:38.826 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 29251.0845ms +2017-12-18 15:36:38.830 +05:30 [Information] Request finished in 29290.9567ms 200 application/json; charset=utf-8 +2017-12-18 15:36:38.830 +05:30 [Debug] Connection id ""0HLA5U1EFP19F"" completed keep alive response. +2017-12-18 15:36:47.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 15:36:47.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 15:36:47.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 15:36:49.533 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:36:49.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:36:49.534 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:36:52.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:36:52.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:36:53.170 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:53.171 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:53.192 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:53.213 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3658.375ms +2017-12-18 15:36:53.318 +05:30 [Information] Request finished in 3705.0343ms 200 application/json; charset=utf-8 +2017-12-18 15:36:53.318 +05:30 [Debug] Connection id ""0HLA5U1EFP19D"" completed keep alive response. +2017-12-18 15:36:53.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 15:36:53.367 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 15:36:53.367 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 15:36:54.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:54.967 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:36:54.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:54.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:55.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 7470.6422ms +2017-12-18 15:36:55.375 +05:30 [Information] Request finished in 7547.3296ms 200 application/json; charset=utf-8 +2017-12-18 15:36:55.377 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:36:56.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 15:36:58.207 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:36:58.208 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:36:58.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:36:58.211 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4842.3403ms +2017-12-18 15:36:58.216 +05:30 [Information] Request finished in 4890.0347ms 200 application/json; charset=utf-8 +2017-12-18 15:36:58.217 +05:30 [Debug] Connection id ""0HLA5U1EFP19H"" completed keep alive response. +2017-12-18 15:37:01.477 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 15:37:01.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 15:37:01.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 15:37:01.500 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 15:37:01.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 15:37:01.501 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 15:37:01.542 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 15:37:01.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 15:37:01.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 15:37:01.566 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 15:37:01.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 15:37:01.567 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 15:37:01.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 15:37:01.694 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 15:37:01.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 15:37:01.703 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 15:37:01.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 15:37:01.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 15:37:04.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:37:04.927 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:37:05.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:37:05.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:37:05.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:37:05.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:37:05.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:37:05.689 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:37:05.689 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:37:05.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:37:05.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4146.0005ms +2017-12-18 15:37:05.694 +05:30 [Information] Request finished in 4175.0107ms 200 application/json; charset=utf-8 +2017-12-18 15:37:05.695 +05:30 [Debug] Connection id ""0HLA5U1EFP19G"" completed keep alive response. +2017-12-18 15:37:05.698 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 15:37:05.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 15:37:05.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 15:37:05.825 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:37:05.826 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:37:05.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:37:05.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:37:05.828 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4260.1582ms +2017-12-18 15:37:05.831 +05:30 [Information] Request finished in 4264.2868ms 200 application/json; charset=utf-8 +2017-12-18 15:37:05.831 +05:30 [Debug] Connection id ""0HLA5U1EFP19D"" completed keep alive response. +2017-12-18 15:37:06.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:37:06.127 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:37:06.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:37:06.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:37:06.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4627.5629ms +2017-12-18 15:37:06.135 +05:30 [Information] Request finished in 4634.651ms 200 application/json; charset=utf-8 +2017-12-18 15:37:06.135 +05:30 [Debug] Connection id ""0HLA5U1EFP19F"" completed keep alive response. +2017-12-18 15:37:06.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:37:06.141 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:37:06.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:37:06.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:37:06.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4448.1246ms +2017-12-18 15:37:06.149 +05:30 [Information] Request finished in 4455.9194ms 200 application/json; charset=utf-8 +2017-12-18 15:37:06.150 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" completed keep alive response. +2017-12-18 15:37:06.274 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:37:06.275 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:37:06.275 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:37:06.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:37:06.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4571.9114ms +2017-12-18 15:37:06.282 +05:30 [Information] Request finished in 4584.6904ms 200 application/json; charset=utf-8 +2017-12-18 15:37:06.282 +05:30 [Debug] Connection id ""0HLA5U1EFP19H"" completed keep alive response. +2017-12-18 15:37:08.731 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:37:09.307 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:37:09.307 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:37:09.308 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:37:09.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:37:09.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3610.4198ms +2017-12-18 15:37:09.313 +05:30 [Information] Request finished in 3615.1182ms 200 application/json; charset=utf-8 +2017-12-18 15:37:09.314 +05:30 [Debug] Connection id ""0HLA5U1EFP19G"" completed keep alive response. +2017-12-18 15:37:12.508 +05:30 [Fatal] Sequence contains no elements +2017-12-18 15:37:12.509 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 15:37:13.126 +05:30 [Fatal] Sequence contains no elements +2017-12-18 15:37:13.127 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 15:37:26.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:37:26.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:37:26.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:37:26.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:37:26.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24777.8055ms +2017-12-18 15:37:26.261 +05:30 [Information] Request finished in 24786.9772ms 200 application/json; charset=utf-8 +2017-12-18 15:37:26.262 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" completed keep alive response. +2017-12-18 15:38:11.577 +05:30 [Debug] Connection id ""0HLA5U1EFP19F"" received FIN. +2017-12-18 15:38:11.577 +05:30 [Debug] Connection id ""0HLA5U1EFP19D"" received FIN. +2017-12-18 15:38:11.578 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" received FIN. +2017-12-18 15:38:11.578 +05:30 [Debug] Connection id ""0HLA5U1EFP19H"" received FIN. +2017-12-18 15:38:11.578 +05:30 [Debug] Connection id ""0HLA5U1EFP19G"" received FIN. +2017-12-18 15:38:11.577 +05:30 [Debug] Connection id ""0HLA5U1EFP19F"" disconnecting. +2017-12-18 15:38:11.578 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" disconnecting. +2017-12-18 15:38:11.578 +05:30 [Debug] Connection id ""0HLA5U1EFP19D"" disconnecting. +2017-12-18 15:38:11.578 +05:30 [Debug] Connection id ""0HLA5U1EFP19G"" disconnecting. +2017-12-18 15:38:11.578 +05:30 [Debug] Connection id ""0HLA5U1EFP19H"" disconnecting. +2017-12-18 15:38:11.578 +05:30 [Debug] Connection id ""0HLA5U1EFP19I"" started. +2017-12-18 15:38:11.578 +05:30 [Debug] Connection id ""0HLA5U1EFP19D"" sending FIN. +2017-12-18 15:38:11.579 +05:30 [Debug] Connection id ""0HLA5U1EFP19H"" sending FIN. +2017-12-18 15:38:11.579 +05:30 [Debug] Connection id ""0HLA5U1EFP19F"" sending FIN. +2017-12-18 15:38:11.580 +05:30 [Debug] Connection id ""0HLA5U1EFP19H"" sent FIN with status "0". +2017-12-18 15:38:11.580 +05:30 [Debug] Connection id ""0HLA5U1EFP19H"" stopped. +2017-12-18 15:38:11.580 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" sending FIN. +2017-12-18 15:38:11.580 +05:30 [Debug] Connection id ""0HLA5U1EFP19D"" sent FIN with status "0". +2017-12-18 15:38:11.580 +05:30 [Debug] Connection id ""0HLA5U1EFP19G"" sending FIN. +2017-12-18 15:38:11.580 +05:30 [Debug] Connection id ""0HLA5U1EFP19D"" stopped. +2017-12-18 15:38:11.581 +05:30 [Debug] Connection id ""0HLA5U1EFP19G"" sent FIN with status "0". +2017-12-18 15:38:11.581 +05:30 [Debug] Connection id ""0HLA5U1EFP19J"" started. +2017-12-18 15:38:11.581 +05:30 [Debug] Connection id ""0HLA5U1EFP19G"" stopped. +2017-12-18 15:38:11.582 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" sent FIN with status "0". +2017-12-18 15:38:11.583 +05:30 [Debug] Connection id ""0HLA5U1EFP19C"" stopped. +2017-12-18 15:38:11.583 +05:30 [Debug] Connection id ""0HLA5U1EFP19F"" sent FIN with status "0". +2017-12-18 15:38:11.583 +05:30 [Debug] Connection id ""0HLA5U1EFP19F"" stopped. +2017-12-18 15:38:11.585 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 15:38:11.585 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 15:38:11.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 15:38:11.592 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 15:38:11.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 15:38:11.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 15:38:11.601 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 15:38:11.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 15:38:11.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 15:38:14.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 15:38:14.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 15:38:14.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 15:38:20.047 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:38:20.047 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:38:20.047 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:38:20.048 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:38:20.178 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 8573.6767ms +2017-12-18 15:38:20.180 +05:30 [Information] Request finished in 8580.2253ms 200 application/json; charset=utf-8 +2017-12-18 15:38:20.180 +05:30 [Debug] Connection id ""0HLA5U1EFP19J"" completed keep alive response. +2017-12-18 15:38:20.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:38:20.292 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:38:20.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:38:20.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:38:20.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 8745.6417ms +2017-12-18 15:38:20.339 +05:30 [Information] Request finished in 8759.1836ms 200 application/json; charset=utf-8 +2017-12-18 15:38:20.339 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" completed keep alive response. +2017-12-18 15:38:23.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:38:23.341 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:38:23.342 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:38:23.342 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:38:23.401 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 11803.8727ms +2017-12-18 15:38:23.405 +05:30 [Information] Request finished in 11821.6888ms 200 application/json; charset=utf-8 +2017-12-18 15:38:23.405 +05:30 [Debug] Connection id ""0HLA5U1EFP19I"" completed keep alive response. +2017-12-18 15:39:20.475 +05:30 [Debug] Connection id ""0HLA5U1EFP19J"" received FIN. +2017-12-18 15:39:20.475 +05:30 [Debug] Connection id ""0HLA5U1EFP19J"" disconnecting. +2017-12-18 15:39:20.476 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=urlfb_1452799044811364&userId=48&message=https%3A%2F%2Fwww.instagram.com%2Fp%2FBc1nOARn6Be%2F&imagePath= multipart/form-data; boundary=----WebKitFormBoundaryzeeBt6ahFLz8Aw3V 145 +2017-12-18 15:39:20.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-18 15:39:20.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-18 15:39:20.484 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" received FIN. +2017-12-18 15:39:20.484 +05:30 [Debug] Connection id ""0HLA5U1EFP19J"" sending FIN. +2017-12-18 15:39:20.485 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" disconnecting. +2017-12-18 15:39:20.485 +05:30 [Debug] Connection id ""0HLA5U1EFP19J"" sent FIN with status "0". +2017-12-18 15:39:20.485 +05:30 [Debug] Connection id ""0HLA5U1EFP19J"" stopped. +2017-12-18 15:39:20.486 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" sending FIN. +2017-12-18 15:39:20.486 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" sent FIN with status "0". +2017-12-18 15:39:20.486 +05:30 [Debug] Connection id ""0HLA5U1EFP19E"" stopped. +2017-12-18 15:39:23.597 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["https://www.instagram.com/p/Bc1nOARn6Be/", "urlfb_1452799044811364", "48", "", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-18 15:39:23.610 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:39:23.610 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:39:23.611 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 15:39:23.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:39:23.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 3135.8333ms +2017-12-18 15:39:23.616 +05:30 [Information] Request finished in 3140.4117ms 200 text/plain; charset=utf-8 +2017-12-18 15:39:23.617 +05:30 [Debug] Connection id ""0HLA5U1EFP19I"" completed keep alive response. +2017-12-18 15:39:23.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:39:23.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:39:23.762 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:39:26.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:39:27.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:39:27.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:39:27.419 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:39:27.421 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3657.6215ms +2017-12-18 15:39:27.424 +05:30 [Information] Request finished in 3665.9699ms 200 application/json; charset=utf-8 +2017-12-18 15:39:27.425 +05:30 [Debug] Connection id ""0HLA5U1EFP19I"" completed keep alive response. +2017-12-18 15:39:27.450 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 15:39:27.450 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 15:39:27.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 15:39:30.490 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 15:39:32.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:39:32.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:39:32.148 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:39:32.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4698.7573ms +2017-12-18 15:39:32.156 +05:30 [Information] Request finished in 4713.425ms 200 application/json; charset=utf-8 +2017-12-18 15:39:32.177 +05:30 [Debug] Connection id ""0HLA5U1EFP19I"" completed keep alive response. +2017-12-18 15:44:01.527 +05:30 [Debug] Hosting starting +2017-12-18 15:44:01.743 +05:30 [Debug] Hosting started +2017-12-18 15:44:01.843 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" started. +2017-12-18 15:44:01.843 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" started. +2017-12-18 15:44:01.860 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" started. +2017-12-18 15:44:01.989 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:44:01.988 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 15:44:01.988 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 15:44:02.053 +05:30 [Information] Request finished in 85.3309ms 200 +2017-12-18 15:44:02.085 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" completed keep alive response. +2017-12-18 15:44:04.045 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:44:04.045 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 15:44:04.117 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"bd0a09b4-470d-4537-b1ca-0699d129832f"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 15:44:04.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 15:44:04.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:44:04.327 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 15:44:04.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 15:44:04.367 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:44:04.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:44:04.372 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:44:04.663 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 453.2494ms +2017-12-18 15:44:04.748 +05:30 [Information] Request finished in 2794.7558ms 200 application/json; charset=utf-8 +2017-12-18 15:44:04.750 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" completed keep alive response. +2017-12-18 15:44:04.835 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-18 15:44:04.837 +05:30 [Debug] Request did not match any routes. +2017-12-18 15:44:04.851 +05:30 [Debug] The request path "" does not match the path filter +2017-12-18 15:44:04.853 +05:30 [Information] Request finished in 18.1955ms 404 +2017-12-18 15:44:04.854 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" completed keep alive response. +2017-12-18 15:44:07.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:44:14.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:44:14.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:44:14.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:44:14.891 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10688.4259ms +2017-12-18 15:44:14.894 +05:30 [Information] Request finished in 12940.6071ms 200 application/json; charset=utf-8 +2017-12-18 15:44:14.897 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" completed keep alive response. +2017-12-18 15:44:28.087 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:44:28.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:44:28.100 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:44:31.292 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:44:31.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:44:31.831 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:44:31.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:44:31.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3731.2843ms +2017-12-18 15:44:31.834 +05:30 [Information] Request finished in 3751.5496ms 200 application/json; charset=utf-8 +2017-12-18 15:44:31.835 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" completed keep alive response. +2017-12-18 15:44:31.874 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:44:31.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:44:31.876 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:44:34.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:44:35.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:44:35.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:44:35.448 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:44:35.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3572.5804ms +2017-12-18 15:44:35.453 +05:30 [Information] Request finished in 3582.5967ms 200 application/json; charset=utf-8 +2017-12-18 15:44:35.454 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" completed keep alive response. +2017-12-18 15:44:35.509 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:44:35.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:44:35.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:44:38.358 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:44:38.359 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:44:38.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:44:38.557 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:44:39.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:44:39.094 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:44:39.095 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:44:39.099 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3585.4393ms +2017-12-18 15:44:39.104 +05:30 [Information] Request finished in 3601.9224ms 200 application/json; charset=utf-8 +2017-12-18 15:44:39.104 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" completed keep alive response. +2017-12-18 15:44:41.413 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:44:41.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:44:41.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:44:41.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:44:41.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3592.9327ms +2017-12-18 15:44:41.960 +05:30 [Information] Request finished in 3608.9739ms 200 application/json; charset=utf-8 +2017-12-18 15:44:41.961 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" completed keep alive response. +2017-12-18 15:44:45.935 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:44:45.936 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:44:45.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:44:49.024 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:44:49.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:44:49.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:44:49.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:44:49.574 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3622.7369ms +2017-12-18 15:44:49.593 +05:30 [Information] Request finished in 3658.4058ms 200 application/json; charset=utf-8 +2017-12-18 15:44:49.594 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" completed keep alive response. +2017-12-18 15:44:49.629 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 15:44:49.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 15:44:49.638 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 15:44:52.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 15:44:54.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:44:54.805 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:44:54.805 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:44:54.933 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5293.5188ms +2017-12-18 15:44:54.937 +05:30 [Information] Request finished in 5308.1585ms 200 application/json; charset=utf-8 +2017-12-18 15:44:54.937 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" completed keep alive response. +2017-12-18 15:44:55.230 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:44:55.230 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:44:55.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:44:58.289 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:44:58.825 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:44:58.825 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:44:58.826 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:44:58.827 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3595.2752ms +2017-12-18 15:44:58.829 +05:30 [Information] Request finished in 3599.3423ms 200 application/json; charset=utf-8 +2017-12-18 15:44:58.829 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" completed keep alive response. +2017-12-18 15:44:58.869 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 15:44:58.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 15:44:58.871 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 15:45:01.924 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 15:45:03.643 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:03.643 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:03.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:03.680 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4807.7065ms +2017-12-18 15:45:03.683 +05:30 [Information] Request finished in 4814.4308ms 200 application/json; charset=utf-8 +2017-12-18 15:45:03.683 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" completed keep alive response. +2017-12-18 15:45:05.089 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" started. +2017-12-18 15:45:05.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 15:45:05.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 15:45:05.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 15:45:05.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 15:45:05.093 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 15:45:05.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 15:45:05.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 15:45:05.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 15:45:05.159 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 15:45:05.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 15:45:05.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 15:45:05.125 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 15:45:05.234 +05:30 [Debug] Connection id ""0HLA6007PEOM3"" started. +2017-12-18 15:45:05.238 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" started. +2017-12-18 15:45:05.892 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 15:45:05.893 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 15:45:05.895 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 15:45:06.896 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 15:45:06.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 15:45:06.898 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 15:45:10.057 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:45:10.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:45:10.083 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:45:10.097 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:45:10.097 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:45:10.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:45:12.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:12.278 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:12.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:12.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:12.281 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:12.281 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:12.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:12.283 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:12.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7196.9473ms +2017-12-18 15:45:12.296 +05:30 [Information] Request finished in 7206.1606ms 200 application/json; charset=utf-8 +2017-12-18 15:45:12.297 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" completed keep alive response. +2017-12-18 15:45:12.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7121.8573ms +2017-12-18 15:45:12.305 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 15:45:12.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 15:45:12.307 +05:30 [Information] Request finished in 7216.0261ms 200 application/json; charset=utf-8 +2017-12-18 15:45:12.308 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" completed keep alive response. +2017-12-18 15:45:12.308 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 15:45:12.332 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 15:45:12.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 15:45:12.335 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 15:45:12.626 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:12.627 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:12.627 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:12.628 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:12.631 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5731.2837ms +2017-12-18 15:45:12.635 +05:30 [Information] Request finished in 5738.7638ms 200 application/json; charset=utf-8 +2017-12-18 15:45:12.636 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" completed keep alive response. +2017-12-18 15:45:12.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:12.951 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:12.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:12.957 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:12.975 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7799.3662ms +2017-12-18 15:45:12.994 +05:30 [Information] Request finished in 7903.2183ms 200 application/json; charset=utf-8 +2017-12-18 15:45:12.995 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" completed keep alive response. +2017-12-18 15:45:13.000 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:13.000 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:13.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:13.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:13.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7114.8795ms +2017-12-18 15:45:13.020 +05:30 [Information] Request finished in 7122.2121ms 200 application/json; charset=utf-8 +2017-12-18 15:45:13.021 +05:30 [Debug] Connection id ""0HLA6007PEOM3"" completed keep alive response. +2017-12-18 15:45:15.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:45:15.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:45:15.989 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:15.989 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:15.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:15.990 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:16.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3666.6668ms +2017-12-18 15:45:16.006 +05:30 [Information] Request finished in 3674.1603ms 200 application/json; charset=utf-8 +2017-12-18 15:45:16.006 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" completed keep alive response. +2017-12-18 15:45:17.394 +05:30 [Fatal] Sequence contains no elements +2017-12-18 15:45:17.565 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 15:45:17.572 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 15:45:17.573 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 15:45:17.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 15:45:17.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 15:45:17.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 15:45:17.603 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 15:45:17.603 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 15:45:17.604 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 15:45:17.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 15:45:17.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:17.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:17.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:17.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:18.014 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5704.8166ms +2017-12-18 15:45:18.018 +05:30 [Information] Request finished in 5713.7267ms 200 application/json; charset=utf-8 +2017-12-18 15:45:18.018 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" completed keep alive response. +2017-12-18 15:45:18.205 +05:30 [Fatal] Sequence contains no elements +2017-12-18 15:45:18.207 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 15:45:20.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 15:45:20.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 15:45:20.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 15:45:27.097 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:27.098 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:27.098 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:27.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:27.120 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:27.120 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:27.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:27.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 9512.5922ms +2017-12-18 15:45:27.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:27.126 +05:30 [Information] Request finished in 9565.4679ms 200 application/json; charset=utf-8 +2017-12-18 15:45:27.126 +05:30 [Debug] Connection id ""0HLA6007PEOM3"" completed keep alive response. +2017-12-18 15:45:27.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 9532.474ms +2017-12-18 15:45:27.149 +05:30 [Information] Request finished in 9586.3515ms 200 application/json; charset=utf-8 +2017-12-18 15:45:27.150 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" completed keep alive response. +2017-12-18 15:45:31.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:31.036 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:31.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:31.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:31.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25898.7836ms +2017-12-18 15:45:31.067 +05:30 [Information] Request finished in 25970.123ms 200 application/json; charset=utf-8 +2017-12-18 15:45:31.067 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" completed keep alive response. +2017-12-18 15:45:35.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:45:35.281 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:45:35.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:45:35.283 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:45:35.302 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 17714.3294ms +2017-12-18 15:45:35.305 +05:30 [Information] Request finished in 17744.7967ms 200 application/json; charset=utf-8 +2017-12-18 15:45:35.305 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" completed keep alive response. +2017-12-18 15:45:45.938 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=urlfb_1155481037833115,urlfb_1452799044811364&userId=48&message=https%3A%2F%2Fwww.instagram.com%2Fp%2FBc1nOARn6Be%2F&imagePath= multipart/form-data; boundary=----WebKitFormBoundaryiEXoTugMKWQuWEqb 145 +2017-12-18 15:45:45.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-18 15:45:45.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-18 15:45:49.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["https://www.instagram.com/p/Bc1nOARn6Be/", "urlfb_1155481037833115,urlfb_1452799044811364", "48", "", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-18 15:46:30.919 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:30.950 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:46:30.950 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 15:46:30.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:30.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 45010.447ms +2017-12-18 15:46:30.960 +05:30 [Information] Request finished in 45020.1651ms 200 text/plain; charset=utf-8 +2017-12-18 15:46:30.960 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" completed keep alive response. +2017-12-18 15:46:31.100 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" received FIN. +2017-12-18 15:46:31.108 +05:30 [Debug] Connection id ""0HLA6007PEOM3"" received FIN. +2017-12-18 15:46:31.108 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" received FIN. +2017-12-18 15:46:31.109 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" received FIN. +2017-12-18 15:46:31.114 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" disconnecting. +2017-12-18 15:46:31.115 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" disconnecting. +2017-12-18 15:46:31.115 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" sending FIN. +2017-12-18 15:46:31.116 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" disconnecting. +2017-12-18 15:46:31.115 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" sending FIN. +2017-12-18 15:46:31.116 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 15:46:31.117 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 15:46:31.117 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 15:46:31.120 +05:30 [Debug] Connection id ""0HLA6007PEOM3"" disconnecting. +2017-12-18 15:46:31.121 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" sending FIN. +2017-12-18 15:46:31.122 +05:30 [Debug] Connection id ""0HLA6007PEOM3"" sending FIN. +2017-12-18 15:46:31.133 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" sent FIN with status "0". +2017-12-18 15:46:31.136 +05:30 [Debug] Connection id ""0HLA6007PEOM3"" sent FIN with status "0". +2017-12-18 15:46:31.139 +05:30 [Debug] Connection id ""0HLA6007PEOLV"" stopped. +2017-12-18 15:46:31.141 +05:30 [Debug] Connection id ""0HLA6007PEOM3"" stopped. +2017-12-18 15:46:31.142 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" sent FIN with status "0". +2017-12-18 15:46:31.142 +05:30 [Debug] Connection id ""0HLA6007PEOM0"" stopped. +2017-12-18 15:46:31.143 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" sent FIN with status "0". +2017-12-18 15:46:31.143 +05:30 [Debug] Connection id ""0HLA6007PEOM1"" stopped. +2017-12-18 15:46:33.730 +05:30 [Error] (OAuthException - #1500) The url you supplied is invalid +2017-12-18 15:46:33.730 +05:30 [Error] (OAuthException - #1500) The url you supplied is invalid +2017-12-18 15:46:33.754 +05:30 [Error] at Facebook.FacebookClient.ProcessResponse(HttpHelper httpHelper, String responseString, Type resultType, Boolean containsEtag, IList`1 batchEtags) + at Facebook.FacebookClient.Api(HttpMethod httpMethod, String path, Object parameters, Type resultType) + at Facebook.FacebookClient.Post(String path, Object parameters) + at Api.Socioboard.Helper.FacebookHelper.UrlComposeMessage(FbProfileType profiletype, String accessToken, String fbUserId, String message, String profileId, Int64 userId, String imagePath, String link, MediaType mediaType, String profileName, DatabaseRepository dbr, ILogger _logger) in D:\SBPROJECT\Developer\src\Api.Socioboard\Helper\FacebookHelper.cs:line 219 +2017-12-18 15:46:33.769 +05:30 [Error] at Facebook.FacebookClient.ProcessResponse(HttpHelper httpHelper, String responseString, Type resultType, Boolean containsEtag, IList`1 batchEtags) + at Facebook.FacebookClient.Api(HttpMethod httpMethod, String path, Object parameters, Type resultType) + at Facebook.FacebookClient.Post(String path, Object parameters) + at Api.Socioboard.Helper.FacebookHelper.UrlComposeMessage(FbProfileType profiletype, String accessToken, String fbUserId, String message, String profileId, Int64 userId, String imagePath, String link, MediaType mediaType, String profileName, DatabaseRepository dbr, ILogger _logger) in D:\SBPROJECT\Developer\src\Api.Socioboard\Helper\FacebookHelper.cs:line 219 +2017-12-18 15:46:35.293 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 15:46:35.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:35.885 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:35.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:35.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4769.5561ms +2017-12-18 15:46:35.892 +05:30 [Information] Request finished in 4789.9971ms 200 application/json; charset=utf-8 +2017-12-18 15:46:35.892 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" completed keep alive response. +2017-12-18 15:46:35.902 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 15:46:35.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 15:46:35.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 15:46:38.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 15:46:40.572 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:40.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:40.573 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:40.574 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4669.7306ms +2017-12-18 15:46:40.576 +05:30 [Information] Request finished in 4673.7376ms 200 application/json; charset=utf-8 +2017-12-18 15:46:40.577 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" completed keep alive response. +2017-12-18 15:46:41.381 +05:30 [Debug] Connection id ""0HLA6007PEOM5"" started. +2017-12-18 15:46:41.381 +05:30 [Debug] Connection id ""0HLA6007PEOM6"" started. +2017-12-18 15:46:41.381 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 15:46:41.404 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 15:46:41.404 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 15:46:41.405 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 15:46:41.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 15:46:41.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 15:46:41.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 15:46:41.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 15:46:41.440 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 15:46:41.444 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 15:46:41.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 15:46:41.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 15:46:41.525 +05:30 [Debug] Connection id ""0HLA6007PEOM7"" started. +2017-12-18 15:46:41.528 +05:30 [Debug] Connection id ""0HLA6007PEOM8"" started. +2017-12-18 15:46:41.529 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 15:46:41.529 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 15:46:41.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 15:46:41.534 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 15:46:41.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 15:46:41.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 15:46:44.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:46:44.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:46:44.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:46:44.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:46:44.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:46:44.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 15:46:45.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:45.260 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:46:45.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:45.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:45.262 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3856.4539ms +2017-12-18 15:46:45.264 +05:30 [Information] Request finished in 3883.3371ms 200 application/json; charset=utf-8 +2017-12-18 15:46:45.264 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" completed keep alive response. +2017-12-18 15:46:45.267 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 15:46:45.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 15:46:45.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 15:46:45.458 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:45.459 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:46:45.459 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:45.460 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:45.463 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4021.0872ms +2017-12-18 15:46:45.465 +05:30 [Information] Request finished in 4082.864ms 200 application/json; charset=utf-8 +2017-12-18 15:46:45.466 +05:30 [Debug] Connection id ""0HLA6007PEOM5"" completed keep alive response. +2017-12-18 15:46:45.471 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 15:46:45.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 15:46:45.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 15:46:45.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:45.717 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:46:45.717 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:45.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:45.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4274.4925ms +2017-12-18 15:46:45.725 +05:30 [Information] Request finished in 4282.6111ms 200 application/json; charset=utf-8 +2017-12-18 15:46:45.727 +05:30 [Debug] Connection id ""0HLA6007PEOM6"" completed keep alive response. +2017-12-18 15:46:45.732 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 15:46:45.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 15:46:45.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 15:46:45.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:45.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:46:45.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:45.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:45.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4376.5501ms +2017-12-18 15:46:45.922 +05:30 [Information] Request finished in 4394.7855ms 200 application/json; charset=utf-8 +2017-12-18 15:46:45.922 +05:30 [Debug] Connection id ""0HLA6007PEOM7"" completed keep alive response. +2017-12-18 15:46:45.950 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:45.950 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:46:45.950 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:45.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:45.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4416.3091ms +2017-12-18 15:46:45.954 +05:30 [Information] Request finished in 4424.6453ms 200 application/json; charset=utf-8 +2017-12-18 15:46:45.954 +05:30 [Debug] Connection id ""0HLA6007PEOM8"" completed keep alive response. +2017-12-18 15:46:48.311 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 15:46:48.513 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 15:46:48.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 15:46:49.407 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:49.408 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:46:49.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:49.410 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:49.412 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 3939.0069ms +2017-12-18 15:46:49.414 +05:30 [Information] Request finished in 3944.1964ms 200 application/json; charset=utf-8 +2017-12-18 15:46:49.415 +05:30 [Debug] Connection id ""0HLA6007PEOM5"" completed keep alive response. +2017-12-18 15:46:49.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:49.927 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:46:49.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:49.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:49.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 4660.7312ms +2017-12-18 15:46:49.946 +05:30 [Information] Request finished in 4676.0798ms 200 application/json; charset=utf-8 +2017-12-18 15:46:49.946 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" completed keep alive response. +2017-12-18 15:46:50.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:46:50.025 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:46:50.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:46:50.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:46:50.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 4296.4251ms +2017-12-18 15:46:50.050 +05:30 [Information] Request finished in 4315.916ms 200 application/json; charset=utf-8 +2017-12-18 15:46:50.050 +05:30 [Debug] Connection id ""0HLA6007PEOM6"" completed keep alive response. +2017-12-18 15:46:52.068 +05:30 [Fatal] Sequence contains no elements +2017-12-18 15:46:52.069 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 15:46:52.660 +05:30 [Fatal] Sequence contains no elements +2017-12-18 15:46:52.663 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 15:47:05.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:47:05.508 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:47:05.508 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 15:47:05.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:47:05.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24106.0891ms +2017-12-18 15:47:05.521 +05:30 [Information] Request finished in 24138.2281ms 200 application/json; charset=utf-8 +2017-12-18 15:47:05.522 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" completed keep alive response. +2017-12-18 15:49:32.089 +05:30 [Debug] Connection id ""0HLA6007PEOM7"" received FIN. +2017-12-18 15:49:32.089 +05:30 [Debug] Connection id ""0HLA6007PEOM8"" received FIN. +2017-12-18 15:49:32.089 +05:30 [Debug] Connection id ""0HLA6007PEOM7"" disconnecting. +2017-12-18 15:49:32.089 +05:30 [Debug] Connection id ""0HLA6007PEOM5"" received FIN. +2017-12-18 15:49:32.089 +05:30 [Debug] Connection id ""0HLA6007PEOM8"" disconnecting. +2017-12-18 15:49:32.089 +05:30 [Debug] Connection id ""0HLA6007PEOM6"" received FIN. +2017-12-18 15:49:32.090 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" received FIN. +2017-12-18 15:49:32.090 +05:30 [Debug] Connection id ""0HLA6007PEOM7"" sending FIN. +2017-12-18 15:49:32.090 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" received FIN. +2017-12-18 15:49:32.090 +05:30 [Debug] Connection id ""0HLA6007PEOM7"" sent FIN with status "0". +2017-12-18 15:49:32.091 +05:30 [Debug] Connection id ""0HLA6007PEOM7"" stopped. +2017-12-18 15:49:32.090 +05:30 [Debug] Connection id ""0HLA6007PEOM8"" sending FIN. +2017-12-18 15:49:32.091 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" disconnecting. +2017-12-18 15:49:32.091 +05:30 [Debug] Connection id ""0HLA6007PEOM8"" sent FIN with status "0". +2017-12-18 15:49:32.091 +05:30 [Debug] Connection id ""0HLA6007PEOM6"" disconnecting. +2017-12-18 15:49:32.091 +05:30 [Debug] Connection id ""0HLA6007PEOM8"" stopped. +2017-12-18 15:49:32.092 +05:30 [Debug] Connection id ""0HLA6007PEOM6"" sending FIN. +2017-12-18 15:49:32.092 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" sending FIN. +2017-12-18 15:49:32.092 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" sent FIN with status "0". +2017-12-18 15:49:32.092 +05:30 [Debug] Connection id ""0HLA6007PEOM6"" sent FIN with status "0". +2017-12-18 15:49:32.092 +05:30 [Debug] Connection id ""0HLA6007PEOM4"" stopped. +2017-12-18 15:49:32.090 +05:30 [Debug] Connection id ""0HLA6007PEOM5"" disconnecting. +2017-12-18 15:49:32.093 +05:30 [Debug] Connection id ""0HLA6007PEOM6"" stopped. +2017-12-18 15:49:32.091 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" disconnecting. +2017-12-18 15:49:32.093 +05:30 [Debug] Connection id ""0HLA6007PEOM5"" sending FIN. +2017-12-18 15:49:32.094 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" sending FIN. +2017-12-18 15:49:32.094 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" sent FIN with status "0". +2017-12-18 15:49:32.094 +05:30 [Debug] Connection id ""0HLA6007PEOM2"" stopped. +2017-12-18 15:49:32.094 +05:30 [Debug] Connection id ""0HLA6007PEOM5"" sent FIN with status "0". +2017-12-18 15:49:32.095 +05:30 [Debug] Connection id ""0HLA6007PEOM5"" stopped. +2017-12-18 15:58:12.623 +05:30 [Debug] Connection id ""0HLA6007PEOM9"" started. +2017-12-18 15:58:12.627 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=page_1452799044811364&userId=48&message=none&scheduledatetime=Mon,%2018%20Dec%202017%2010:29:00%20GMT&localscheduletime=12/18/2017%2015:59&imagePath= multipart/form-data; boundary=----WebKitFormBoundarybcGS2d7sD8zdPAdC 186 +2017-12-18 15:58:12.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-18 15:58:12.633 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-18 15:58:15.674 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "page_1452799044811364", "48", "", "", "Mon, 18 Dec 2017 10:29:00 GMT", "12/18/2017 15:59", "", "
https://www.instagram.com/p/Bc1pkFZhBFg/", "NoMedia"]) - ModelState is Valid +2017-12-18 15:58:18.051 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Mon, 18 Dec 2017 10:29:00 GMT +2017-12-18 15:58:19.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 15:58:19.790 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 15:58:19.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 15:58:19.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 15:58:19.792 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" in 7157.9833ms +2017-12-18 15:58:19.794 +05:30 [Information] Request finished in 7168.3184ms 200 text/plain; charset=utf-8 +2017-12-18 15:58:19.794 +05:30 [Debug] Connection id ""0HLA6007PEOM9"" completed keep alive response. +2017-12-18 16:00:32.089 +05:30 [Debug] Connection id ""0HLA6007PEOM9"" received FIN. +2017-12-18 16:00:32.089 +05:30 [Debug] Connection id ""0HLA6007PEOM9"" disconnecting. +2017-12-18 16:00:32.089 +05:30 [Debug] Connection id ""0HLA6007PEOM9"" sending FIN. +2017-12-18 16:00:32.090 +05:30 [Debug] Connection id ""0HLA6007PEOM9"" sent FIN with status "0". +2017-12-18 16:00:32.090 +05:30 [Debug] Connection id ""0HLA6007PEOM9"" stopped. +2017-12-18 16:04:41.509 +05:30 [Debug] Hosting starting +2017-12-18 16:04:41.775 +05:30 [Debug] Hosting started +2017-12-18 16:04:41.938 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" started. +2017-12-18 16:04:41.938 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" started. +2017-12-18 16:04:42.177 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 16:04:42.168 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 16:04:42.255 +05:30 [Information] Request finished in 129.9267ms 200 +2017-12-18 16:04:42.315 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" completed keep alive response. +2017-12-18 16:04:43.171 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:04:43.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:04:43.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 16:04:43.723 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cd6a61e0-d603-4059-90a3-baa540b6323d"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 16:04:43.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:04:43.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 16:04:44.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 16:04:44.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 16:04:44.197 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:04:44.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:04:44.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:04:44.550 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 601.4183ms +2017-12-18 16:04:44.624 +05:30 [Information] Request finished in 2517.4884ms 200 application/json; charset=utf-8 +2017-12-18 16:04:44.626 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" completed keep alive response. +2017-12-18 16:04:47.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:04:54.386 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:04:54.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:04:54.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:04:54.397 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10451.0055ms +2017-12-18 16:04:54.399 +05:30 [Information] Request finished in 11228.037ms 200 application/json; charset=utf-8 +2017-12-18 16:04:54.400 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" completed keep alive response. +2017-12-18 16:05:04.592 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:05:04.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:05:04.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:05:07.629 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:05:08.227 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:08.227 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:08.228 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:08.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3633.5759ms +2017-12-18 16:05:08.231 +05:30 [Information] Request finished in 3638.9793ms 200 application/json; charset=utf-8 +2017-12-18 16:05:08.232 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" completed keep alive response. +2017-12-18 16:05:08.279 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:05:08.280 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:05:08.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:05:11.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:05:11.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:11.910 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:11.911 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:11.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3627.644ms +2017-12-18 16:05:11.914 +05:30 [Information] Request finished in 3635.7921ms 200 application/json; charset=utf-8 +2017-12-18 16:05:11.914 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" completed keep alive response. +2017-12-18 16:05:11.942 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:05:11.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:05:11.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:05:12.969 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:05:12.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:05:12.974 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:05:15.046 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:05:15.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:15.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:15.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:15.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3701.4229ms +2017-12-18 16:05:15.651 +05:30 [Information] Request finished in 3710.1551ms 200 application/json; charset=utf-8 +2017-12-18 16:05:15.652 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" completed keep alive response. +2017-12-18 16:05:16.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:05:16.635 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:16.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:16.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:16.639 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3663.5978ms +2017-12-18 16:05:16.642 +05:30 [Information] Request finished in 3672.445ms 200 application/json; charset=utf-8 +2017-12-18 16:05:16.643 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" completed keep alive response. +2017-12-18 16:05:21.478 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:05:21.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:05:21.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:05:24.523 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:05:25.121 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:25.121 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:25.122 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:25.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3641.078ms +2017-12-18 16:05:25.128 +05:30 [Information] Request finished in 3648.9823ms 200 application/json; charset=utf-8 +2017-12-18 16:05:25.129 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" completed keep alive response. +2017-12-18 16:05:25.150 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 16:05:25.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 16:05:25.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 16:05:28.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 16:05:31.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:31.580 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:31.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:31.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 6556.1287ms +2017-12-18 16:05:31.712 +05:30 [Information] Request finished in 6561.2846ms 200 application/json; charset=utf-8 +2017-12-18 16:05:31.712 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" completed keep alive response. +2017-12-18 16:05:32.110 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:05:32.111 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:05:32.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:05:35.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:05:35.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:35.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:35.766 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:35.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3655.4898ms +2017-12-18 16:05:35.771 +05:30 [Information] Request finished in 3660.4395ms 200 application/json; charset=utf-8 +2017-12-18 16:05:35.772 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" completed keep alive response. +2017-12-18 16:05:35.840 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 16:05:35.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 16:05:35.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 16:05:38.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 16:05:40.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:40.838 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:40.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:40.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5033.5758ms +2017-12-18 16:05:40.893 +05:30 [Information] Request finished in 5058.1606ms 200 application/json; charset=utf-8 +2017-12-18 16:05:40.893 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" completed keep alive response. +2017-12-18 16:05:42.664 +05:30 [Debug] Connection id ""0HLA60BPBRU8A"" started. +2017-12-18 16:05:42.664 +05:30 [Debug] Connection id ""0HLA60BPBRU89"" started. +2017-12-18 16:05:42.665 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 16:05:42.666 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 16:05:42.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 16:05:42.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 16:05:42.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 16:05:42.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 16:05:42.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 16:05:42.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 16:05:42.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 16:05:42.763 +05:30 [Debug] Connection id ""0HLA60BPBRU8C"" started. +2017-12-18 16:05:42.763 +05:30 [Debug] Connection id ""0HLA60BPBRU8B"" started. +2017-12-18 16:05:43.401 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 16:05:43.402 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 16:05:43.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 16:05:43.819 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 16:05:43.820 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 16:05:43.822 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 16:05:44.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 16:05:44.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 16:05:44.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 16:05:47.521 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:05:47.579 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:05:47.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:05:47.615 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:05:47.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:05:47.618 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:05:48.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:48.211 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:05:48.211 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:48.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:48.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5545.0356ms +2017-12-18 16:05:48.224 +05:30 [Information] Request finished in 5557.1649ms 200 application/json; charset=utf-8 +2017-12-18 16:05:48.224 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" completed keep alive response. +2017-12-18 16:05:48.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 16:05:48.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 16:05:48.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 16:05:49.946 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:49.947 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:05:49.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:49.954 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:50.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6581.2407ms +2017-12-18 16:05:50.008 +05:30 [Information] Request finished in 6607.2945ms 200 application/json; charset=utf-8 +2017-12-18 16:05:50.009 +05:30 [Debug] Connection id ""0HLA60BPBRU89"" completed keep alive response. +2017-12-18 16:05:50.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:50.242 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:05:50.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:50.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:50.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6421.0688ms +2017-12-18 16:05:50.249 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:50.250 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:05:50.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:50.274 +05:30 [Information] Request finished in 6432.855ms 200 application/json; charset=utf-8 +2017-12-18 16:05:50.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:50.274 +05:30 [Debug] Connection id ""0HLA60BPBRU8C"" completed keep alive response. +2017-12-18 16:05:50.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7604.7684ms +2017-12-18 16:05:50.289 +05:30 [Information] Request finished in 7621.4239ms 200 application/json; charset=utf-8 +2017-12-18 16:05:50.290 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" completed keep alive response. +2017-12-18 16:05:50.307 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:50.308 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:05:50.308 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:50.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:50.311 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5906.974ms +2017-12-18 16:05:50.316 +05:30 [Information] Request finished in 5913.043ms 200 application/json; charset=utf-8 +2017-12-18 16:05:50.316 +05:30 [Debug] Connection id ""0HLA60BPBRU8B"" completed keep alive response. +2017-12-18 16:05:50.905 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 16:05:50.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 16:05:50.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 16:05:51.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:05:53.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:53.823 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:05:53.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:53.824 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:53.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5628.9288ms +2017-12-18 16:05:53.869 +05:30 [Information] Request finished in 5634.8196ms 200 application/json; charset=utf-8 +2017-12-18 16:05:53.870 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" completed keep alive response. +2017-12-18 16:05:53.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:05:54.566 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:05:54.566 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:05:54.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:05:54.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:05:54.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3669.4171ms +2017-12-18 16:05:54.582 +05:30 [Information] Request finished in 3679.5659ms 200 application/json; charset=utf-8 +2017-12-18 16:05:54.583 +05:30 [Debug] Connection id ""0HLA60BPBRU89"" completed keep alive response. +2017-12-18 16:05:56.209 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:05:56.294 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:05:56.883 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:05:56.884 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:06:09.473 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:06:09.474 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:06:09.474 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:06:09.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:06:09.499 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26826.2223ms +2017-12-18 16:06:09.502 +05:30 [Information] Request finished in 26834.6914ms 200 application/json; charset=utf-8 +2017-12-18 16:06:09.502 +05:30 [Debug] Connection id ""0HLA60BPBRU8A"" completed keep alive response. +2017-12-18 16:06:19.937 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 16:06:19.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 16:06:19.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 16:06:19.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 16:06:19.985 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 16:06:19.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 16:06:20.069 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 16:06:20.070 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 16:06:20.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 16:06:23.027 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 16:06:23.030 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 16:06:23.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 16:06:28.444 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:06:28.444 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:06:28.445 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:06:28.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:06:28.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 8429.0287ms +2017-12-18 16:06:28.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:06:28.534 +05:30 [Information] Request finished in 8584.599ms 200 application/json; charset=utf-8 +2017-12-18 16:06:28.534 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:06:28.535 +05:30 [Debug] Connection id ""0HLA60BPBRU8B"" completed keep alive response. +2017-12-18 16:06:28.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:06:28.537 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:06:28.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 8611.6458ms +2017-12-18 16:06:28.634 +05:30 [Information] Request finished in 8677.9234ms 200 application/json; charset=utf-8 +2017-12-18 16:06:28.635 +05:30 [Debug] Connection id ""0HLA60BPBRU8C"" completed keep alive response. +2017-12-18 16:06:31.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:06:31.579 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:06:31.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:06:31.581 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:06:31.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 11625.7904ms +2017-12-18 16:06:31.616 +05:30 [Information] Request finished in 11681.1113ms 200 application/json; charset=utf-8 +2017-12-18 16:06:31.616 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" completed keep alive response. +2017-12-18 16:08:22.210 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" received FIN. +2017-12-18 16:08:22.210 +05:30 [Debug] Connection id ""0HLA60BPBRU8A"" received FIN. +2017-12-18 16:08:22.211 +05:30 [Debug] Connection id ""0HLA60BPBRU89"" received FIN. +2017-12-18 16:08:22.211 +05:30 [Debug] Connection id ""0HLA60BPBRU8C"" received FIN. +2017-12-18 16:08:22.211 +05:30 [Debug] Connection id ""0HLA60BPBRU8B"" received FIN. +2017-12-18 16:08:22.211 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" received FIN. +2017-12-18 16:08:22.211 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" disconnecting. +2017-12-18 16:08:22.211 +05:30 [Debug] Connection id ""0HLA60BPBRU89"" disconnecting. +2017-12-18 16:08:22.212 +05:30 [Debug] Connection id ""0HLA60BPBRU8C"" disconnecting. +2017-12-18 16:08:22.212 +05:30 [Debug] Connection id ""0HLA60BPBRU8B"" disconnecting. +2017-12-18 16:08:22.212 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" disconnecting. +2017-12-18 16:08:22.212 +05:30 [Debug] Connection id ""0HLA60BPBRU8C"" sending FIN. +2017-12-18 16:08:22.212 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" sending FIN. +2017-12-18 16:08:22.213 +05:30 [Debug] Connection id ""0HLA60BPBRU8A"" disconnecting. +2017-12-18 16:08:22.214 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" sending FIN. +2017-12-18 16:08:22.214 +05:30 [Debug] Connection id ""0HLA60BPBRU8B"" sending FIN. +2017-12-18 16:08:22.214 +05:30 [Debug] Connection id ""0HLA60BPBRU8A"" sending FIN. +2017-12-18 16:08:22.215 +05:30 [Debug] Connection id ""0HLA60BPBRU89"" sending FIN. +2017-12-18 16:08:22.221 +05:30 [Debug] Connection id ""0HLA60BPBRU89"" sent FIN with status "0". +2017-12-18 16:08:22.221 +05:30 [Debug] Connection id ""0HLA60BPBRU8A"" sent FIN with status "0". +2017-12-18 16:08:22.224 +05:30 [Debug] Connection id ""0HLA60BPBRU8A"" stopped. +2017-12-18 16:08:22.224 +05:30 [Debug] Connection id ""0HLA60BPBRU89"" stopped. +2017-12-18 16:08:22.224 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" sent FIN with status "0". +2017-12-18 16:08:22.225 +05:30 [Debug] Connection id ""0HLA60BPBRU8B"" sent FIN with status "0". +2017-12-18 16:08:22.225 +05:30 [Debug] Connection id ""0HLA60BPBRU88"" stopped. +2017-12-18 16:08:22.225 +05:30 [Debug] Connection id ""0HLA60BPBRU8B"" stopped. +2017-12-18 16:08:22.225 +05:30 [Debug] Connection id ""0HLA60BPBRU8C"" sent FIN with status "0". +2017-12-18 16:08:22.225 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" sent FIN with status "0". +2017-12-18 16:08:22.226 +05:30 [Debug] Connection id ""0HLA60BPBRU8C"" stopped. +2017-12-18 16:08:22.226 +05:30 [Debug] Connection id ""0HLA60BPBRU87"" stopped. +2017-12-18 16:09:14.129 +05:30 [Debug] Connection id ""0HLA60BPBRU8D"" started. +2017-12-18 16:09:14.130 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=page_1452799044811364&userId=48&message=none&scheduledatetime=Mon,%2018%20Dec%202017%2011:38:00%20GMT&localscheduletime=12/18/2017%2017:08&imagePath= multipart/form-data; boundary=----WebKitFormBoundary7FmZ6G2gHHTk0Cnh 186 +2017-12-18 16:09:14.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-18 16:09:14.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-18 16:09:17.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "page_1452799044811364", "48", "", "", "Mon, 18 Dec 2017 11:38:00 GMT", "12/18/2017 17:08", "", "
https://www.instagram.com/p/Bc1pkFZhBFg/", "NoMedia"]) - ModelState is Valid +2017-12-18 16:18:23.501 +05:30 [Debug] Hosting starting +2017-12-18 16:18:23.873 +05:30 [Debug] Hosting started +2017-12-18 16:18:23.974 +05:30 [Debug] Connection id ""0HLA60JEBDOOB"" started. +2017-12-18 16:18:23.974 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" started. +2017-12-18 16:18:24.233 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 16:18:24.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 16:18:24.340 +05:30 [Information] Request finished in 158.8818ms 200 +2017-12-18 16:18:24.406 +05:30 [Debug] Connection id ""0HLA60JEBDOOB"" completed keep alive response. +2017-12-18 16:18:26.001 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 16:18:26.082 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"aca1b1f0-5745-4dbf-8a9b-cd70cf023fe6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 16:18:26.399 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:18:26.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:18:26.398 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 16:18:26.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:18:26.598 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 16:18:26.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 16:18:26.659 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:18:26.678 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:18:26.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:18:27.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 653.1507ms +2017-12-18 16:18:27.181 +05:30 [Information] Request finished in 3027.9605ms 200 application/json; charset=utf-8 +2017-12-18 16:18:27.185 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:18:27.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-18 16:18:27.244 +05:30 [Debug] Request did not match any routes. +2017-12-18 16:18:27.273 +05:30 [Debug] The request path "" does not match the path filter +2017-12-18 16:18:27.283 +05:30 [Information] Request finished in 75.7152ms 404 +2017-12-18 16:18:27.283 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:18:30.400 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:18:37.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:18:38.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:18:38.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:18:38.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11603.2377ms +2017-12-18 16:18:38.013 +05:30 [Information] Request finished in 11613.634ms 200 application/json; charset=utf-8 +2017-12-18 16:18:38.013 +05:30 [Debug] Connection id ""0HLA60JEBDOOB"" completed keep alive response. +2017-12-18 16:18:48.309 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:18:48.309 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:18:48.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:18:51.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:18:51.950 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:18:51.950 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:18:51.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:18:51.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3641.2932ms +2017-12-18 16:18:51.955 +05:30 [Information] Request finished in 3645.8448ms 200 application/json; charset=utf-8 +2017-12-18 16:18:51.956 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:18:52.004 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:18:52.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:18:52.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:18:55.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:18:55.647 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:18:55.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:18:55.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:18:55.649 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3642.9335ms +2017-12-18 16:18:55.651 +05:30 [Information] Request finished in 3647.9998ms 200 application/json; charset=utf-8 +2017-12-18 16:18:55.651 +05:30 [Debug] Connection id ""0HLA60JEBDOOB"" completed keep alive response. +2017-12-18 16:18:55.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:18:55.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:18:55.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:18:58.722 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:18:59.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:18:59.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:18:59.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:18:59.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3638.0221ms +2017-12-18 16:18:59.326 +05:30 [Information] Request finished in 3643.771ms 200 application/json; charset=utf-8 +2017-12-18 16:18:59.327 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:19:58.853 +05:30 [Debug] Connection id ""0HLA60JEBDOOB"" received FIN. +2017-12-18 16:19:58.883 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:19:58.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:19:58.883 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:19:58.885 +05:30 [Debug] Connection id ""0HLA60JEBDOOB"" disconnecting. +2017-12-18 16:19:58.890 +05:30 [Debug] Connection id ""0HLA60JEBDOOB"" sending FIN. +2017-12-18 16:19:58.899 +05:30 [Debug] Connection id ""0HLA60JEBDOOB"" sent FIN with status "0". +2017-12-18 16:19:58.905 +05:30 [Debug] Connection id ""0HLA60JEBDOOB"" stopped. +2017-12-18 16:20:01.956 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:20:02.547 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:02.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:02.550 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:02.553 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3666.2383ms +2017-12-18 16:20:02.556 +05:30 [Information] Request finished in 3701.3508ms 200 application/json; charset=utf-8 +2017-12-18 16:20:02.557 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:20:09.292 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:20:09.293 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:20:09.294 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:20:12.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:20:12.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:12.915 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:12.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:12.920 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3623.4448ms +2017-12-18 16:20:12.923 +05:30 [Information] Request finished in 3632.2675ms 200 application/json; charset=utf-8 +2017-12-18 16:20:12.923 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:20:12.944 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 16:20:12.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 16:20:12.946 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 16:20:16.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 16:20:18.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:18.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:18.354 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:18.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5526.9067ms +2017-12-18 16:20:18.477 +05:30 [Information] Request finished in 5533.0304ms 200 application/json; charset=utf-8 +2017-12-18 16:20:18.477 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:20:18.859 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:20:18.860 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:20:18.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:20:21.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:20:22.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:22.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:22.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:22.509 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3647.3542ms +2017-12-18 16:20:22.511 +05:30 [Information] Request finished in 3652.2168ms 200 application/json; charset=utf-8 +2017-12-18 16:20:22.511 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:20:22.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 16:20:22.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 16:20:22.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 16:20:25.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 16:20:27.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:27.490 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:27.491 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:27.527 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4977.9246ms +2017-12-18 16:20:27.529 +05:30 [Information] Request finished in 4982.5605ms 200 application/json; charset=utf-8 +2017-12-18 16:20:27.530 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:20:29.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 16:20:29.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 16:20:29.027 +05:30 [Debug] Connection id ""0HLA60JEBDOOD"" started. +2017-12-18 16:20:29.027 +05:30 [Debug] Connection id ""0HLA60JEBDOOC"" started. +2017-12-18 16:20:29.029 +05:30 [Debug] Connection id ""0HLA60JEBDOOE"" started. +2017-12-18 16:20:29.030 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 16:20:29.031 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 16:20:29.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 16:20:29.032 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 16:20:29.033 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 16:20:29.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 16:20:29.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 16:20:29.038 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 16:20:29.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 16:20:29.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 16:20:29.158 +05:30 [Debug] Connection id ""0HLA60JEBDOOF"" started. +2017-12-18 16:20:29.160 +05:30 [Debug] Connection id ""0HLA60JEBDOOG"" started. +2017-12-18 16:20:29.663 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 16:20:29.664 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 16:20:29.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 16:20:30.663 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 16:20:30.664 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 16:20:30.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 16:20:33.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:20:33.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:20:33.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:20:33.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:20:33.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:20:33.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:20:35.140 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:35.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:20:35.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:35.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:35.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6109.2605ms +2017-12-18 16:20:35.149 +05:30 [Information] Request finished in 6116.3176ms 200 application/json; charset=utf-8 +2017-12-18 16:20:35.150 +05:30 [Debug] Connection id ""0HLA60JEBDOOD"" completed keep alive response. +2017-12-18 16:20:35.153 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 16:20:35.154 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 16:20:35.155 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 16:20:36.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:36.082 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:20:36.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:36.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:36.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7071.1726ms +2017-12-18 16:20:36.158 +05:30 [Information] Request finished in 7098.8181ms 200 application/json; charset=utf-8 +2017-12-18 16:20:36.158 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" completed keep alive response. +2017-12-18 16:20:36.234 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:36.234 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:20:36.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:36.242 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:36.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7230.4616ms +2017-12-18 16:20:36.285 +05:30 [Information] Request finished in 7244.1142ms 200 application/json; charset=utf-8 +2017-12-18 16:20:36.286 +05:30 [Debug] Connection id ""0HLA60JEBDOOE"" completed keep alive response. +2017-12-18 16:20:36.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:36.571 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:20:36.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:36.572 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:36.573 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6892.0214ms +2017-12-18 16:20:36.576 +05:30 [Information] Request finished in 6915.0972ms 200 application/json; charset=utf-8 +2017-12-18 16:20:36.577 +05:30 [Debug] Connection id ""0HLA60JEBDOOF"" completed keep alive response. +2017-12-18 16:20:36.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:36.788 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:20:36.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:36.789 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:36.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6120.9532ms +2017-12-18 16:20:36.793 +05:30 [Information] Request finished in 6132.4007ms 200 application/json; charset=utf-8 +2017-12-18 16:20:36.794 +05:30 [Debug] Connection id ""0HLA60JEBDOOG"" completed keep alive response. +2017-12-18 16:20:38.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:20:40.827 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:40.827 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:20:40.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:40.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:40.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5725.2626ms +2017-12-18 16:20:40.885 +05:30 [Information] Request finished in 5731.9704ms 200 application/json; charset=utf-8 +2017-12-18 16:20:40.885 +05:30 [Debug] Connection id ""0HLA60JEBDOOD"" completed keep alive response. +2017-12-18 16:20:42.725 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:20:42.935 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:20:43.509 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:20:43.511 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:20:56.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:20:56.997 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:20:56.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:20:56.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:20:57.025 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27986.6117ms +2017-12-18 16:20:57.030 +05:30 [Information] Request finished in 27997.8898ms 200 application/json; charset=utf-8 +2017-12-18 16:20:57.030 +05:30 [Debug] Connection id ""0HLA60JEBDOOC"" completed keep alive response. +2017-12-18 16:22:04.574 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" received FIN. +2017-12-18 16:22:04.575 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" disconnecting. +2017-12-18 16:22:04.576 +05:30 [Debug] Connection id ""0HLA60JEBDOOE"" received FIN. +2017-12-18 16:22:04.576 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" sending FIN. +2017-12-18 16:22:04.576 +05:30 [Debug] Connection id ""0HLA60JEBDOOG"" received FIN. +2017-12-18 16:22:04.577 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" sent FIN with status "0". +2017-12-18 16:22:04.577 +05:30 [Debug] Connection id ""0HLA60JEBDOOD"" received FIN. +2017-12-18 16:22:04.577 +05:30 [Debug] Connection id ""0HLA60JEBDOOA"" stopped. +2017-12-18 16:22:04.577 +05:30 [Debug] Connection id ""0HLA60JEBDOOF"" received FIN. +2017-12-18 16:22:04.577 +05:30 [Debug] Connection id ""0HLA60JEBDOOC"" received FIN. +2017-12-18 16:22:04.580 +05:30 [Debug] Connection id ""0HLA60JEBDOOE"" disconnecting. +2017-12-18 16:22:04.582 +05:30 [Debug] Connection id ""0HLA60JEBDOOE"" sending FIN. +2017-12-18 16:22:04.582 +05:30 [Debug] Connection id ""0HLA60JEBDOOE"" sent FIN with status "0". +2017-12-18 16:22:04.582 +05:30 [Debug] Connection id ""0HLA60JEBDOOG"" disconnecting. +2017-12-18 16:22:04.583 +05:30 [Debug] Connection id ""0HLA60JEBDOOF"" disconnecting. +2017-12-18 16:22:04.583 +05:30 [Debug] Connection id ""0HLA60JEBDOOF"" sending FIN. +2017-12-18 16:22:04.583 +05:30 [Debug] Connection id ""0HLA60JEBDOOC"" disconnecting. +2017-12-18 16:22:04.584 +05:30 [Debug] Connection id ""0HLA60JEBDOOF"" sent FIN with status "0". +2017-12-18 16:22:04.583 +05:30 [Debug] Connection id ""0HLA60JEBDOOE"" stopped. +2017-12-18 16:22:04.583 +05:30 [Debug] Connection id ""0HLA60JEBDOOD"" disconnecting. +2017-12-18 16:22:04.584 +05:30 [Debug] Connection id ""0HLA60JEBDOOF"" stopped. +2017-12-18 16:22:04.605 +05:30 [Debug] Connection id ""0HLA60JEBDOOG"" sending FIN. +2017-12-18 16:22:04.605 +05:30 [Debug] Connection id ""0HLA60JEBDOOC"" sending FIN. +2017-12-18 16:22:04.605 +05:30 [Debug] Connection id ""0HLA60JEBDOOD"" sending FIN. +2017-12-18 16:22:04.606 +05:30 [Debug] Connection id ""0HLA60JEBDOOC"" sent FIN with status "0". +2017-12-18 16:22:04.606 +05:30 [Debug] Connection id ""0HLA60JEBDOOC"" stopped. +2017-12-18 16:22:04.606 +05:30 [Debug] Connection id ""0HLA60JEBDOOD"" sent FIN with status "0". +2017-12-18 16:22:04.607 +05:30 [Debug] Connection id ""0HLA60JEBDOOD"" stopped. +2017-12-18 16:22:04.607 +05:30 [Debug] Connection id ""0HLA60JEBDOOG"" sent FIN with status "0". +2017-12-18 16:22:04.608 +05:30 [Debug] Connection id ""0HLA60JEBDOOG"" stopped. +2017-12-18 16:48:04.481 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" started. +2017-12-18 16:48:04.488 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:48:04.491 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:48:04.491 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:48:07.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:48:09.540 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:09.540 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:09.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:09.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5050.1301ms +2017-12-18 16:48:09.544 +05:30 [Information] Request finished in 5061.8181ms 200 application/json; charset=utf-8 +2017-12-18 16:48:09.544 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" completed keep alive response. +2017-12-18 16:48:09.622 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:48:09.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:48:09.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:48:12.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:48:13.206 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:13.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:13.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:13.215 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3588.4523ms +2017-12-18 16:48:13.223 +05:30 [Information] Request finished in 3600.841ms 200 application/json; charset=utf-8 +2017-12-18 16:48:13.223 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" completed keep alive response. +2017-12-18 16:48:15.505 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:48:15.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:48:15.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:48:17.960 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" started. +2017-12-18 16:48:18.063 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:48:18.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:48:18.064 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:48:18.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:48:19.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:19.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:19.432 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:19.436 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3920.4208ms +2017-12-18 16:48:19.448 +05:30 [Information] Request finished in 3958.5211ms 200 application/json; charset=utf-8 +2017-12-18 16:48:19.448 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" completed keep alive response. +2017-12-18 16:48:20.077 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:48:20.078 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:48:20.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:48:21.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:48:21.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:21.730 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:21.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:21.738 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3669.7881ms +2017-12-18 16:48:21.748 +05:30 [Information] Request finished in 3768.5518ms 200 application/json; charset=utf-8 +2017-12-18 16:48:21.749 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" completed keep alive response. +2017-12-18 16:48:23.214 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:48:23.765 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:23.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:23.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:23.767 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3687.0721ms +2017-12-18 16:48:23.774 +05:30 [Information] Request finished in 3692.163ms 200 application/json; charset=utf-8 +2017-12-18 16:48:23.774 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" completed keep alive response. +2017-12-18 16:48:23.794 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:48:23.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:48:23.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:48:24.294 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:48:24.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:48:24.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:48:26.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:48:27.328 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:48:27.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:27.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:27.384 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:27.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3590.7936ms +2017-12-18 16:48:27.388 +05:30 [Information] Request finished in 3594.2847ms 200 application/json; charset=utf-8 +2017-12-18 16:48:27.388 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" completed keep alive response. +2017-12-18 16:48:30.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:30.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:30.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:30.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6401.8304ms +2017-12-18 16:48:30.709 +05:30 [Information] Request finished in 6420.4545ms 200 application/json; charset=utf-8 +2017-12-18 16:48:30.709 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" completed keep alive response. +2017-12-18 16:48:30.717 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 16:48:30.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 16:48:30.718 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 16:48:33.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 16:48:35.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:35.598 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:35.599 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:35.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4882.5104ms +2017-12-18 16:48:35.604 +05:30 [Information] Request finished in 4887.4601ms 200 application/json; charset=utf-8 +2017-12-18 16:48:35.605 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" completed keep alive response. +2017-12-18 16:48:35.709 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:48:35.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:48:35.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:48:38.751 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:48:39.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:39.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:39.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:39.295 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3570.644ms +2017-12-18 16:48:39.297 +05:30 [Information] Request finished in 3592.5004ms 200 application/json; charset=utf-8 +2017-12-18 16:48:39.298 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" completed keep alive response. +2017-12-18 16:48:39.304 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 16:48:39.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 16:48:39.305 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 16:48:42.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 16:48:44.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:44.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:44.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:44.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4763.4718ms +2017-12-18 16:48:44.076 +05:30 [Information] Request finished in 4772.9995ms 200 application/json; charset=utf-8 +2017-12-18 16:48:44.078 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" completed keep alive response. +2017-12-18 16:48:45.075 +05:30 [Debug] Connection id ""0HLA60JEBDOOJ"" started. +2017-12-18 16:48:45.075 +05:30 [Debug] Connection id ""0HLA60JEBDOOK"" started. +2017-12-18 16:48:45.098 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 16:48:45.098 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 16:48:45.098 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 16:48:45.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 16:48:45.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 16:48:45.100 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 16:48:45.107 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 16:48:45.114 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 16:48:45.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 16:48:45.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 16:48:45.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 16:48:45.116 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 16:48:45.198 +05:30 [Debug] Connection id ""0HLA60JEBDOOL"" started. +2017-12-18 16:48:45.199 +05:30 [Debug] Connection id ""0HLA60JEBDOOM"" started. +2017-12-18 16:48:45.199 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 16:48:45.200 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 16:48:45.201 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 16:48:45.201 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 16:48:45.202 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 16:48:45.204 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 16:48:48.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:48:48.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:48:48.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:48:48.382 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:48:48.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:48:48.397 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:48:48.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:48.927 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:48:48.928 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:48.929 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:48.933 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3812.5473ms +2017-12-18 16:48:48.936 +05:30 [Information] Request finished in 3837.8509ms 200 application/json; charset=utf-8 +2017-12-18 16:48:48.937 +05:30 [Debug] Connection id ""0HLA60JEBDOOK"" completed keep alive response. +2017-12-18 16:48:48.945 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 16:48:48.946 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 16:48:48.946 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 16:48:49.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:49.292 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:48:49.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:49.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:49.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4194.9413ms +2017-12-18 16:48:49.298 +05:30 [Information] Request finished in 4221.2203ms 200 application/json; charset=utf-8 +2017-12-18 16:48:49.298 +05:30 [Debug] Connection id ""0HLA60JEBDOOJ"" completed keep alive response. +2017-12-18 16:48:50.728 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:50.728 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:48:50.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:50.730 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:50.732 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5631.4806ms +2017-12-18 16:48:50.734 +05:30 [Information] Request finished in 5658.8568ms 200 application/json; charset=utf-8 +2017-12-18 16:48:50.734 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" completed keep alive response. +2017-12-18 16:48:51.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:51.182 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:48:51.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:51.186 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:51.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5985.3054ms +2017-12-18 16:48:51.192 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:51.192 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:48:51.193 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:51.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:51.212 +05:30 [Information] Request finished in 5996.0931ms 200 application/json; charset=utf-8 +2017-12-18 16:48:51.213 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5992.1423ms +2017-12-18 16:48:51.213 +05:30 [Debug] Connection id ""0HLA60JEBDOOL"" completed keep alive response. +2017-12-18 16:48:51.229 +05:30 [Information] Request finished in 6020.528ms 200 application/json; charset=utf-8 +2017-12-18 16:48:51.229 +05:30 [Debug] Connection id ""0HLA60JEBDOOM"" completed keep alive response. +2017-12-18 16:48:51.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:48:54.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:48:54.517 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:48:54.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:48:54.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:48:54.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5572.3608ms +2017-12-18 16:48:54.539 +05:30 [Information] Request finished in 5597.5089ms 200 application/json; charset=utf-8 +2017-12-18 16:48:54.539 +05:30 [Debug] Connection id ""0HLA60JEBDOOK"" completed keep alive response. +2017-12-18 16:48:57.455 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:48:57.456 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:48:58.106 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:48:58.108 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:49:12.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:49:12.437 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:49:12.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:49:12.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:49:12.443 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27324.3645ms +2017-12-18 16:49:12.447 +05:30 [Information] Request finished in 27371.6222ms 200 application/json; charset=utf-8 +2017-12-18 16:49:12.447 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" completed keep alive response. +2017-12-18 16:51:24.417 +05:30 [Debug] Connection id ""0HLA60JEBDOOJ"" received FIN. +2017-12-18 16:51:24.417 +05:30 [Debug] Connection id ""0HLA60JEBDOOM"" received FIN. +2017-12-18 16:51:24.417 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" received FIN. +2017-12-18 16:51:24.417 +05:30 [Debug] Connection id ""0HLA60JEBDOOK"" received FIN. +2017-12-18 16:51:24.418 +05:30 [Debug] Connection id ""0HLA60JEBDOOL"" received FIN. +2017-12-18 16:51:24.417 +05:30 [Debug] Connection id ""0HLA60JEBDOOJ"" disconnecting. +2017-12-18 16:51:24.418 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" received FIN. +2017-12-18 16:51:24.418 +05:30 [Debug] Connection id ""0HLA60JEBDOOJ"" sending FIN. +2017-12-18 16:51:24.448 +05:30 [Debug] Connection id ""0HLA60JEBDOOJ"" sent FIN with status "0". +2017-12-18 16:51:24.448 +05:30 [Debug] Connection id ""0HLA60JEBDOOL"" disconnecting. +2017-12-18 16:51:24.448 +05:30 [Debug] Connection id ""0HLA60JEBDOOJ"" stopped. +2017-12-18 16:51:24.449 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" disconnecting. +2017-12-18 16:51:24.449 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" sending FIN. +2017-12-18 16:51:24.449 +05:30 [Debug] Connection id ""0HLA60JEBDOOL"" sending FIN. +2017-12-18 16:51:24.449 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" sent FIN with status "0". +2017-12-18 16:51:24.449 +05:30 [Debug] Connection id ""0HLA60JEBDOOL"" sent FIN with status "0". +2017-12-18 16:51:24.449 +05:30 [Debug] Connection id ""0HLA60JEBDOOI"" stopped. +2017-12-18 16:51:24.450 +05:30 [Debug] Connection id ""0HLA60JEBDOOL"" stopped. +2017-12-18 16:51:24.450 +05:30 [Debug] Connection id ""0HLA60JEBDOOK"" disconnecting. +2017-12-18 16:51:24.450 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" disconnecting. +2017-12-18 16:51:24.450 +05:30 [Debug] Connection id ""0HLA60JEBDOOK"" sending FIN. +2017-12-18 16:51:24.451 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" sending FIN. +2017-12-18 16:51:24.451 +05:30 [Debug] Connection id ""0HLA60JEBDOOK"" sent FIN with status "0". +2017-12-18 16:51:24.451 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" sent FIN with status "0". +2017-12-18 16:51:24.451 +05:30 [Debug] Connection id ""0HLA60JEBDOOH"" stopped. +2017-12-18 16:51:24.453 +05:30 [Debug] Connection id ""0HLA60JEBDOOK"" stopped. +2017-12-18 16:51:24.418 +05:30 [Debug] Connection id ""0HLA60JEBDOOM"" disconnecting. +2017-12-18 16:51:24.458 +05:30 [Debug] Connection id ""0HLA60JEBDOOM"" sending FIN. +2017-12-18 16:51:24.459 +05:30 [Debug] Connection id ""0HLA60JEBDOOM"" sent FIN with status "0". +2017-12-18 16:51:24.459 +05:30 [Debug] Connection id ""0HLA60JEBDOOM"" stopped. +2017-12-18 16:54:14.325 +05:30 [Debug] Connection id ""0HLA60JEBDOON"" started. +2017-12-18 16:54:14.333 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 16:54:14.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 16:54:14.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 16:54:17.371 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:54:17.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:54:17.922 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:54:17.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:54:17.923 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:54:17.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3601.4453ms +2017-12-18 16:54:17.941 +05:30 [Information] Request finished in 3613.8633ms 200 application/json; charset=utf-8 +2017-12-18 16:54:17.941 +05:30 [Debug] Connection id ""0HLA60JEBDOON"" completed keep alive response. +2017-12-18 16:54:25.752 +05:30 [Debug] Connection id ""0HLA60JEBDOOO"" started. +2017-12-18 16:54:25.752 +05:30 [Debug] Connection id ""0HLA60JEBDOOP"" started. +2017-12-18 16:54:25.755 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 16:54:25.756 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 16:54:25.757 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 16:54:25.775 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 16:54:25.775 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 16:54:25.781 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 16:54:25.789 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 16:54:25.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 16:54:25.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 16:54:27.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 16:54:28.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 16:54:28.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 16:54:32.718 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:54:32.719 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:54:32.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:54:32.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:54:32.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 6957.315ms +2017-12-18 16:54:32.743 +05:30 [Information] Request finished in 6989.7933ms 200 application/json; charset=utf-8 +2017-12-18 16:54:32.744 +05:30 [Debug] Connection id ""0HLA60JEBDOOP"" completed keep alive response. +2017-12-18 16:54:32.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:54:32.804 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:54:32.804 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:54:32.805 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:54:32.820 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 7060.0876ms +2017-12-18 16:54:32.824 +05:30 [Information] Request finished in 7076.7813ms 200 application/json; charset=utf-8 +2017-12-18 16:54:32.825 +05:30 [Debug] Connection id ""0HLA60JEBDOON"" completed keep alive response. +2017-12-18 16:54:36.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:54:36.717 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:54:36.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:54:36.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:54:36.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 10947.9916ms +2017-12-18 16:54:36.786 +05:30 [Information] Request finished in 11031.8627ms 200 application/json; charset=utf-8 +2017-12-18 16:54:36.787 +05:30 [Debug] Connection id ""0HLA60JEBDOOO"" completed keep alive response. +2017-12-18 16:56:07.675 +05:30 [Debug] Connection id ""0HLA60JEBDOON"" received FIN. +2017-12-18 16:56:07.675 +05:30 [Debug] Connection id ""0HLA60JEBDOOP"" received FIN. +2017-12-18 16:56:07.675 +05:30 [Debug] Connection id ""0HLA60JEBDOOO"" received FIN. +2017-12-18 16:56:07.675 +05:30 [Debug] Connection id ""0HLA60JEBDOON"" disconnecting. +2017-12-18 16:56:07.675 +05:30 [Debug] Connection id ""0HLA60JEBDOON"" sending FIN. +2017-12-18 16:56:07.675 +05:30 [Debug] Connection id ""0HLA60JEBDOOP"" disconnecting. +2017-12-18 16:56:07.676 +05:30 [Debug] Connection id ""0HLA60JEBDOOP"" sending FIN. +2017-12-18 16:56:07.676 +05:30 [Debug] Connection id ""0HLA60JEBDOON"" sent FIN with status "0". +2017-12-18 16:56:07.676 +05:30 [Debug] Connection id ""0HLA60JEBDOOP"" sent FIN with status "0". +2017-12-18 16:56:07.676 +05:30 [Debug] Connection id ""0HLA60JEBDOON"" stopped. +2017-12-18 16:56:07.677 +05:30 [Debug] Connection id ""0HLA60JEBDOOP"" stopped. +2017-12-18 16:56:07.678 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" started. +2017-12-18 16:56:07.675 +05:30 [Debug] Connection id ""0HLA60JEBDOOO"" disconnecting. +2017-12-18 16:56:07.682 +05:30 [Debug] Connection id ""0HLA60JEBDOOO"" sending FIN. +2017-12-18 16:56:07.682 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:56:07.682 +05:30 [Debug] Connection id ""0HLA60JEBDOOO"" sent FIN with status "0". +2017-12-18 16:56:07.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:56:07.683 +05:30 [Debug] Connection id ""0HLA60JEBDOOO"" stopped. +2017-12-18 16:56:07.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:56:10.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:56:11.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:56:11.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:56:11.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:56:11.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3609.2311ms +2017-12-18 16:56:11.295 +05:30 [Information] Request finished in 3613.9706ms 200 application/json; charset=utf-8 +2017-12-18 16:56:11.295 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" completed keep alive response. +2017-12-18 16:56:11.301 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 16:56:11.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 16:56:11.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 16:56:14.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 16:56:16.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:56:16.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:56:16.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:56:16.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4781.3908ms +2017-12-18 16:56:16.091 +05:30 [Information] Request finished in 4788.2075ms 200 application/json; charset=utf-8 +2017-12-18 16:56:16.092 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" completed keep alive response. +2017-12-18 16:56:20.048 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" started. +2017-12-18 16:56:20.049 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" started. +2017-12-18 16:56:20.049 +05:30 [Debug] Connection id ""0HLA60JEBDOOT"" started. +2017-12-18 16:56:20.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 16:56:20.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 16:56:20.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 16:56:20.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 16:56:20.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 16:56:20.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 16:56:20.214 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 16:56:20.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 16:56:20.215 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 16:56:20.257 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 16:56:20.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 16:56:20.258 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 16:56:22.051 +05:30 [Debug] Connection id ""0HLA60JEBDOOU"" started. +2017-12-18 16:56:22.051 +05:30 [Debug] Connection id ""0HLA60JEBDOOV"" started. +2017-12-18 16:56:23.370 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 16:56:23.370 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 16:56:23.371 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 16:56:24.370 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 16:56:24.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 16:56:24.374 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 16:56:26.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:56:26.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:56:26.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:56:26.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:56:27.121 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:56:27.122 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:56:27.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:56:27.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:56:27.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6911.5844ms +2017-12-18 16:56:27.127 +05:30 [Information] Request finished in 7077.1679ms 200 application/json; charset=utf-8 +2017-12-18 16:56:27.127 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" completed keep alive response. +2017-12-18 16:56:27.356 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:56:27.357 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:56:27.357 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:56:27.359 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:56:27.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7182.7333ms +2017-12-18 16:56:27.361 +05:30 [Information] Request finished in 7346.0972ms 200 application/json; charset=utf-8 +2017-12-18 16:56:27.362 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" completed keep alive response. +2017-12-18 16:56:27.561 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:56:27.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:56:27.751 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:56:27.752 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:56:27.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:56:27.753 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:56:27.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7494.9664ms +2017-12-18 16:56:27.756 +05:30 [Information] Request finished in 7636.5227ms 200 application/json; charset=utf-8 +2017-12-18 16:56:27.756 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" completed keep alive response. +2017-12-18 16:56:28.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:56:28.764 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:56:28.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:56:28.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:56:28.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5394.7475ms +2017-12-18 16:56:28.769 +05:30 [Information] Request finished in 5399.5576ms 200 application/json; charset=utf-8 +2017-12-18 16:56:28.769 +05:30 [Debug] Connection id ""0HLA60JEBDOOU"" completed keep alive response. +2017-12-18 16:56:28.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:56:28.842 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:56:28.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:56:28.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:56:28.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4471.6866ms +2017-12-18 16:56:28.849 +05:30 [Information] Request finished in 4478.6283ms 200 application/json; charset=utf-8 +2017-12-18 16:56:28.850 +05:30 [Debug] Connection id ""0HLA60JEBDOOV"" completed keep alive response. +2017-12-18 16:56:33.915 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:56:33.916 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:56:34.512 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:56:34.516 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:56:48.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:56:48.053 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:56:48.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:56:48.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:56:48.065 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27840.818ms +2017-12-18 16:56:48.073 +05:30 [Information] Request finished in 28004.8912ms 200 application/json; charset=utf-8 +2017-12-18 16:56:48.074 +05:30 [Debug] Connection id ""0HLA60JEBDOOT"" completed keep alive response. +2017-12-18 16:57:07.437 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:57:07.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:57:07.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:57:10.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:57:11.048 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:11.048 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:11.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:11.064 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3617.0878ms +2017-12-18 16:57:11.072 +05:30 [Information] Request finished in 3633.9989ms 200 application/json; charset=utf-8 +2017-12-18 16:57:11.073 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" completed keep alive response. +2017-12-18 16:57:11.121 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 16:57:11.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 16:57:11.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 16:57:14.149 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 16:57:15.827 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:15.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:15.828 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:15.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4706.6777ms +2017-12-18 16:57:15.831 +05:30 [Information] Request finished in 4711.8855ms 200 application/json; charset=utf-8 +2017-12-18 16:57:15.832 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" completed keep alive response. +2017-12-18 16:57:19.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 16:57:19.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 16:57:19.419 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 16:57:19.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 16:57:19.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 16:57:19.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 16:57:19.440 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 16:57:19.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 16:57:19.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 16:57:19.441 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 16:57:19.446 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 16:57:19.446 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 16:57:22.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 16:57:22.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 16:57:22.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 16:57:23.602 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 16:57:23.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 16:57:23.603 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 16:57:26.686 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:26.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:26.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:26.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:26.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:26.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:27.304 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:27.304 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:27.304 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:27.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:27.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7887.6698ms +2017-12-18 16:57:27.336 +05:30 [Information] Request finished in 7905.2352ms 200 application/json; charset=utf-8 +2017-12-18 16:57:27.337 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" completed keep alive response. +2017-12-18 16:57:27.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:27.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:27.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:27.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:27.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5272.6859ms +2017-12-18 16:57:27.879 +05:30 [Information] Request finished in 5279.1231ms 200 application/json; charset=utf-8 +2017-12-18 16:57:27.879 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" completed keep alive response. +2017-12-18 16:57:27.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:27.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:27.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:27.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:27.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8472.9437ms +2017-12-18 16:57:27.923 +05:30 [Information] Request finished in 8509.7092ms 200 application/json; charset=utf-8 +2017-12-18 16:57:27.924 +05:30 [Debug] Connection id ""0HLA60JEBDOOU"" completed keep alive response. +2017-12-18 16:57:29.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:29.084 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:29.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:29.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:29.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 9644.2372ms +2017-12-18 16:57:29.090 +05:30 [Information] Request finished in 9672.9943ms 200 application/json; charset=utf-8 +2017-12-18 16:57:29.090 +05:30 [Debug] Connection id ""0HLA60JEBDOOT"" completed keep alive response. +2017-12-18 16:57:29.695 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:29.695 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:29.695 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:29.696 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:29.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6093.9104ms +2017-12-18 16:57:29.701 +05:30 [Information] Request finished in 6098.9269ms 200 application/json; charset=utf-8 +2017-12-18 16:57:29.701 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" completed keep alive response. +2017-12-18 16:57:33.920 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 16:57:33.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 16:57:33.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 16:57:34.236 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:57:34.242 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:57:34.858 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:57:34.859 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:57:36.966 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 16:57:37.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:37.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:37.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:37.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3592.9993ms +2017-12-18 16:57:37.522 +05:30 [Information] Request finished in 3600.957ms 200 application/json; charset=utf-8 +2017-12-18 16:57:37.522 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" completed keep alive response. +2017-12-18 16:57:37.534 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 16:57:37.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 16:57:37.534 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 16:57:40.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 16:57:42.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:42.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:42.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:42.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4722.1852ms +2017-12-18 16:57:42.262 +05:30 [Information] Request finished in 4732.5411ms 200 application/json; charset=utf-8 +2017-12-18 16:57:42.262 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" completed keep alive response. +2017-12-18 16:57:46.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 16:57:46.650 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 16:57:46.652 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 16:57:46.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 16:57:46.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 16:57:46.678 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 16:57:46.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 16:57:46.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 16:57:46.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 16:57:47.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 16:57:47.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 16:57:47.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 16:57:48.395 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 16:57:48.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 16:57:48.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 16:57:48.470 +05:30 [Debug] Connection id ""0HLA60JEBDOP0"" started. +2017-12-18 16:57:48.602 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 16:57:48.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 16:57:48.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 16:57:49.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:49.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:49.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:49.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:49.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 29647.6185ms +2017-12-18 16:57:49.076 +05:30 [Debug] Connection id ""0HLA60JEBDOOV"" received FIN. +2017-12-18 16:57:49.076 +05:30 [Information] Request finished in 29662.1836ms 200 application/json; charset=utf-8 +2017-12-18 16:57:49.084 +05:30 [Debug] Connection id ""0HLA60JEBDOOV"" disconnecting. +2017-12-18 16:57:49.079 +05:30 [Debug] Connection id ""0HLA60JEBDOOV"" completed keep alive response. +2017-12-18 16:57:49.087 +05:30 [Information] Connection id ""0HLA60JEBDOOV"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-18 16:57:49.090 +05:30 [Debug] Connection id ""0HLA60JEBDOOV"" stopped. +2017-12-18 16:57:49.898 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:49.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:50.118 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:50.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:50.578 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:50.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:50.582 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:50.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3930.4253ms +2017-12-18 16:57:50.663 +05:30 [Information] Request finished in 4129.5037ms 200 application/json; charset=utf-8 +2017-12-18 16:57:50.663 +05:30 [Debug] Connection id ""0HLA60JEBDOOU"" completed keep alive response. +2017-12-18 16:57:50.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:50.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:50.886 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:50.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:50.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:50.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4209.2866ms +2017-12-18 16:57:50.894 +05:30 [Information] Request finished in 4284.553ms 200 application/json; charset=utf-8 +2017-12-18 16:57:50.895 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" completed keep alive response. +2017-12-18 16:57:51.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:51.012 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:51.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:51.013 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:51.014 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4214.8723ms +2017-12-18 16:57:51.016 +05:30 [Information] Request finished in 4476.3371ms 200 application/json; charset=utf-8 +2017-12-18 16:57:51.017 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" completed keep alive response. +2017-12-18 16:57:51.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:51.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 16:57:52.946 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:52.946 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:52.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:52.948 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:52.949 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4550.695ms +2017-12-18 16:57:52.951 +05:30 [Information] Request finished in 4728.6905ms 200 application/json; charset=utf-8 +2017-12-18 16:57:52.952 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" completed keep alive response. +2017-12-18 16:57:53.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:57:53.082 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:57:53.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:57:53.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:57:53.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4475.725ms +2017-12-18 16:57:53.086 +05:30 [Information] Request finished in 4545.7736ms 200 application/json; charset=utf-8 +2017-12-18 16:57:53.086 +05:30 [Debug] Connection id ""0HLA60JEBDOP0"" completed keep alive response. +2017-12-18 16:57:58.430 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:57:58.433 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:57:59.019 +05:30 [Fatal] Sequence contains no elements +2017-12-18 16:57:59.020 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 16:58:12.620 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 16:58:12.621 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 16:58:12.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 16:58:12.622 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 16:58:12.625 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25312.3323ms +2017-12-18 16:58:12.634 +05:30 [Information] Request finished in 26090.6479ms 200 application/json; charset=utf-8 +2017-12-18 16:58:12.634 +05:30 [Debug] Connection id ""0HLA60JEBDOOT"" completed keep alive response. +2017-12-18 17:00:34.574 +05:30 [Debug] Connection id ""0HLA60JEBDOOU"" received FIN. +2017-12-18 17:00:34.575 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" received FIN. +2017-12-18 17:00:34.575 +05:30 [Debug] Connection id ""0HLA60JEBDOOU"" disconnecting. +2017-12-18 17:00:34.575 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" received FIN. +2017-12-18 17:00:34.576 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" disconnecting. +2017-12-18 17:00:34.574 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" received FIN. +2017-12-18 17:00:34.576 +05:30 [Debug] Connection id ""0HLA60JEBDOOU"" sending FIN. +2017-12-18 17:00:34.577 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" sending FIN. +2017-12-18 17:00:34.578 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" sent FIN with status "0". +2017-12-18 17:00:34.579 +05:30 [Debug] Connection id ""0HLA60JEBDOOS"" stopped. +2017-12-18 17:00:34.578 +05:30 [Debug] Connection id ""0HLA60JEBDOP0"" received FIN. +2017-12-18 17:00:34.579 +05:30 [Debug] Connection id ""0HLA60JEBDOOU"" sent FIN with status "0". +2017-12-18 17:00:34.580 +05:30 [Debug] Connection id ""0HLA60JEBDOOU"" stopped. +2017-12-18 17:00:34.580 +05:30 [Debug] Connection id ""0HLA60JEBDOOT"" received FIN. +2017-12-18 17:00:34.581 +05:30 [Debug] Connection id ""0HLA60JEBDOP0"" disconnecting. +2017-12-18 17:00:34.582 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" disconnecting. +2017-12-18 17:00:34.576 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" disconnecting. +2017-12-18 17:00:34.586 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" sending FIN. +2017-12-18 17:00:34.587 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" sent FIN with status "0". +2017-12-18 17:00:34.588 +05:30 [Debug] Connection id ""0HLA60JEBDOOR"" stopped. +2017-12-18 17:00:34.585 +05:30 [Debug] Connection id ""0HLA60JEBDOOT"" disconnecting. +2017-12-18 17:00:34.585 +05:30 [Debug] Connection id ""0HLA60JEBDOP0"" sending FIN. +2017-12-18 17:00:34.589 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" sending FIN. +2017-12-18 17:00:34.589 +05:30 [Debug] Connection id ""0HLA60JEBDOOT"" sending FIN. +2017-12-18 17:00:34.590 +05:30 [Debug] Connection id ""0HLA60JEBDOOT"" sent FIN with status "0". +2017-12-18 17:00:34.590 +05:30 [Debug] Connection id ""0HLA60JEBDOOT"" stopped. +2017-12-18 17:00:34.591 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" sent FIN with status "0". +2017-12-18 17:00:34.591 +05:30 [Debug] Connection id ""0HLA60JEBDOOQ"" stopped. +2017-12-18 17:00:34.592 +05:30 [Debug] Connection id ""0HLA60JEBDOP0"" sent FIN with status "0". +2017-12-18 17:00:34.593 +05:30 [Debug] Connection id ""0HLA60JEBDOP0"" stopped. +2017-12-18 17:01:40.221 +05:30 [Debug] Connection id ""0HLA60JEBDOP1"" started. +2017-12-18 17:01:40.229 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 17:01:40.230 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 17:01:40.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 17:01:43.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:01:45.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:01:45.810 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:01:45.811 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:01:45.811 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:01:45.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5581.2062ms +2017-12-18 17:01:45.819 +05:30 [Information] Request finished in 5593.6844ms 200 application/json; charset=utf-8 +2017-12-18 17:01:45.819 +05:30 [Debug] Connection id ""0HLA60JEBDOP1"" completed keep alive response. +2017-12-18 17:04:14.574 +05:30 [Debug] Connection id ""0HLA60JEBDOP1"" received FIN. +2017-12-18 17:04:14.574 +05:30 [Debug] Connection id ""0HLA60JEBDOP1"" disconnecting. +2017-12-18 17:04:14.574 +05:30 [Debug] Connection id ""0HLA60JEBDOP1"" sending FIN. +2017-12-18 17:04:14.575 +05:30 [Debug] Connection id ""0HLA60JEBDOP1"" sent FIN with status "0". +2017-12-18 17:04:14.575 +05:30 [Debug] Connection id ""0HLA60JEBDOP1"" stopped. +2017-12-18 17:14:55.898 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" started. +2017-12-18 17:14:55.899 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:14:55.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:14:55.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:14:58.945 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:15:00.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:00.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:00.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:00.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5094.0482ms +2017-12-18 17:15:01.001 +05:30 [Information] Request finished in 5100.4739ms 200 application/json; charset=utf-8 +2017-12-18 17:15:01.001 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" completed keep alive response. +2017-12-18 17:15:01.009 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 17:15:01.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:15:01.010 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:15:04.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 17:15:05.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:05.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:05.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:05.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4668.6909ms +2017-12-18 17:15:05.688 +05:30 [Information] Request finished in 4678.4578ms 200 application/json; charset=utf-8 +2017-12-18 17:15:05.689 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" completed keep alive response. +2017-12-18 17:15:10.160 +05:30 [Debug] Connection id ""0HLA60JEBDOP3"" started. +2017-12-18 17:15:10.164 +05:30 [Debug] Connection id ""0HLA60JEBDOP4"" started. +2017-12-18 17:15:10.167 +05:30 [Debug] Connection id ""0HLA60JEBDOP5"" started. +2017-12-18 17:15:10.249 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:15:10.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:15:10.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:15:10.270 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:15:10.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:15:10.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:15:10.310 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:15:10.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:15:10.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:15:10.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:15:10.348 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:15:10.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:15:10.756 +05:30 [Debug] Connection id ""0HLA60JEBDOP6"" started. +2017-12-18 17:15:10.762 +05:30 [Debug] Connection id ""0HLA60JEBDOP7"" started. +2017-12-18 17:15:10.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:15:10.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:15:10.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:15:10.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:15:10.792 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:15:10.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:15:13.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:15:13.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:15:13.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:15:13.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:15:13.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:15:15.744 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:15.745 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:15.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:15.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:15.750 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5478.4584ms +2017-12-18 17:15:15.755 +05:30 [Information] Request finished in 5581.5669ms 200 application/json; charset=utf-8 +2017-12-18 17:15:15.755 +05:30 [Debug] Connection id ""0HLA60JEBDOP4"" completed keep alive response. +2017-12-18 17:15:16.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:16.345 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:16.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:16.347 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:16.347 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6034.2435ms +2017-12-18 17:15:16.350 +05:30 [Information] Request finished in 6110.3801ms 200 application/json; charset=utf-8 +2017-12-18 17:15:16.351 +05:30 [Debug] Connection id ""0HLA60JEBDOP5"" completed keep alive response. +2017-12-18 17:15:16.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:16.757 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:16.757 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:16.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:16.760 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5966.7432ms +2017-12-18 17:15:16.763 +05:30 [Information] Request finished in 6000.3766ms 200 application/json; charset=utf-8 +2017-12-18 17:15:16.764 +05:30 [Debug] Connection id ""0HLA60JEBDOP6"" completed keep alive response. +2017-12-18 17:15:16.776 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:16.776 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:16.777 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:16.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:16.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5999.1689ms +2017-12-18 17:15:16.787 +05:30 [Information] Request finished in 6021.1317ms 200 application/json; charset=utf-8 +2017-12-18 17:15:16.787 +05:30 [Debug] Connection id ""0HLA60JEBDOP7"" completed keep alive response. +2017-12-18 17:15:17.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:15:18.273 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:18.273 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:18.274 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:18.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:18.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8010.4669ms +2017-12-18 17:15:18.281 +05:30 [Information] Request finished in 8115.9773ms 200 application/json; charset=utf-8 +2017-12-18 17:15:18.281 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" completed keep alive response. +2017-12-18 17:15:20.926 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:15:20.927 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:15:21.572 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:15:21.573 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:15:25.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 17:15:25.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 17:15:25.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 17:15:28.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:15:29.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:29.424 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:29.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:29.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:29.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3647.1386ms +2017-12-18 17:15:29.435 +05:30 [Information] Request finished in 3655.7623ms 200 application/json; charset=utf-8 +2017-12-18 17:15:29.436 +05:30 [Debug] Connection id ""0HLA60JEBDOP4"" completed keep alive response. +2017-12-18 17:15:31.987 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 17:15:32.007 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 17:15:32.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 17:15:32.008 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 17:15:32.008 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 17:15:32.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 17:15:32.025 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=14&userId=48&skip=0&count=30 +2017-12-18 17:15:32.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 17:15:32.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 17:15:35.365 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 17:15:35.368 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 17:15:35.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["14", "0", "30"]) - ModelState is Valid +2017-12-18 17:15:35.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:35.478 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:35.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:35.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:35.480 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25130.7446ms +2017-12-18 17:15:35.491 +05:30 [Information] Request finished in 25246.0278ms 200 application/json; charset=utf-8 +2017-12-18 17:15:35.492 +05:30 [Debug] Connection id ""0HLA60JEBDOP3"" completed keep alive response. +2017-12-18 17:15:38.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:38.314 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:38.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:38.316 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:38.321 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 6309.3609ms +2017-12-18 17:15:38.324 +05:30 [Information] Request finished in 6358.1702ms 200 application/json; charset=utf-8 +2017-12-18 17:15:38.325 +05:30 [Debug] Connection id ""0HLA60JEBDOP6"" completed keep alive response. +2017-12-18 17:15:38.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:38.462 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:38.462 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:38.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:38.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 6437.7783ms +2017-12-18 17:15:38.474 +05:30 [Information] Request finished in 6506.2657ms 200 application/json; charset=utf-8 +2017-12-18 17:15:38.474 +05:30 [Debug] Connection id ""0HLA60JEBDOP5"" completed keep alive response. +2017-12-18 17:15:41.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:15:41.928 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:15:41.928 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:15:41.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:15:41.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 9920.3197ms +2017-12-18 17:15:41.934 +05:30 [Information] Request finished in 9946.9286ms 200 application/json; charset=utf-8 +2017-12-18 17:15:41.934 +05:30 [Debug] Connection id ""0HLA60JEBDOP7"" completed keep alive response. +2017-12-18 17:16:09.069 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=page_1452799044811364&userId=48&message=none&scheduledatetime=Mon,%2018%20Dec%202017%2012:00:00%20GMT&localscheduletime=12/18/2017%2017:30&imagePath= multipart/form-data; boundary=----WebKitFormBoundary6TEzrKDSjJB5ePVu 186 +2017-12-18 17:16:09.070 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-18 17:16:09.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-18 17:16:12.193 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "page_1452799044811364", "48", "", "", "Mon, 18 Dec 2017 12:00:00 GMT", "12/18/2017 17:30", "", "
https://www.instagram.com/p/Bc10V-RHx2p/", "NoMedia"]) - ModelState is Valid +2017-12-18 17:16:28.976 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Mon, 18 Dec 2017 12:00:00 GMT +2017-12-18 17:16:30.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:16:30.764 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:16:30.765 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 17:16:30.766 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:16:30.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" in 21694.2669ms +2017-12-18 17:16:30.773 +05:30 [Information] Request finished in 21708.3957ms 200 text/plain; charset=utf-8 +2017-12-18 17:16:30.774 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" completed keep alive response. +2017-12-18 17:17:04.574 +05:30 [Debug] Connection id ""0HLA60JEBDOP4"" received FIN. +2017-12-18 17:17:04.574 +05:30 [Debug] Connection id ""0HLA60JEBDOP3"" received FIN. +2017-12-18 17:17:04.575 +05:30 [Debug] Connection id ""0HLA60JEBDOP5"" received FIN. +2017-12-18 17:17:04.574 +05:30 [Debug] Connection id ""0HLA60JEBDOP4"" disconnecting. +2017-12-18 17:17:04.575 +05:30 [Debug] Connection id ""0HLA60JEBDOP7"" received FIN. +2017-12-18 17:17:04.574 +05:30 [Debug] Connection id ""0HLA60JEBDOP6"" received FIN. +2017-12-18 17:17:04.576 +05:30 [Debug] Connection id ""0HLA60JEBDOP4"" sending FIN. +2017-12-18 17:17:04.576 +05:30 [Debug] Connection id ""0HLA60JEBDOP5"" disconnecting. +2017-12-18 17:17:04.577 +05:30 [Debug] Connection id ""0HLA60JEBDOP4"" sent FIN with status "0". +2017-12-18 17:17:04.577 +05:30 [Debug] Connection id ""0HLA60JEBDOP5"" sending FIN. +2017-12-18 17:17:04.577 +05:30 [Debug] Connection id ""0HLA60JEBDOP7"" disconnecting. +2017-12-18 17:17:04.578 +05:30 [Debug] Connection id ""0HLA60JEBDOP5"" sent FIN with status "0". +2017-12-18 17:17:04.578 +05:30 [Debug] Connection id ""0HLA60JEBDOP6"" disconnecting. +2017-12-18 17:17:04.581 +05:30 [Debug] Connection id ""0HLA60JEBDOP5"" stopped. +2017-12-18 17:17:04.577 +05:30 [Debug] Connection id ""0HLA60JEBDOP4"" stopped. +2017-12-18 17:17:04.582 +05:30 [Debug] Connection id ""0HLA60JEBDOP7"" sending FIN. +2017-12-18 17:17:04.582 +05:30 [Debug] Connection id ""0HLA60JEBDOP6"" sending FIN. +2017-12-18 17:17:04.583 +05:30 [Debug] Connection id ""0HLA60JEBDOP7"" sent FIN with status "0". +2017-12-18 17:17:04.583 +05:30 [Debug] Connection id ""0HLA60JEBDOP6"" sent FIN with status "0". +2017-12-18 17:17:04.583 +05:30 [Debug] Connection id ""0HLA60JEBDOP7"" stopped. +2017-12-18 17:17:04.576 +05:30 [Debug] Connection id ""0HLA60JEBDOP3"" disconnecting. +2017-12-18 17:17:04.584 +05:30 [Debug] Connection id ""0HLA60JEBDOP3"" sending FIN. +2017-12-18 17:17:04.584 +05:30 [Debug] Connection id ""0HLA60JEBDOP3"" sent FIN with status "0". +2017-12-18 17:17:04.585 +05:30 [Debug] Connection id ""0HLA60JEBDOP3"" stopped. +2017-12-18 17:17:04.583 +05:30 [Debug] Connection id ""0HLA60JEBDOP6"" stopped. +2017-12-18 17:18:54.417 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" received FIN. +2017-12-18 17:18:54.418 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" disconnecting. +2017-12-18 17:18:54.418 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" sending FIN. +2017-12-18 17:18:54.418 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" sent FIN with status "0". +2017-12-18 17:18:54.418 +05:30 [Debug] Connection id ""0HLA60JEBDOP2"" stopped. +2017-12-18 17:20:27.619 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" started. +2017-12-18 17:20:27.647 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:20:27.648 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:20:27.648 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:20:30.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:20:31.337 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:20:31.337 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:20:31.338 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:20:31.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3690.7084ms +2017-12-18 17:20:31.341 +05:30 [Information] Request finished in 3719.1218ms 200 application/json; charset=utf-8 +2017-12-18 17:20:31.341 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" completed keep alive response. +2017-12-18 17:20:31.346 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 17:20:31.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:20:31.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:20:34.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 17:20:36.215 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:20:36.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:20:36.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:20:36.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4869.9902ms +2017-12-18 17:20:36.221 +05:30 [Information] Request finished in 4874.9666ms 200 application/json; charset=utf-8 +2017-12-18 17:20:36.221 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" completed keep alive response. +2017-12-18 17:20:40.129 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" started. +2017-12-18 17:20:40.129 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" started. +2017-12-18 17:20:40.129 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" started. +2017-12-18 17:20:40.135 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:20:40.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:20:40.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:20:40.185 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:20:40.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:20:40.187 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:20:40.239 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:20:40.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:20:40.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:20:40.339 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:20:40.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:20:40.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:20:41.136 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" started. +2017-12-18 17:20:41.159 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" started. +2017-12-18 17:20:41.251 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:20:41.254 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:20:41.255 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:20:43.896 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:20:43.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:20:43.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:20:47.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:20:47.118 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:20:47.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:20:47.198 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:20:47.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:20:47.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:20:47.852 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:20:47.853 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:20:47.853 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:20:47.891 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:20:47.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7755.4873ms +2017-12-18 17:20:47.949 +05:30 [Information] Request finished in 7830.2589ms 200 application/json; charset=utf-8 +2017-12-18 17:20:47.950 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" completed keep alive response. +2017-12-18 17:20:48.310 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:20:48.311 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:20:48.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:20:48.313 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:20:48.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8127.0996ms +2017-12-18 17:20:48.317 +05:30 [Information] Request finished in 8182.5439ms 200 application/json; charset=utf-8 +2017-12-18 17:20:48.318 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" completed keep alive response. +2017-12-18 17:20:48.350 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:20:48.350 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:20:48.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:20:48.351 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:20:48.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4454.2592ms +2017-12-18 17:20:48.357 +05:30 [Information] Request finished in 4460.4408ms 200 application/json; charset=utf-8 +2017-12-18 17:20:48.358 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" completed keep alive response. +2017-12-18 17:20:49.647 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:20:49.647 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:20:49.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:20:49.650 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:20:49.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 9411.1006ms +2017-12-18 17:20:49.656 +05:30 [Information] Request finished in 9525.5883ms 200 application/json; charset=utf-8 +2017-12-18 17:20:49.656 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" completed keep alive response. +2017-12-18 17:20:50.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:20:50.241 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:20:50.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:20:50.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:20:50.245 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 8988.3437ms +2017-12-18 17:20:50.256 +05:30 [Information] Request finished in 9015.4866ms 200 application/json; charset=utf-8 +2017-12-18 17:20:50.256 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" completed keep alive response. +2017-12-18 17:20:56.443 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:20:56.444 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:20:57.074 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:20:57.076 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:21:10.997 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:21:10.998 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:21:10.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:21:10.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:21:11.001 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 30659.4592ms +2017-12-18 17:21:11.006 +05:30 [Information] Request finished in 30873.8143ms 200 application/json; charset=utf-8 +2017-12-18 17:21:11.006 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" completed keep alive response. +2017-12-18 17:21:31.244 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:21:31.246 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:21:31.246 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:21:34.293 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:21:34.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:21:34.897 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:21:34.898 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:21:34.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3652.1838ms +2017-12-18 17:21:34.903 +05:30 [Information] Request finished in 3658.0373ms 200 application/json; charset=utf-8 +2017-12-18 17:21:34.904 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" completed keep alive response. +2017-12-18 17:21:34.912 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 17:21:34.913 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:21:34.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:21:37.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 17:21:39.654 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:21:39.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:21:39.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:21:39.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4742.3643ms +2017-12-18 17:21:39.660 +05:30 [Information] Request finished in 4748.623ms 200 application/json; charset=utf-8 +2017-12-18 17:21:39.660 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" completed keep alive response. +2017-12-18 17:21:44.086 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:21:44.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:21:44.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:21:44.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:21:44.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:21:44.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:21:44.247 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:21:44.248 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:21:44.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:21:44.302 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:21:44.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:21:44.306 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:21:46.938 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:21:46.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:21:46.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:21:47.966 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:21:47.966 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:21:47.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:21:51.096 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:21:51.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:21:51.180 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:21:51.185 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:21:51.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:21:51.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:21:51.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:21:51.790 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:21:51.791 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:21:51.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:21:51.793 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7484.9097ms +2017-12-18 17:21:51.795 +05:30 [Information] Request finished in 7711.7863ms 200 application/json; charset=utf-8 +2017-12-18 17:21:51.796 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" completed keep alive response. +2017-12-18 17:21:51.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:21:51.894 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:21:51.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:21:51.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:21:51.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7737.3829ms +2017-12-18 17:21:51.902 +05:30 [Information] Request finished in 7830.913ms 200 application/json; charset=utf-8 +2017-12-18 17:21:51.902 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" completed keep alive response. +2017-12-18 17:21:52.342 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:21:52.342 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:21:52.342 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:21:52.343 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:21:52.345 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4376.0037ms +2017-12-18 17:21:52.347 +05:30 [Information] Request finished in 4381.7524ms 200 application/json; charset=utf-8 +2017-12-18 17:21:52.354 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" completed keep alive response. +2017-12-18 17:21:52.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:21:52.357 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:21:52.357 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:21:52.359 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:21:52.363 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8267.2771ms +2017-12-18 17:21:52.366 +05:30 [Information] Request finished in 8278.6967ms 200 application/json; charset=utf-8 +2017-12-18 17:21:52.366 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" completed keep alive response. +2017-12-18 17:21:52.399 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:21:52.400 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:21:52.400 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:21:52.400 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:21:52.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5460.879ms +2017-12-18 17:21:52.405 +05:30 [Information] Request finished in 5465.6188ms 200 application/json; charset=utf-8 +2017-12-18 17:21:52.405 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" completed keep alive response. +2017-12-18 17:21:58.721 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:21:58.722 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:21:59.650 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:21:59.651 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:22:13.587 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:22:13.587 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:22:13.587 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:22:13.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:22:13.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 29341.6709ms +2017-12-18 17:22:13.606 +05:30 [Information] Request finished in 29520.9425ms 200 application/json; charset=utf-8 +2017-12-18 17:22:13.606 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" completed keep alive response. +2017-12-18 17:22:14.059 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:22:14.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:22:14.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:22:17.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:22:17.723 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:22:17.723 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:22:17.724 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:22:17.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3664.2917ms +2017-12-18 17:22:17.729 +05:30 [Information] Request finished in 3669.883ms 200 application/json; charset=utf-8 +2017-12-18 17:22:17.730 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" completed keep alive response. +2017-12-18 17:22:17.736 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 17:22:17.737 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:22:17.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:22:20.776 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 17:22:22.474 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:22:22.474 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:22:22.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:22:22.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4738.8232ms +2017-12-18 17:22:22.480 +05:30 [Information] Request finished in 4745.4763ms 200 application/json; charset=utf-8 +2017-12-18 17:22:22.481 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" completed keep alive response. +2017-12-18 17:22:28.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:22:28.397 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:22:28.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:22:28.560 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:22:28.561 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:22:28.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:22:28.812 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:22:28.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:22:28.813 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:22:28.822 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:22:28.823 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:22:28.823 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:22:29.523 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:22:29.523 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:22:29.560 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:22:29.678 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:22:29.683 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:22:29.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:22:31.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:22:31.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:22:32.089 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:22:32.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:22:32.708 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:22:32.708 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:22:32.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:22:32.710 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:22:32.714 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4149.9764ms +2017-12-18 17:22:32.718 +05:30 [Information] Request finished in 4376.3772ms 200 application/json; charset=utf-8 +2017-12-18 17:22:32.718 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" completed keep alive response. +2017-12-18 17:22:32.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:22:32.918 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:22:32.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:22:32.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:22:32.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4107.7667ms +2017-12-18 17:22:32.938 +05:30 [Information] Request finished in 4517.8759ms 200 application/json; charset=utf-8 +2017-12-18 17:22:32.938 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" completed keep alive response. +2017-12-18 17:22:33.116 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:22:33.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:22:33.268 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:22:33.268 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:22:33.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:22:33.269 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:22:33.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4446.457ms +2017-12-18 17:22:33.274 +05:30 [Information] Request finished in 4932.6919ms 200 application/json; charset=utf-8 +2017-12-18 17:22:33.274 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" completed keep alive response. +2017-12-18 17:22:34.344 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:22:34.345 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:22:34.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:22:34.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:22:34.347 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4662.4082ms +2017-12-18 17:22:34.350 +05:30 [Information] Request finished in 4877.8761ms 200 application/json; charset=utf-8 +2017-12-18 17:22:34.350 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" completed keep alive response. +2017-12-18 17:22:34.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:22:34.704 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:22:34.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:22:34.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:22:34.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5027.2194ms +2017-12-18 17:22:34.711 +05:30 [Information] Request finished in 5212.9316ms 200 application/json; charset=utf-8 +2017-12-18 17:22:34.712 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" completed keep alive response. +2017-12-18 17:22:39.352 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:22:39.353 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:22:39.934 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:22:39.935 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:22:53.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:22:53.886 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:22:53.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:22:53.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:22:53.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25490.2805ms +2017-12-18 17:22:53.893 +05:30 [Information] Request finished in 25562.2689ms 200 application/json; charset=utf-8 +2017-12-18 17:22:53.893 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" completed keep alive response. +2017-12-18 17:23:17.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:23:17.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:23:17.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:23:20.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:23:21.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:23:21.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:23:21.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:23:21.255 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3572.0473ms +2017-12-18 17:23:21.257 +05:30 [Information] Request finished in 3575.673ms 200 application/json; charset=utf-8 +2017-12-18 17:23:21.257 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" completed keep alive response. +2017-12-18 17:23:21.265 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 17:23:21.266 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:23:21.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:23:24.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 17:23:26.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:23:26.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:23:26.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:23:26.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4844.7892ms +2017-12-18 17:23:26.118 +05:30 [Information] Request finished in 4851.6174ms 200 application/json; charset=utf-8 +2017-12-18 17:23:26.118 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" completed keep alive response. +2017-12-18 17:23:29.724 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:23:29.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:23:29.725 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:23:29.731 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:23:29.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:23:29.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:23:29.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:23:29.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:23:29.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:23:29.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:23:29.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:23:29.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:23:30.108 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:23:30.121 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:23:30.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:23:30.154 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:23:30.172 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:23:30.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:23:33.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:23:33.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:23:33.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:23:33.082 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:23:33.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:23:33.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:23:33.655 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:23:33.656 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:23:33.656 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:23:33.659 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:23:33.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3931.6849ms +2017-12-18 17:23:33.664 +05:30 [Information] Request finished in 4082.8065ms 200 application/json; charset=utf-8 +2017-12-18 17:23:33.665 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" completed keep alive response. +2017-12-18 17:23:33.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:23:33.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:23:33.802 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:23:33.803 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:23:33.809 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3964.5161ms +2017-12-18 17:23:33.810 +05:30 [Information] Request finished in 4092.6971ms 200 application/json; charset=utf-8 +2017-12-18 17:23:33.811 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" completed keep alive response. +2017-12-18 17:23:34.272 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:23:34.272 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:23:34.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:23:34.273 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:23:34.274 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4467.598ms +2017-12-18 17:23:34.276 +05:30 [Information] Request finished in 4657.299ms 200 application/json; charset=utf-8 +2017-12-18 17:23:34.277 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" completed keep alive response. +2017-12-18 17:23:34.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:23:34.562 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:23:34.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:23:34.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:23:34.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4441.5598ms +2017-12-18 17:23:34.565 +05:30 [Information] Request finished in 4531.3572ms 200 application/json; charset=utf-8 +2017-12-18 17:23:34.566 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" completed keep alive response. +2017-12-18 17:23:34.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:23:34.608 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:23:34.608 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:23:34.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:23:34.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4437.0642ms +2017-12-18 17:23:34.614 +05:30 [Information] Request finished in 4542.031ms 200 application/json; charset=utf-8 +2017-12-18 17:23:34.615 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" completed keep alive response. +2017-12-18 17:23:40.673 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:23:40.675 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:23:41.310 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:23:41.311 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:23:55.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:23:55.772 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:23:55.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:23:55.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:23:55.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26036.2473ms +2017-12-18 17:23:55.782 +05:30 [Information] Request finished in 26162.1832ms 200 application/json; charset=utf-8 +2017-12-18 17:23:55.782 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" completed keep alive response. +2017-12-18 17:24:53.447 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" received FIN. +2017-12-18 17:24:53.447 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" disconnecting. +2017-12-18 17:24:53.447 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" received FIN. +2017-12-18 17:24:53.447 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" received FIN. +2017-12-18 17:24:53.448 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" received FIN. +2017-12-18 17:24:53.450 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" disconnecting. +2017-12-18 17:24:53.448 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" received FIN. +2017-12-18 17:24:53.450 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" disconnecting. +2017-12-18 17:24:53.450 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" sending FIN. +2017-12-18 17:24:53.450 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" disconnecting. +2017-12-18 17:24:53.450 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" sending FIN. +2017-12-18 17:24:53.451 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" sending FIN. +2017-12-18 17:24:53.454 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" sent FIN with status "0". +2017-12-18 17:24:53.454 +05:30 [Debug] Connection id ""0HLA60JEBDOP8"" stopped. +2017-12-18 17:24:53.455 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" sent FIN with status "0". +2017-12-18 17:24:53.455 +05:30 [Debug] Connection id ""0HLA60JEBDOPB"" stopped. +2017-12-18 17:24:53.450 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" sending FIN. +2017-12-18 17:24:53.450 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" disconnecting. +2017-12-18 17:24:53.457 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" sent FIN with status "0". +2017-12-18 17:24:53.457 +05:30 [Debug] Connection id ""0HLA60JEBDOPD"" stopped. +2017-12-18 17:24:53.456 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 17:24:53.458 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" sent FIN with status "0". +2017-12-18 17:24:53.458 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 17:24:53.458 +05:30 [Debug] Connection id ""0HLA60JEBDOP9"" stopped. +2017-12-18 17:24:53.459 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" sending FIN. +2017-12-18 17:24:53.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 17:24:53.459 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" sent FIN with status "0". +2017-12-18 17:24:53.459 +05:30 [Debug] Connection id ""0HLA60JEBDOPA"" stopped. +2017-12-18 17:24:56.523 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:24:57.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:24:57.138 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:24:57.138 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:24:57.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:24:57.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3681.125ms +2017-12-18 17:24:57.146 +05:30 [Information] Request finished in 3693.7699ms 200 application/json; charset=utf-8 +2017-12-18 17:24:57.146 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" completed keep alive response. +2017-12-18 17:25:18.135 +05:30 [Debug] Connection id ""0HLA60JEBDOPE"" started. +2017-12-18 17:25:18.136 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 17:25:18.137 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 17:25:18.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 17:25:18.138 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 17:25:18.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 17:25:18.141 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 17:25:18.135 +05:30 [Debug] Connection id ""0HLA60JEBDOPF"" started. +2017-12-18 17:25:18.147 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 17:25:18.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 17:25:18.148 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 17:25:21.283 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 17:25:21.286 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 17:25:21.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 17:25:22.215 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:25:22.215 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:25:22.215 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:25:22.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:25:22.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 4078.7811ms +2017-12-18 17:25:22.227 +05:30 [Information] Request finished in 4092.0241ms 200 application/json; charset=utf-8 +2017-12-18 17:25:22.228 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" completed keep alive response. +2017-12-18 17:25:23.754 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:25:23.754 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:25:23.755 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:25:23.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:25:23.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 5620.9496ms +2017-12-18 17:25:23.931 +05:30 [Information] Request finished in 5687.922ms 200 application/json; charset=utf-8 +2017-12-18 17:25:23.931 +05:30 [Debug] Connection id ""0HLA60JEBDOPE"" completed keep alive response. +2017-12-18 17:25:26.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:25:26.219 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:25:26.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:25:26.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:25:26.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 8072.2953ms +2017-12-18 17:25:26.225 +05:30 [Information] Request finished in 8077.4173ms 200 application/json; charset=utf-8 +2017-12-18 17:25:26.225 +05:30 [Debug] Connection id ""0HLA60JEBDOPF"" completed keep alive response. +2017-12-18 17:27:01.398 +05:30 [Debug] Connection id ""0HLA60JEBDOPE"" received FIN. +2017-12-18 17:27:01.398 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" received FIN. +2017-12-18 17:27:01.399 +05:30 [Debug] Connection id ""0HLA60JEBDOPF"" received FIN. +2017-12-18 17:27:01.399 +05:30 [Debug] Connection id ""0HLA60JEBDOPE"" disconnecting. +2017-12-18 17:27:01.399 +05:30 [Debug] Connection id ""0HLA60JEBDOPG"" started. +2017-12-18 17:27:01.399 +05:30 [Debug] Connection id ""0HLA60JEBDOPF"" disconnecting. +2017-12-18 17:27:01.399 +05:30 [Debug] Connection id ""0HLA60JEBDOPE"" sending FIN. +2017-12-18 17:27:01.400 +05:30 [Debug] Connection id ""0HLA60JEBDOPF"" sending FIN. +2017-12-18 17:27:01.402 +05:30 [Debug] Connection id ""0HLA60JEBDOPF"" sent FIN with status "0". +2017-12-18 17:27:01.402 +05:30 [Debug] Connection id ""0HLA60JEBDOPF"" stopped. +2017-12-18 17:27:01.402 +05:30 [Debug] Connection id ""0HLA60JEBDOPE"" sent FIN with status "0". +2017-12-18 17:27:01.402 +05:30 [Debug] Connection id ""0HLA60JEBDOPE"" stopped. +2017-12-18 17:27:01.399 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" disconnecting. +2017-12-18 17:27:01.405 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" sending FIN. +2017-12-18 17:27:01.405 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" sent FIN with status "0". +2017-12-18 17:27:01.406 +05:30 [Debug] Connection id ""0HLA60JEBDOPC"" stopped. +2017-12-18 17:27:01.406 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=lkfb_127471161024815,lkpage_1452799044811364,lkfb_127471161024815&userId=48&message=none&scheduledatetime=Mon,%2018%20Dec%202017%2012:56:00%20GMT&localscheduletime=12/18/2017%2018:26&imagePath= multipart/form-data; boundary=----WebKitFormBoundary2qml22G9E5vA82aQ 186 +2017-12-18 17:27:01.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-18 17:27:01.407 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-18 17:27:04.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "lkfb_127471161024815,lkpage_1452799044811364,lkfb_127471161024815", "48", "", "", "Mon, 18 Dec 2017 12:56:00 GMT", "12/18/2017 18:26", "", "
https://www.instagram.com/p/Bc1fb7OhBJQ/", "NoMedia"]) - ModelState is Valid +2017-12-18 17:30:56.120 +05:30 [Debug] Hosting starting +2017-12-18 17:30:56.368 +05:30 [Debug] Hosting started +2017-12-18 17:30:56.497 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" started. +2017-12-18 17:30:56.497 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" started. +2017-12-18 17:30:56.892 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 17:30:56.905 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 17:30:57.011 +05:30 [Information] Request finished in 288.8434ms 200 +2017-12-18 17:30:57.073 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" completed keep alive response. +2017-12-18 17:30:58.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 17:30:58.248 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:30:58.249 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:30:58.293 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"6b1601df-1834-432f-bfbf-698d0bfb9a33"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 17:30:58.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 17:30:58.563 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:30:58.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 17:30:58.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 17:30:58.874 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:30:58.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:30:58.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:30:59.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 746.2199ms +2017-12-18 17:30:59.407 +05:30 [Information] Request finished in 2701.1837ms 200 application/json; charset=utf-8 +2017-12-18 17:30:59.409 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" completed keep alive response. +2017-12-18 17:30:59.464 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-18 17:30:59.469 +05:30 [Debug] Request did not match any routes. +2017-12-18 17:30:59.491 +05:30 [Debug] The request path "" does not match the path filter +2017-12-18 17:30:59.494 +05:30 [Information] Request finished in 30.3587ms 404 +2017-12-18 17:30:59.495 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" completed keep alive response. +2017-12-18 17:31:02.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:31:08.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:08.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:08.837 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:08.840 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10276.4376ms +2017-12-18 17:31:08.844 +05:30 [Information] Request finished in 10595.697ms 200 application/json; charset=utf-8 +2017-12-18 17:31:08.845 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" completed keep alive response. +2017-12-18 17:31:19.631 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:31:19.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:31:19.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:31:21.311 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:31:21.312 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:31:21.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:31:22.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:31:23.476 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:23.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:23.477 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:23.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3842.0729ms +2017-12-18 17:31:23.491 +05:30 [Information] Request finished in 3914.2361ms 200 application/json; charset=utf-8 +2017-12-18 17:31:23.492 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" completed keep alive response. +2017-12-18 17:31:23.550 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:31:23.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:31:23.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:31:24.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:31:25.191 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:25.191 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:25.195 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:25.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3881.8884ms +2017-12-18 17:31:25.209 +05:30 [Information] Request finished in 3916.851ms 200 application/json; charset=utf-8 +2017-12-18 17:31:25.209 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" completed keep alive response. +2017-12-18 17:31:26.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:31:27.231 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:27.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:27.236 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:27.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3685.3239ms +2017-12-18 17:31:27.247 +05:30 [Information] Request finished in 3697.3916ms 200 application/json; charset=utf-8 +2017-12-18 17:31:27.247 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" completed keep alive response. +2017-12-18 17:31:27.297 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:31:27.299 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:31:27.300 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:31:27.945 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:31:27.945 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:31:27.946 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:31:30.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:31:30.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:30.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:30.948 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:30.951 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3647.7644ms +2017-12-18 17:31:30.966 +05:30 [Information] Request finished in 3663.5676ms 200 application/json; charset=utf-8 +2017-12-18 17:31:30.966 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" completed keep alive response. +2017-12-18 17:31:31.022 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:31:31.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:31.612 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:31.613 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:31.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3667.5936ms +2017-12-18 17:31:31.619 +05:30 [Information] Request finished in 3673.2726ms 200 application/json; charset=utf-8 +2017-12-18 17:31:31.619 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" completed keep alive response. +2017-12-18 17:31:31.638 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 17:31:31.639 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 17:31:31.640 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 17:31:34.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 17:31:36.962 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:36.963 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:36.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:37.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5445.0608ms +2017-12-18 17:31:37.088 +05:30 [Information] Request finished in 5449.9527ms 200 application/json; charset=utf-8 +2017-12-18 17:31:37.088 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" completed keep alive response. +2017-12-18 17:31:37.388 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:31:37.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:31:37.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:31:40.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:31:41.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:41.024 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:41.025 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:41.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3636.4813ms +2017-12-18 17:31:41.027 +05:30 [Information] Request finished in 3639.4151ms 200 application/json; charset=utf-8 +2017-12-18 17:31:41.028 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" completed keep alive response. +2017-12-18 17:31:41.059 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 17:31:41.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:31:41.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:31:44.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 17:31:45.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:45.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:45.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:46.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4945.7051ms +2017-12-18 17:31:46.008 +05:30 [Information] Request finished in 4949.8023ms 200 application/json; charset=utf-8 +2017-12-18 17:31:46.008 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" completed keep alive response. +2017-12-18 17:31:47.536 +05:30 [Debug] Connection id ""0HLA61RVGAA2T"" started. +2017-12-18 17:31:47.536 +05:30 [Debug] Connection id ""0HLA61RVGAA2U"" started. +2017-12-18 17:31:47.540 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:31:47.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:31:47.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:31:47.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:31:47.551 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:31:47.551 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:31:47.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:31:47.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:31:47.567 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:31:47.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:31:47.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:31:47.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:31:47.663 +05:30 [Debug] Connection id ""0HLA61RVGAA2V"" started. +2017-12-18 17:31:47.664 +05:30 [Debug] Connection id ""0HLA61RVGAA30"" started. +2017-12-18 17:31:47.665 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:31:47.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:31:47.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:31:50.115 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:31:50.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:31:50.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:31:53.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:31:53.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:31:53.307 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:31:53.416 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:31:53.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:31:53.629 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:31:54.609 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:54.609 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:31:54.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:54.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:54.615 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7035.8048ms +2017-12-18 17:31:54.618 +05:30 [Information] Request finished in 7078.8921ms 200 application/json; charset=utf-8 +2017-12-18 17:31:54.618 +05:30 [Debug] Connection id ""0HLA61RVGAA2T"" completed keep alive response. +2017-12-18 17:31:54.629 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 17:31:54.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 17:31:54.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 17:31:55.542 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:55.542 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:31:55.542 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:55.543 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:55.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7979.1674ms +2017-12-18 17:31:55.553 +05:30 [Information] Request finished in 8015.6082ms 200 application/json; charset=utf-8 +2017-12-18 17:31:55.554 +05:30 [Debug] Connection id ""0HLA61RVGAA2U"" completed keep alive response. +2017-12-18 17:31:55.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 17:31:55.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 17:31:55.559 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 17:31:55.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:55.866 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:31:55.866 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:55.871 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:55.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8322.9479ms +2017-12-18 17:31:55.877 +05:30 [Information] Request finished in 8338.033ms 200 application/json; charset=utf-8 +2017-12-18 17:31:55.878 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" completed keep alive response. +2017-12-18 17:31:56.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:56.295 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:31:56.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:56.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:56.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6176.7611ms +2017-12-18 17:31:56.306 +05:30 [Information] Request finished in 6195.0185ms 200 application/json; charset=utf-8 +2017-12-18 17:31:56.306 +05:30 [Debug] Connection id ""0HLA61RVGAA30"" completed keep alive response. +2017-12-18 17:31:56.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:56.395 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:31:56.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:56.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:56.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 8729.938ms +2017-12-18 17:31:56.402 +05:30 [Information] Request finished in 8735.8465ms 200 application/json; charset=utf-8 +2017-12-18 17:31:56.402 +05:30 [Debug] Connection id ""0HLA61RVGAA2V"" completed keep alive response. +2017-12-18 17:31:57.728 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:31:58.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:31:59.212 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:31:59.213 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:31:59.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:31:59.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:31:59.253 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3670.9821ms +2017-12-18 17:31:59.269 +05:30 [Information] Request finished in 3709.0889ms 200 application/json; charset=utf-8 +2017-12-18 17:31:59.270 +05:30 [Debug] Connection id ""0HLA61RVGAA2U"" completed keep alive response. +2017-12-18 17:32:00.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:32:00.409 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:32:00.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:32:00.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:32:00.500 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5867.4091ms +2017-12-18 17:32:00.502 +05:30 [Information] Request finished in 5877.6708ms 200 application/json; charset=utf-8 +2017-12-18 17:32:00.503 +05:30 [Debug] Connection id ""0HLA61RVGAA2T"" completed keep alive response. +2017-12-18 17:32:02.848 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:32:02.911 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:32:03.543 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:32:03.544 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:32:17.417 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:32:17.418 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:32:17.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:32:17.420 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:32:17.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 29885.661ms +2017-12-18 17:32:17.445 +05:30 [Information] Request finished in 29910.2122ms 200 application/json; charset=utf-8 +2017-12-18 17:32:17.445 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" completed keep alive response. +2017-12-18 17:33:07.120 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" received FIN. +2017-12-18 17:33:07.120 +05:30 [Debug] Connection id ""0HLA61RVGAA2V"" received FIN. +2017-12-18 17:33:07.121 +05:30 [Debug] Connection id ""0HLA61RVGAA2U"" received FIN. +2017-12-18 17:33:07.121 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" disconnecting. +2017-12-18 17:33:07.121 +05:30 [Debug] Connection id ""0HLA61RVGAA30"" received FIN. +2017-12-18 17:33:07.122 +05:30 [Debug] Connection id ""0HLA61RVGAA2T"" received FIN. +2017-12-18 17:33:07.122 +05:30 [Debug] Connection id ""0HLA61RVGAA31"" started. +2017-12-18 17:33:07.122 +05:30 [Debug] Connection id ""0HLA61RVGAA2V"" disconnecting. +2017-12-18 17:33:07.123 +05:30 [Debug] Connection id ""0HLA61RVGAA2U"" disconnecting. +2017-12-18 17:33:07.122 +05:30 [Debug] Connection id ""0HLA61RVGAA32"" started. +2017-12-18 17:33:07.123 +05:30 [Debug] Connection id ""0HLA61RVGAA2V"" sending FIN. +2017-12-18 17:33:07.123 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" sending FIN. +2017-12-18 17:33:07.126 +05:30 [Debug] Connection id ""0HLA61RVGAA30"" disconnecting. +2017-12-18 17:33:07.126 +05:30 [Debug] Connection id ""0HLA61RVGAA2U"" sending FIN. +2017-12-18 17:33:07.129 +05:30 [Debug] Connection id ""0HLA61RVGAA2T"" disconnecting. +2017-12-18 17:33:07.134 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" sent FIN with status "0". +2017-12-18 17:33:07.135 +05:30 [Debug] Connection id ""0HLA61RVGAA2U"" sent FIN with status "0". +2017-12-18 17:33:07.143 +05:30 [Debug] Connection id ""0HLA61RVGAA2R"" stopped. +2017-12-18 17:33:07.144 +05:30 [Debug] Connection id ""0HLA61RVGAA30"" sending FIN. +2017-12-18 17:33:07.144 +05:30 [Debug] Connection id ""0HLA61RVGAA2T"" sending FIN. +2017-12-18 17:33:07.145 +05:30 [Debug] Connection id ""0HLA61RVGAA2T"" sent FIN with status "0". +2017-12-18 17:33:07.145 +05:30 [Debug] Connection id ""0HLA61RVGAA2T"" stopped. +2017-12-18 17:33:07.146 +05:30 [Debug] Connection id ""0HLA61RVGAA30"" sent FIN with status "0". +2017-12-18 17:33:07.146 +05:30 [Debug] Connection id ""0HLA61RVGAA30"" stopped. +2017-12-18 17:33:07.146 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 17:33:07.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 17:33:07.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 17:33:07.152 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 17:33:07.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 17:33:07.157 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 17:33:07.150 +05:30 [Debug] Connection id ""0HLA61RVGAA2U"" stopped. +2017-12-18 17:33:07.162 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 17:33:07.163 +05:30 [Debug] Connection id ""0HLA61RVGAA2V"" sent FIN with status "0". +2017-12-18 17:33:07.163 +05:30 [Debug] Connection id ""0HLA61RVGAA2V"" stopped. +2017-12-18 17:33:07.163 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 17:33:07.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 17:33:09.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 17:33:10.256 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 17:33:10.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 17:33:14.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:33:14.420 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:33:14.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:33:14.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:33:14.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 7278.3882ms +2017-12-18 17:33:14.455 +05:30 [Information] Request finished in 7325.3915ms 200 application/json; charset=utf-8 +2017-12-18 17:33:14.456 +05:30 [Debug] Connection id ""0HLA61RVGAA31"" completed keep alive response. +2017-12-18 17:33:15.494 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:33:15.495 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:33:15.495 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:33:15.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:33:15.523 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 8370.1247ms +2017-12-18 17:33:15.529 +05:30 [Information] Request finished in 8405.3594ms 200 application/json; charset=utf-8 +2017-12-18 17:33:15.530 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" completed keep alive response. +2017-12-18 17:33:16.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:33:16.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:33:16.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:33:16.599 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:33:16.624 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 9464.3001ms +2017-12-18 17:33:16.628 +05:30 [Information] Request finished in 9485.3516ms 200 application/json; charset=utf-8 +2017-12-18 17:33:16.629 +05:30 [Debug] Connection id ""0HLA61RVGAA32"" completed keep alive response. +2017-12-18 17:33:49.791 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=urlfb_127471161024815,urlpage_1452799044811364&userId=48&message=none&scheduledatetime=Mon,%2018%20Dec%202017%2013:03:00%20GMT&localscheduletime=12/18/2017%2018:33&imagePath= multipart/form-data; boundary=----WebKitFormBoundary6nwG9nJlTs6JXhrK 186 +2017-12-18 17:33:49.792 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-18 17:33:49.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-18 17:33:52.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "urlfb_127471161024815,urlpage_1452799044811364", "48", "", "", "Mon, 18 Dec 2017 13:03:00 GMT", "12/18/2017 18:33", "", "
https://www.instagram.com/p/Bc1stteAmai/", "NoMedia"]) - ModelState is Valid +2017-12-18 17:34:33.495 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Mon, 18 Dec 2017 13:03:00 GMT +2017-12-18 17:34:38.689 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" received FIN. +2017-12-18 17:34:38.707 +05:30 [Debug] Connection id ""0HLA61RVGAA32"" received FIN. +2017-12-18 17:34:38.707 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" disconnecting. +2017-12-18 17:34:38.707 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" sending FIN. +2017-12-18 17:34:38.721 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" sent FIN with status "0". +2017-12-18 17:34:38.707 +05:30 [Debug] Connection id ""0HLA61RVGAA32"" disconnecting. +2017-12-18 17:34:38.734 +05:30 [Debug] Connection id ""0HLA61RVGAA2S"" stopped. +2017-12-18 17:34:38.745 +05:30 [Debug] Connection id ""0HLA61RVGAA32"" sending FIN. +2017-12-18 17:34:39.448 +05:30 [Debug] Connection id ""0HLA61RVGAA32"" sent FIN with status "0". +2017-12-18 17:34:39.449 +05:30 [Debug] Connection id ""0HLA61RVGAA32"" stopped. +2017-12-18 17:36:52.346 +05:30 [Debug] Hosting starting +2017-12-18 17:36:52.625 +05:30 [Debug] Hosting started +2017-12-18 17:36:52.754 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" started. +2017-12-18 17:36:52.754 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" started. +2017-12-18 17:36:52.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 17:36:52.985 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 17:36:53.060 +05:30 [Information] Request finished in 123.4481ms 200 +2017-12-18 17:36:53.126 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" completed keep alive response. +2017-12-18 17:36:54.141 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:36:54.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 17:36:54.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:36:54.584 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"5330d7d8-e84f-412e-93bb-7796973ad873"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 17:36:54.881 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 17:36:54.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:36:55.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 17:36:55.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 17:36:55.082 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:36:55.089 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:36:55.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:36:55.434 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 542.2658ms +2017-12-18 17:36:55.500 +05:30 [Information] Request finished in 2576.5554ms 200 application/json; charset=utf-8 +2017-12-18 17:36:55.502 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" completed keep alive response. +2017-12-18 17:36:58.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:37:05.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:37:05.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:37:05.582 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:37:05.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10692.5169ms +2017-12-18 17:37:05.589 +05:30 [Information] Request finished in 11448.0605ms 200 application/json; charset=utf-8 +2017-12-18 17:37:05.590 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" completed keep alive response. +2017-12-18 17:37:15.046 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:37:15.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:37:15.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:37:18.094 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:37:18.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:37:18.699 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:37:18.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:37:18.702 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3651.0691ms +2017-12-18 17:37:18.705 +05:30 [Information] Request finished in 3658.9274ms 200 application/json; charset=utf-8 +2017-12-18 17:37:18.706 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" completed keep alive response. +2017-12-18 17:37:18.934 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:37:18.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:37:18.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:37:21.998 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:37:22.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:37:22.599 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:37:22.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:37:22.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3664.4546ms +2017-12-18 17:37:22.604 +05:30 [Information] Request finished in 3670.9528ms 200 application/json; charset=utf-8 +2017-12-18 17:37:22.604 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" completed keep alive response. +2017-12-18 17:37:22.633 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:37:22.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:37:22.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:37:25.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:37:26.278 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:37:26.279 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:37:26.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:37:26.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3644.6207ms +2017-12-18 17:37:26.284 +05:30 [Information] Request finished in 3651.6834ms 200 application/json; charset=utf-8 +2017-12-18 17:37:26.285 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" completed keep alive response. +2017-12-18 17:37:26.571 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:37:26.571 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:37:26.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:37:29.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:37:30.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:37:30.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:37:30.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:37:30.245 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3668.1286ms +2017-12-18 17:37:30.248 +05:30 [Information] Request finished in 3676.6915ms 200 application/json; charset=utf-8 +2017-12-18 17:37:30.248 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" completed keep alive response. +2017-12-18 17:37:34.111 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:37:34.111 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:37:34.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:37:37.186 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:37:37.786 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:37:37.787 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:37:37.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:37:37.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3662.137ms +2017-12-18 17:37:37.790 +05:30 [Information] Request finished in 3699.0624ms 200 application/json; charset=utf-8 +2017-12-18 17:37:37.790 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" completed keep alive response. +2017-12-18 17:37:37.810 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 17:37:37.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 17:37:37.813 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 17:37:41.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 17:37:44.206 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:37:44.208 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:37:44.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:37:44.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 6578.0333ms +2017-12-18 17:37:44.395 +05:30 [Information] Request finished in 6584.7691ms 200 application/json; charset=utf-8 +2017-12-18 17:37:44.396 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" completed keep alive response. +2017-12-18 17:37:44.971 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:37:44.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:37:44.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:37:48.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:37:48.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:37:48.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:37:48.607 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:37:48.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3635.2096ms +2017-12-18 17:37:48.609 +05:30 [Information] Request finished in 3638.445ms 200 application/json; charset=utf-8 +2017-12-18 17:37:48.609 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" completed keep alive response. +2017-12-18 17:37:48.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 17:37:48.654 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:37:48.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:37:51.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 17:37:53.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:37:53.721 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:37:53.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:37:53.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5102.8512ms +2017-12-18 17:37:53.769 +05:30 [Information] Request finished in 5114.3996ms 200 application/json; charset=utf-8 +2017-12-18 17:37:53.770 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" completed keep alive response. +2017-12-18 17:37:55.178 +05:30 [Debug] Connection id ""0HLA61V9LQUAQ"" started. +2017-12-18 17:37:55.178 +05:30 [Debug] Connection id ""0HLA61V9LQUAR"" started. +2017-12-18 17:37:55.180 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:37:55.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:37:55.182 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:37:55.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:37:55.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:37:55.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:37:55.205 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:37:55.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:37:55.207 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:37:55.224 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:37:55.225 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:37:55.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:37:55.287 +05:30 [Debug] Connection id ""0HLA61V9LQUAS"" started. +2017-12-18 17:37:55.287 +05:30 [Debug] Connection id ""0HLA61V9LQUAT"" started. +2017-12-18 17:37:56.178 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:37:56.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:37:56.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:37:57.180 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:37:57.181 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:37:57.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:38:00.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:38:00.467 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:38:00.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:38:00.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:38:00.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:38:00.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:38:02.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:02.522 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:02.523 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:02.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:02.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7353.8186ms +2017-12-18 17:38:02.558 +05:30 [Information] Request finished in 7369.7247ms 200 application/json; charset=utf-8 +2017-12-18 17:38:02.558 +05:30 [Debug] Connection id ""0HLA61V9LQUAR"" completed keep alive response. +2017-12-18 17:38:02.589 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 17:38:02.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 17:38:02.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 17:38:02.654 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:02.654 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:02.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:02.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:02.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7464.8232ms +2017-12-18 17:38:02.678 +05:30 [Information] Request finished in 7499.3597ms 200 application/json; charset=utf-8 +2017-12-18 17:38:02.678 +05:30 [Debug] Connection id ""0HLA61V9LQUAQ"" completed keep alive response. +2017-12-18 17:38:03.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:03.117 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:03.118 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:03.119 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:03.120 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5934.0961ms +2017-12-18 17:38:03.122 +05:30 [Information] Request finished in 5941.7674ms 200 application/json; charset=utf-8 +2017-12-18 17:38:03.122 +05:30 [Debug] Connection id ""0HLA61V9LQUAT"" completed keep alive response. +2017-12-18 17:38:03.273 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:03.273 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:03.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:03.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:03.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8049.9537ms +2017-12-18 17:38:03.289 +05:30 [Information] Request finished in 8109.5301ms 200 application/json; charset=utf-8 +2017-12-18 17:38:03.289 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" completed keep alive response. +2017-12-18 17:38:03.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:03.400 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:03.400 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:03.402 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:03.408 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7216.2031ms +2017-12-18 17:38:03.415 +05:30 [Information] Request finished in 7235.9652ms 200 application/json; charset=utf-8 +2017-12-18 17:38:03.416 +05:30 [Debug] Connection id ""0HLA61V9LQUAS"" completed keep alive response. +2017-12-18 17:38:05.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:38:08.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:08.141 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:08.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:08.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:08.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5595.8907ms +2017-12-18 17:38:08.195 +05:30 [Information] Request finished in 5621.6702ms 200 application/json; charset=utf-8 +2017-12-18 17:38:08.196 +05:30 [Debug] Connection id ""0HLA61V9LQUAR"" completed keep alive response. +2017-12-18 17:38:08.614 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:38:08.704 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:38:09.338 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:38:09.339 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:38:10.104 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 17:38:10.104 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 17:38:10.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 17:38:13.185 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:38:13.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:13.814 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:13.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:13.820 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:13.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3733.9683ms +2017-12-18 17:38:13.881 +05:30 [Information] Request finished in 3776.6956ms 200 application/json; charset=utf-8 +2017-12-18 17:38:13.881 +05:30 [Debug] Connection id ""0HLA61V9LQUAQ"" completed keep alive response. +2017-12-18 17:38:21.482 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 17:38:21.528 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 17:38:21.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 17:38:21.593 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 17:38:21.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 17:38:21.596 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 17:38:21.641 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 17:38:21.641 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 17:38:21.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 17:38:24.106 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:24.106 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:24.106 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:24.107 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:24.127 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 28926.3542ms +2017-12-18 17:38:24.131 +05:30 [Information] Request finished in 28956.9745ms 200 application/json; charset=utf-8 +2017-12-18 17:38:24.131 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" completed keep alive response. +2017-12-18 17:38:24.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 17:38:24.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 17:38:24.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 17:38:29.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:29.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:29.939 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:29.939 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:29.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:29.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:29.961 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:29.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:30.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 8461.8332ms +2017-12-18 17:38:30.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:38:30.013 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:38:30.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:38:30.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 8417.2608ms +2017-12-18 17:38:30.034 +05:30 [Information] Request finished in 8604.2491ms 200 application/json; charset=utf-8 +2017-12-18 17:38:30.035 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" completed keep alive response. +2017-12-18 17:38:30.048 +05:30 [Information] Request finished in 8597.5369ms 200 application/json; charset=utf-8 +2017-12-18 17:38:30.049 +05:30 [Debug] Connection id ""0HLA61V9LQUAS"" completed keep alive response. +2017-12-18 17:38:30.152 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:38:30.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 8519.031ms +2017-12-18 17:38:30.202 +05:30 [Information] Request finished in 8747.3041ms 200 application/json; charset=utf-8 +2017-12-18 17:38:30.202 +05:30 [Debug] Connection id ""0HLA61V9LQUAT"" completed keep alive response. +2017-12-18 17:38:55.722 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=urlfb_127471161024815,urlpage_1452799044811364&userId=48&message=none&scheduledatetime=Mon,%2018%20Dec%202017%2013:08:00%20GMT&localscheduletime=12/18/2017%2018:38&imagePath= multipart/form-data; boundary=----WebKitFormBoundaryYmWAYeJChxzh7uWT 186 +2017-12-18 17:38:55.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-18 17:38:55.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-18 17:38:58.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "urlfb_127471161024815,urlpage_1452799044811364", "48", "", "", "Mon, 18 Dec 2017 13:08:00 GMT", "12/18/2017 18:38", "", "
https://www.instagram.com/p/Bc1stteAmai/", "NoMedia"]) - ModelState is Valid +2017-12-18 17:39:23.153 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Mon, 18 Dec 2017 13:08:00 GMT +2017-12-18 17:39:53.597 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Mon, 18 Dec 2017 13:08:00 GMT +2017-12-18 17:40:17.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:40:17.447 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:40:17.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 17:40:17.448 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:40:17.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" in 81722.7549ms +2017-12-18 17:40:17.452 +05:30 [Information] Request finished in 81731.3624ms 200 text/plain; charset=utf-8 +2017-12-18 17:40:17.453 +05:30 [Debug] Connection id ""0HLA61V9LQUAR"" completed keep alive response. +2017-12-18 17:40:33.016 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" received FIN. +2017-12-18 17:40:33.016 +05:30 [Debug] Connection id ""0HLA61V9LQUAQ"" received FIN. +2017-12-18 17:40:33.016 +05:30 [Debug] Connection id ""0HLA61V9LQUAT"" received FIN. +2017-12-18 17:40:33.017 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" received FIN. +2017-12-18 17:40:33.017 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" disconnecting. +2017-12-18 17:40:33.017 +05:30 [Debug] Connection id ""0HLA61V9LQUAS"" received FIN. +2017-12-18 17:40:33.017 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" disconnecting. +2017-12-18 17:40:33.018 +05:30 [Debug] Connection id ""0HLA61V9LQUAS"" disconnecting. +2017-12-18 17:40:33.018 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" sending FIN. +2017-12-18 17:40:33.018 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" sending FIN. +2017-12-18 17:40:33.017 +05:30 [Debug] Connection id ""0HLA61V9LQUAT"" disconnecting. +2017-12-18 17:40:33.019 +05:30 [Debug] Connection id ""0HLA61V9LQUAQ"" disconnecting. +2017-12-18 17:40:33.020 +05:30 [Debug] Connection id ""0HLA61V9LQUAS"" sending FIN. +2017-12-18 17:40:33.020 +05:30 [Debug] Connection id ""0HLA61V9LQUAT"" sending FIN. +2017-12-18 17:40:33.020 +05:30 [Debug] Connection id ""0HLA61V9LQUAQ"" sending FIN. +2017-12-18 17:40:33.027 +05:30 [Debug] Connection id ""0HLA61V9LQUAT"" sent FIN with status "0". +2017-12-18 17:40:33.027 +05:30 [Debug] Connection id ""0HLA61V9LQUAQ"" sent FIN with status "0". +2017-12-18 17:40:33.029 +05:30 [Debug] Connection id ""0HLA61V9LQUAT"" stopped. +2017-12-18 17:40:33.029 +05:30 [Debug] Connection id ""0HLA61V9LQUAQ"" stopped. +2017-12-18 17:40:33.029 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" sent FIN with status "0". +2017-12-18 17:40:33.030 +05:30 [Debug] Connection id ""0HLA61V9LQUAP"" stopped. +2017-12-18 17:40:33.030 +05:30 [Debug] Connection id ""0HLA61V9LQUAS"" sent FIN with status "0". +2017-12-18 17:40:33.030 +05:30 [Debug] Connection id ""0HLA61V9LQUAS"" stopped. +2017-12-18 17:40:33.030 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" sent FIN with status "0". +2017-12-18 17:40:33.031 +05:30 [Debug] Connection id ""0HLA61V9LQUAO"" stopped. +2017-12-18 17:41:55.841 +05:30 [Debug] Connection id ""0HLA61V9LQUAR"" received FIN. +2017-12-18 17:41:55.842 +05:30 [Debug] Connection id ""0HLA61V9LQUAR"" disconnecting. +2017-12-18 17:41:55.842 +05:30 [Debug] Connection id ""0HLA61V9LQUAU"" started. +2017-12-18 17:41:55.842 +05:30 [Debug] Connection id ""0HLA61V9LQUAR"" sending FIN. +2017-12-18 17:41:55.842 +05:30 [Debug] Connection id ""0HLA61V9LQUAR"" sent FIN with status "0". +2017-12-18 17:41:55.843 +05:30 [Debug] Connection id ""0HLA61V9LQUAR"" stopped. +2017-12-18 17:41:55.844 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchData?keywords=none +2017-12-18 17:41:55.844 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchData"'. +2017-12-18 17:41:55.845 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" +2017-12-18 17:41:57.955 +05:30 [Debug] Connection id ""0HLA61V9LQUAV"" started. +2017-12-18 17:41:57.956 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:41:57.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:41:57.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:41:58.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" with arguments (["none"]) - ModelState is Valid +2017-12-18 17:41:59.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:41:59.645 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:41:59.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:41:59.647 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:41:59.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" in 3827.4785ms +2017-12-18 17:41:59.677 +05:30 [Information] Request finished in 3833.1314ms 200 application/json; charset=utf-8 +2017-12-18 17:41:59.678 +05:30 [Debug] Connection id ""0HLA61V9LQUAU"" completed keep alive response. +2017-12-18 17:42:01.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:42:01.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:42:01.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:42:01.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:42:01.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3687.9948ms +2017-12-18 17:42:01.648 +05:30 [Information] Request finished in 3693.1115ms 200 application/json; charset=utf-8 +2017-12-18 17:42:01.649 +05:30 [Debug] Connection id ""0HLA61V9LQUAV"" completed keep alive response. +2017-12-18 17:42:01.657 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 17:42:01.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:42:01.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:42:04.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 17:42:06.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:42:06.378 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:42:06.379 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:42:06.380 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4721.779ms +2017-12-18 17:42:06.384 +05:30 [Information] Request finished in 4726.4286ms 200 application/json; charset=utf-8 +2017-12-18 17:42:06.384 +05:30 [Debug] Connection id ""0HLA61V9LQUAU"" completed keep alive response. +2017-12-18 17:42:09.355 +05:30 [Debug] Connection id ""0HLA61V9LQUB1"" started. +2017-12-18 17:42:09.355 +05:30 [Debug] Connection id ""0HLA61V9LQUB0"" started. +2017-12-18 17:42:09.360 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:42:09.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:42:09.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:42:09.441 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:42:09.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:42:09.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:42:09.483 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:42:09.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:42:09.484 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:42:09.494 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:42:09.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:42:09.495 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:42:10.021 +05:30 [Debug] Connection id ""0HLA61V9LQUB2"" started. +2017-12-18 17:42:10.027 +05:30 [Debug] Connection id ""0HLA61V9LQUB3"" started. +2017-12-18 17:42:10.675 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:42:10.676 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:42:10.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:42:11.679 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:42:11.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:42:11.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:42:14.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:42:14.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:42:14.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:42:14.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:42:14.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:42:14.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:42:15.467 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:42:15.468 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:42:15.468 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:42:15.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:42:15.472 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6104.0486ms +2017-12-18 17:42:15.474 +05:30 [Information] Request finished in 6131.0534ms 200 application/json; charset=utf-8 +2017-12-18 17:42:15.475 +05:30 [Debug] Connection id ""0HLA61V9LQUAV"" completed keep alive response. +2017-12-18 17:42:15.480 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchData?keywords=none +2017-12-18 17:42:15.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchData"'. +2017-12-18 17:42:15.481 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" +2017-12-18 17:42:15.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:42:15.550 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:42:15.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:42:15.555 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:42:15.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6112.7705ms +2017-12-18 17:42:15.561 +05:30 [Information] Request finished in 6154.2332ms 200 application/json; charset=utf-8 +2017-12-18 17:42:15.561 +05:30 [Debug] Connection id ""0HLA61V9LQUB1"" completed keep alive response. +2017-12-18 17:42:15.950 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:42:15.950 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:42:15.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:42:15.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:42:15.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6468.6639ms +2017-12-18 17:42:15.959 +05:30 [Information] Request finished in 6522.2717ms 200 application/json; charset=utf-8 +2017-12-18 17:42:15.960 +05:30 [Debug] Connection id ""0HLA61V9LQUB0"" completed keep alive response. +2017-12-18 17:42:16.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:42:16.053 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:42:16.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:42:16.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:42:16.056 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5377.5376ms +2017-12-18 17:42:16.059 +05:30 [Information] Request finished in 5383.2533ms 200 application/json; charset=utf-8 +2017-12-18 17:42:16.060 +05:30 [Debug] Connection id ""0HLA61V9LQUB2"" completed keep alive response. +2017-12-18 17:42:16.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:42:16.099 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:42:16.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:42:16.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:42:16.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4420.1025ms +2017-12-18 17:42:16.106 +05:30 [Information] Request finished in 4426.3148ms 200 application/json; charset=utf-8 +2017-12-18 17:42:16.107 +05:30 [Debug] Connection id ""0HLA61V9LQUB3"" completed keep alive response. +2017-12-18 17:42:18.532 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" with arguments (["none"]) - ModelState is Valid +2017-12-18 17:42:19.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:42:19.679 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:42:19.679 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:42:19.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:42:19.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" in 4203.9516ms +2017-12-18 17:42:19.693 +05:30 [Information] Request finished in 4213.0131ms 200 application/json; charset=utf-8 +2017-12-18 17:42:19.694 +05:30 [Debug] Connection id ""0HLA61V9LQUAV"" completed keep alive response. +2017-12-18 17:42:22.396 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:42:22.397 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:42:22.992 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:42:22.996 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:42:37.751 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:42:37.752 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:42:37.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:42:37.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:42:37.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 28261.1599ms +2017-12-18 17:42:37.761 +05:30 [Information] Request finished in 28402.588ms 200 application/json; charset=utf-8 +2017-12-18 17:42:37.762 +05:30 [Debug] Connection id ""0HLA61V9LQUAU"" completed keep alive response. +2017-12-18 17:44:13.025 +05:30 [Debug] Connection id ""0HLA61V9LQUB0"" received FIN. +2017-12-18 17:44:13.025 +05:30 [Debug] Connection id ""0HLA61V9LQUB1"" received FIN. +2017-12-18 17:44:13.026 +05:30 [Debug] Connection id ""0HLA61V9LQUB1"" disconnecting. +2017-12-18 17:44:13.026 +05:30 [Debug] Connection id ""0HLA61V9LQUB0"" disconnecting. +2017-12-18 17:44:13.026 +05:30 [Debug] Connection id ""0HLA61V9LQUB0"" sending FIN. +2017-12-18 17:44:13.026 +05:30 [Debug] Connection id ""0HLA61V9LQUB1"" sending FIN. +2017-12-18 17:44:13.026 +05:30 [Debug] Connection id ""0HLA61V9LQUB0"" sent FIN with status "0". +2017-12-18 17:44:13.026 +05:30 [Debug] Connection id ""0HLA61V9LQUB1"" sent FIN with status "0". +2017-12-18 17:44:13.027 +05:30 [Debug] Connection id ""0HLA61V9LQUB0"" stopped. +2017-12-18 17:44:13.027 +05:30 [Debug] Connection id ""0HLA61V9LQUB1"" stopped. +2017-12-18 17:44:13.027 +05:30 [Debug] Connection id ""0HLA61V9LQUB2"" received FIN. +2017-12-18 17:44:13.027 +05:30 [Debug] Connection id ""0HLA61V9LQUB3"" received FIN. +2017-12-18 17:44:13.027 +05:30 [Debug] Connection id ""0HLA61V9LQUAV"" received FIN. +2017-12-18 17:44:13.028 +05:30 [Debug] Connection id ""0HLA61V9LQUAU"" received FIN. +2017-12-18 17:44:13.037 +05:30 [Debug] Connection id ""0HLA61V9LQUB2"" disconnecting. +2017-12-18 17:44:13.038 +05:30 [Debug] Connection id ""0HLA61V9LQUB2"" sending FIN. +2017-12-18 17:44:13.038 +05:30 [Debug] Connection id ""0HLA61V9LQUB3"" disconnecting. +2017-12-18 17:44:13.038 +05:30 [Debug] Connection id ""0HLA61V9LQUB3"" sending FIN. +2017-12-18 17:44:13.038 +05:30 [Debug] Connection id ""0HLA61V9LQUB2"" sent FIN with status "0". +2017-12-18 17:44:13.038 +05:30 [Debug] Connection id ""0HLA61V9LQUB3"" sent FIN with status "0". +2017-12-18 17:44:13.038 +05:30 [Debug] Connection id ""0HLA61V9LQUB2"" stopped. +2017-12-18 17:44:13.039 +05:30 [Debug] Connection id ""0HLA61V9LQUAV"" disconnecting. +2017-12-18 17:44:13.039 +05:30 [Debug] Connection id ""0HLA61V9LQUB3"" stopped. +2017-12-18 17:44:13.039 +05:30 [Debug] Connection id ""0HLA61V9LQUAU"" disconnecting. +2017-12-18 17:44:13.039 +05:30 [Debug] Connection id ""0HLA61V9LQUAV"" sending FIN. +2017-12-18 17:44:13.040 +05:30 [Debug] Connection id ""0HLA61V9LQUAU"" sending FIN. +2017-12-18 17:44:13.040 +05:30 [Debug] Connection id ""0HLA61V9LQUAV"" sent FIN with status "0". +2017-12-18 17:44:13.040 +05:30 [Debug] Connection id ""0HLA61V9LQUAU"" sent FIN with status "0". +2017-12-18 17:44:13.040 +05:30 [Debug] Connection id ""0HLA61V9LQUAV"" stopped. +2017-12-18 17:44:13.041 +05:30 [Debug] Connection id ""0HLA61V9LQUAU"" stopped. +2017-12-18 17:44:37.643 +05:30 [Debug] Connection id ""0HLA61V9LQUB4"" started. +2017-12-18 17:44:37.644 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=urlfb_1452799044811364&userId=48&message=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D8jJXyYYD-_k&imagePath=https%3A%2F%2Fi.ytimg.com%2Fvi%2F8jJXyYYD-_k%2Fmqdefault.jpg multipart/form-data; boundary=----WebKitFormBoundary1gczX1L8nJcqYGVh 145 +2017-12-18 17:44:37.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-18 17:44:37.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-18 17:44:40.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["https://www.youtube.com/watch?v=8jJXyYYD-_k", "urlfb_1452799044811364", "48", "https://i.ytimg.com/vi/8jJXyYYD-_k/mqdefault.jpg", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-18 17:44:57.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:44:57.977 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:44:57.978 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 17:44:57.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:44:57.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 20336.6708ms +2017-12-18 17:44:57.991 +05:30 [Information] Request finished in 20345.4391ms 200 text/plain; charset=utf-8 +2017-12-18 17:44:57.991 +05:30 [Debug] Connection id ""0HLA61V9LQUB4"" completed keep alive response. +2017-12-18 17:46:03.018 +05:30 [Debug] Connection id ""0HLA61V9LQUB4"" received FIN. +2017-12-18 17:46:03.019 +05:30 [Debug] Connection id ""0HLA61V9LQUB4"" disconnecting. +2017-12-18 17:46:03.020 +05:30 [Debug] Connection id ""0HLA61V9LQUB4"" sending FIN. +2017-12-18 17:46:03.021 +05:30 [Debug] Connection id ""0HLA61V9LQUB4"" sent FIN with status "0". +2017-12-18 17:46:03.021 +05:30 [Debug] Connection id ""0HLA61V9LQUB4"" stopped. +2017-12-18 17:46:09.125 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" started. +2017-12-18 17:46:09.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 17:46:09.127 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 17:46:09.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 17:46:12.205 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:46:14.684 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:46:14.684 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:46:14.684 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:46:14.685 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:46:14.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5557.9266ms +2017-12-18 17:46:14.692 +05:30 [Information] Request finished in 5563.4476ms 200 application/json; charset=utf-8 +2017-12-18 17:46:14.692 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" completed keep alive response. +2017-12-18 17:46:43.952 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/getRssNewsFeedsPost?userId=48&skip=0&count=200 +2017-12-18 17:46:43.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/getRssNewsFeedsPost"'. +2017-12-18 17:46:43.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" +2017-12-18 17:46:47.017 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" with arguments (["48", "0", "200"]) - ModelState is Valid +2017-12-18 17:46:47.802 +05:30 [Debug] Connection id ""0HLA61V9LQUB6"" started. +2017-12-18 17:46:47.804 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:46:47.806 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:46:47.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:46:50.239 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:46:50.240 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:46:50.240 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:46:50.241 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:46:50.287 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" in 6320.1043ms +2017-12-18 17:46:50.332 +05:30 [Information] Request finished in 6379.1075ms 200 application/json; charset=utf-8 +2017-12-18 17:46:50.333 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" completed keep alive response. +2017-12-18 17:46:50.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:46:51.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:46:51.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:46:51.448 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:46:51.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3640.7403ms +2017-12-18 17:46:51.457 +05:30 [Information] Request finished in 3652.126ms 200 application/json; charset=utf-8 +2017-12-18 17:46:51.458 +05:30 [Debug] Connection id ""0HLA61V9LQUB6"" completed keep alive response. +2017-12-18 17:46:51.493 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 17:46:51.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:46:51.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:46:54.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 17:46:56.227 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:46:56.227 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:46:56.228 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:46:56.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4734.4672ms +2017-12-18 17:46:56.232 +05:30 [Information] Request finished in 4741.4254ms 200 application/json; charset=utf-8 +2017-12-18 17:46:56.232 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" completed keep alive response. +2017-12-18 17:46:59.131 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/getRssNewsFeedsPost?userId=48&skip=0&count=200 +2017-12-18 17:46:59.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/getRssNewsFeedsPost"'. +2017-12-18 17:46:59.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" +2017-12-18 17:46:59.308 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:46:59.308 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:46:59.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:46:59.310 +05:30 [Debug] Connection id ""0HLA61V9LQUB7"" started. +2017-12-18 17:46:59.333 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:46:59.334 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:46:59.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:46:59.517 +05:30 [Debug] Connection id ""0HLA61V9LQUB8"" started. +2017-12-18 17:46:59.518 +05:30 [Debug] Connection id ""0HLA61V9LQUB9"" started. +2017-12-18 17:46:59.521 +05:30 [Debug] Connection id ""0HLA61V9LQUBA"" started. +2017-12-18 17:46:59.544 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:46:59.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:46:59.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:47:00.808 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:47:00.809 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:47:00.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:47:01.808 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:47:01.809 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:47:01.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:47:05.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" with arguments (["48", "0", "200"]) - ModelState is Valid +2017-12-18 17:47:05.075 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:47:05.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:47:05.116 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:47:05.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:47:05.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:47:05.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:47:05.691 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:47:05.691 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:47:05.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:47:05.702 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4884.4981ms +2017-12-18 17:47:05.712 +05:30 [Information] Request finished in 4903.6724ms 200 application/json; charset=utf-8 +2017-12-18 17:47:05.713 +05:30 [Debug] Connection id ""0HLA61V9LQUB8"" completed keep alive response. +2017-12-18 17:47:05.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:47:05.721 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:47:05.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:47:06.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:47:06.187 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:47:06.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:47:06.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:47:06.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6878.8091ms +2017-12-18 17:47:06.192 +05:30 [Information] Request finished in 6885.1344ms 200 application/json; charset=utf-8 +2017-12-18 17:47:06.192 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" completed keep alive response. +2017-12-18 17:47:06.815 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:47:06.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:47:06.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:47:06.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:47:06.827 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" in 7690.8517ms +2017-12-18 17:47:06.841 +05:30 [Information] Request finished in 7705.4579ms 200 application/json; charset=utf-8 +2017-12-18 17:47:06.842 +05:30 [Debug] Connection id ""0HLA61V9LQUB6"" completed keep alive response. +2017-12-18 17:47:07.925 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:47:07.925 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:47:07.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:47:07.930 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:47:07.934 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 8596.3575ms +2017-12-18 17:47:07.962 +05:30 [Information] Request finished in 8630.389ms 200 application/json; charset=utf-8 +2017-12-18 17:47:07.962 +05:30 [Debug] Connection id ""0HLA61V9LQUB7"" completed keep alive response. +2017-12-18 17:47:07.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:47:07.998 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:47:07.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:47:08.045 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:47:08.114 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6235.7167ms +2017-12-18 17:47:08.121 +05:30 [Information] Request finished in 6313.3371ms 200 application/json; charset=utf-8 +2017-12-18 17:47:08.122 +05:30 [Debug] Connection id ""0HLA61V9LQUBA"" completed keep alive response. +2017-12-18 17:47:08.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:47:09.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:47:09.586 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:47:09.587 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:47:09.587 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:47:09.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3865.5058ms +2017-12-18 17:47:09.591 +05:30 [Information] Request finished in 3869.9463ms 200 application/json; charset=utf-8 +2017-12-18 17:47:09.592 +05:30 [Debug] Connection id ""0HLA61V9LQUB8"" completed keep alive response. +2017-12-18 17:47:14.225 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:47:14.226 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:47:14.878 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:47:14.899 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:47:20.583 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=urlfb_1452799044811364&userId=48&message=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fentertainment-arts-41140441&imagePath= multipart/form-data; boundary=----WebKitFormBoundary6UW6NU4QIjt4OnK2 145 +2017-12-18 17:47:20.583 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-18 17:47:20.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-18 17:47:23.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["http://www.bbc.co.uk/news/entertainment-arts-41140441", "urlfb_1452799044811364", "48", "", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-18 17:47:29.625 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:47:29.625 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:47:29.626 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 17:47:29.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:47:29.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 9043.1284ms +2017-12-18 17:47:29.631 +05:30 [Information] Request finished in 9048.3284ms 200 text/plain; charset=utf-8 +2017-12-18 17:47:29.631 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" completed keep alive response. +2017-12-18 17:47:39.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:47:39.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:47:39.254 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:47:39.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:47:39.259 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 39712.8997ms +2017-12-18 17:47:39.261 +05:30 [Information] Request finished in 39739.6747ms 200 application/json; charset=utf-8 +2017-12-18 17:47:39.262 +05:30 [Debug] Connection id ""0HLA61V9LQUB9"" completed keep alive response. +2017-12-18 17:48:27.324 +05:30 [Debug] Connection id ""0HLA61V9LQUB7"" received FIN. +2017-12-18 17:48:27.324 +05:30 [Debug] Connection id ""0HLA61V9LQUB6"" received FIN. +2017-12-18 17:48:27.325 +05:30 [Debug] Connection id ""0HLA61V9LQUB7"" disconnecting. +2017-12-18 17:48:27.325 +05:30 [Debug] Connection id ""0HLA61V9LQUBA"" received FIN. +2017-12-18 17:48:27.325 +05:30 [Debug] Connection id ""0HLA61V9LQUB7"" sending FIN. +2017-12-18 17:48:27.325 +05:30 [Debug] Connection id ""0HLA61V9LQUB8"" received FIN. +2017-12-18 17:48:27.325 +05:30 [Debug] Connection id ""0HLA61V9LQUB7"" sent FIN with status "0". +2017-12-18 17:48:27.326 +05:30 [Debug] Connection id ""0HLA61V9LQUB6"" disconnecting. +2017-12-18 17:48:27.326 +05:30 [Debug] Connection id ""0HLA61V9LQUBA"" disconnecting. +2017-12-18 17:48:27.326 +05:30 [Debug] Connection id ""0HLA61V9LQUB6"" sending FIN. +2017-12-18 17:48:27.326 +05:30 [Debug] Connection id ""0HLA61V9LQUB8"" disconnecting. +2017-12-18 17:48:27.326 +05:30 [Debug] Connection id ""0HLA61V9LQUBA"" sending FIN. +2017-12-18 17:48:27.326 +05:30 [Debug] Connection id ""0HLA61V9LQUB7"" stopped. +2017-12-18 17:48:27.329 +05:30 [Debug] Connection id ""0HLA61V9LQUB8"" sending FIN. +2017-12-18 17:48:27.329 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=urlpage_1452799044811364&userId=48&message=none&scheduledatetime=Mon,%2018%20Dec%202017%2013:18:00%20GMT&localscheduletime=12/18/2017%2018:48&imagePath=http%3A%2F%2Fc.files.bbci.co.uk%2F8025%2Fproduction%2F_97650823_041436745-1.jpg multipart/form-data; boundary=----WebKitFormBoundaryMViHK5grajs0EoA5 199 +2017-12-18 17:48:27.329 +05:30 [Debug] Connection id ""0HLA61V9LQUB8"" sent FIN with status "0". +2017-12-18 17:48:27.329 +05:30 [Debug] Connection id ""0HLA61V9LQUB8"" stopped. +2017-12-18 17:48:27.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-18 17:48:27.330 +05:30 [Debug] Connection id ""0HLA61V9LQUBA"" sent FIN with status "0". +2017-12-18 17:48:27.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-18 17:48:27.330 +05:30 [Debug] Connection id ""0HLA61V9LQUBA"" stopped. +2017-12-18 17:48:27.331 +05:30 [Debug] Connection id ""0HLA61V9LQUB6"" sent FIN with status "0". +2017-12-18 17:48:27.331 +05:30 [Debug] Connection id ""0HLA61V9LQUB6"" stopped. +2017-12-18 17:48:30.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "urlpage_1452799044811364", "48", "http://c.files.bbci.co.uk/8025/production/_97650823_041436745-1.jpg", "", "Mon, 18 Dec 2017 13:18:00 GMT", "12/18/2017 18:48", "", "
http://www.bbc.co.uk/news/entertainment-arts-41140441", "NoMedia"]) - ModelState is Valid +2017-12-18 17:48:40.528 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Mon, 18 Dec 2017 13:18:00 GMT +2017-12-18 17:48:43.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:48:43.809 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:48:43.810 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 17:48:43.813 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:48:43.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" in 16484.4105ms +2017-12-18 17:48:43.822 +05:30 [Information] Request finished in 16497.4228ms 200 text/plain; charset=utf-8 +2017-12-18 17:48:43.823 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" completed keep alive response. +2017-12-18 17:49:43.015 +05:30 [Debug] Connection id ""0HLA61V9LQUB9"" received FIN. +2017-12-18 17:49:43.016 +05:30 [Debug] Connection id ""0HLA61V9LQUB9"" disconnecting. +2017-12-18 17:49:43.016 +05:30 [Debug] Connection id ""0HLA61V9LQUB9"" sending FIN. +2017-12-18 17:49:43.017 +05:30 [Debug] Connection id ""0HLA61V9LQUB9"" sent FIN with status "0". +2017-12-18 17:49:43.017 +05:30 [Debug] Connection id ""0HLA61V9LQUB9"" stopped. +2017-12-18 17:49:49.240 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" received FIN. +2017-12-18 17:49:49.240 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" disconnecting. +2017-12-18 17:49:49.241 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" started. +2017-12-18 17:49:49.241 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" sending FIN. +2017-12-18 17:49:49.242 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" sent FIN with status "0". +2017-12-18 17:49:49.242 +05:30 [Debug] Connection id ""0HLA61V9LQUB5"" stopped. +2017-12-18 17:49:49.243 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 17:49:49.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 17:49:49.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 17:49:52.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:49:54.757 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:49:54.758 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:49:54.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:49:54.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:49:54.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5521.4164ms +2017-12-18 17:49:54.772 +05:30 [Information] Request finished in 5527.9743ms 200 application/json; charset=utf-8 +2017-12-18 17:49:54.774 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" completed keep alive response. +2017-12-18 17:49:56.339 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/getRssNewsFeedsPost?userId=48&skip=0&count=200 +2017-12-18 17:49:56.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/getRssNewsFeedsPost"'. +2017-12-18 17:49:56.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" +2017-12-18 17:49:59.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" with arguments (["48", "0", "200"]) - ModelState is Valid +2017-12-18 17:50:01.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:50:01.359 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:50:01.359 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:50:01.360 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:50:01.369 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" in 5026.8064ms +2017-12-18 17:50:01.373 +05:30 [Information] Request finished in 5033.7425ms 200 application/json; charset=utf-8 +2017-12-18 17:50:01.373 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" completed keep alive response. +2017-12-18 17:50:08.841 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=urlfb_1452799044811364&userId=48&message=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fentertainment-arts-41140441&imagePath= multipart/form-data; boundary=----WebKitFormBoundary0ZzVMe5xXjAA3maR 145 +2017-12-18 17:50:08.842 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-18 17:50:08.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-18 17:50:11.897 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["http://www.bbc.co.uk/news/entertainment-arts-41140441", "urlfb_1452799044811364", "48", "", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-18 17:50:37.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:50:37.441 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:50:37.442 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-18 17:50:37.444 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:50:37.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 28601.6658ms +2017-12-18 17:50:37.451 +05:30 [Information] Request finished in 28609.1577ms 200 text/plain; charset=utf-8 +2017-12-18 17:50:37.451 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" completed keep alive response. +2017-12-18 17:51:27.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacebookGroups/GetCategories +2017-12-18 17:51:27.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetCategories"'. +2017-12-18 17:51:27.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" +2017-12-18 17:51:29.304 +05:30 [Debug] Connection id ""0HLA61V9LQUBC"" started. +2017-12-18 17:51:29.305 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 17:51:29.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 17:51:29.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 17:51:30.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 17:51:31.038 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:51:31.039 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:51:31.039 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:51:31.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:51:31.050 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" in 3602.6757ms +2017-12-18 17:51:31.053 +05:30 [Information] Request finished in 3610.8906ms 200 application/json; charset=utf-8 +2017-12-18 17:51:31.053 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" completed keep alive response. +2017-12-18 17:51:32.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 17:51:32.906 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:51:32.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:51:32.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:51:32.910 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3599.3771ms +2017-12-18 17:51:32.914 +05:30 [Information] Request finished in 3608.2297ms 200 application/json; charset=utf-8 +2017-12-18 17:51:32.915 +05:30 [Debug] Connection id ""0HLA61V9LQUBC"" completed keep alive response. +2017-12-18 17:51:32.927 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 17:51:32.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 17:51:32.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 17:51:35.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 17:51:37.759 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:51:37.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:51:37.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:51:37.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4833.3749ms +2017-12-18 17:51:37.764 +05:30 [Information] Request finished in 4837.6335ms 200 application/json; charset=utf-8 +2017-12-18 17:51:37.766 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" completed keep alive response. +2017-12-18 17:51:41.008 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacebookGroups/GetCategories +2017-12-18 17:51:41.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetCategories"'. +2017-12-18 17:51:41.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" +2017-12-18 17:51:41.493 +05:30 [Debug] Connection id ""0HLA61V9LQUBD"" started. +2017-12-18 17:51:41.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 17:51:41.504 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 17:51:41.504 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 17:51:41.523 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 17:51:41.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 17:51:41.524 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 17:51:41.937 +05:30 [Debug] Connection id ""0HLA61V9LQUBE"" started. +2017-12-18 17:51:41.937 +05:30 [Debug] Connection id ""0HLA61V9LQUBF"" started. +2017-12-18 17:51:41.939 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 17:51:41.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 17:51:41.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 17:51:41.962 +05:30 [Debug] Connection id ""0HLA61V9LQUBG"" started. +2017-12-18 17:51:42.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 17:51:42.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 17:51:42.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 17:51:43.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 17:51:43.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 17:51:43.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 17:51:46.681 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 17:51:46.682 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:51:46.685 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:51:46.688 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:51:46.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:51:46.762 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:51:47.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:51:47.084 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:51:47.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:51:47.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:51:47.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" in 6078.8156ms +2017-12-18 17:51:47.096 +05:30 [Information] Request finished in 6101.2169ms 200 application/json; charset=utf-8 +2017-12-18 17:51:47.097 +05:30 [Debug] Connection id ""0HLA61V9LQUBC"" completed keep alive response. +2017-12-18 17:51:47.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 17:51:47.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 17:51:47.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 17:51:47.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:51:47.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:51:47.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:51:47.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:51:47.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3734.4003ms +2017-12-18 17:51:47.258 +05:30 [Information] Request finished in 3741.3283ms 200 application/json; charset=utf-8 +2017-12-18 17:51:47.258 +05:30 [Debug] Connection id ""0HLA61V9LQUBG"" completed keep alive response. +2017-12-18 17:51:47.753 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:51:47.753 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:51:47.753 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:51:47.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:51:47.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6229.578ms +2017-12-18 17:51:47.759 +05:30 [Information] Request finished in 6255.5705ms 200 application/json; charset=utf-8 +2017-12-18 17:51:47.760 +05:30 [Debug] Connection id ""0HLA61V9LQUBD"" completed keep alive response. +2017-12-18 17:51:47.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:51:47.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:51:47.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:51:47.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:51:47.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6367.7013ms +2017-12-18 17:51:47.878 +05:30 [Information] Request finished in 6404.5496ms 200 application/json; charset=utf-8 +2017-12-18 17:51:47.879 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" completed keep alive response. +2017-12-18 17:51:47.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:51:47.966 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:51:47.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:51:47.967 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:51:47.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5456.4789ms +2017-12-18 17:51:47.970 +05:30 [Information] Request finished in 5460.6716ms 200 application/json; charset=utf-8 +2017-12-18 17:51:47.970 +05:30 [Debug] Connection id ""0HLA61V9LQUBE"" completed keep alive response. +2017-12-18 17:51:50.175 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 17:51:50.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:51:50.921 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:51:50.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:51:50.922 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:51:50.925 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3791.4482ms +2017-12-18 17:51:50.930 +05:30 [Information] Request finished in 3803.3785ms 200 application/json; charset=utf-8 +2017-12-18 17:51:50.930 +05:30 [Debug] Connection id ""0HLA61V9LQUBC"" completed keep alive response. +2017-12-18 17:51:54.153 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:51:54.156 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:51:54.874 +05:30 [Fatal] Sequence contains no elements +2017-12-18 17:51:54.883 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 17:52:05.011 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/FacebookGroups/GetFacebookGroupFeeds?skip=0&count=30&keyword=hi 0 +2017-12-18 17:52:05.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetFacebookGroupFeeds"'. +2017-12-18 17:52:05.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)" +2017-12-18 17:52:08.043 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)" with arguments (["hi", "0", "30"]) - ModelState is Valid +2017-12-18 17:52:08.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:52:08.986 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:52:08.986 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:52:08.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:52:09.015 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)" in 3997.1642ms +2017-12-18 17:52:09.018 +05:30 [Information] Request finished in 4006.733ms 200 application/json; charset=utf-8 +2017-12-18 17:52:09.019 +05:30 [Debug] Connection id ""0HLA61V9LQUBG"" completed keep alive response. +2017-12-18 17:52:09.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 17:52:09.200 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 17:52:09.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 17:52:09.201 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 17:52:09.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27263.2272ms +2017-12-18 17:52:09.206 +05:30 [Information] Request finished in 27268.1539ms 200 application/json; charset=utf-8 +2017-12-18 17:52:09.207 +05:30 [Debug] Connection id ""0HLA61V9LQUBF"" completed keep alive response. +2017-12-18 17:53:23.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBD"" received FIN. +2017-12-18 17:53:23.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBE"" received FIN. +2017-12-18 17:53:23.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" received FIN. +2017-12-18 17:53:23.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBE"" disconnecting. +2017-12-18 17:53:23.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" disconnecting. +2017-12-18 17:53:23.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBE"" sending FIN. +2017-12-18 17:53:23.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" sending FIN. +2017-12-18 17:53:23.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBE"" sent FIN with status "0". +2017-12-18 17:53:23.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" sent FIN with status "0". +2017-12-18 17:53:23.017 +05:30 [Debug] Connection id ""0HLA61V9LQUBE"" stopped. +2017-12-18 17:53:23.017 +05:30 [Debug] Connection id ""0HLA61V9LQUBB"" stopped. +2017-12-18 17:53:23.017 +05:30 [Debug] Connection id ""0HLA61V9LQUBC"" received FIN. +2017-12-18 17:53:23.018 +05:30 [Debug] Connection id ""0HLA61V9LQUBG"" received FIN. +2017-12-18 17:53:23.018 +05:30 [Debug] Connection id ""0HLA61V9LQUBF"" received FIN. +2017-12-18 17:53:23.018 +05:30 [Debug] Connection id ""0HLA61V9LQUBC"" disconnecting. +2017-12-18 17:53:23.018 +05:30 [Debug] Connection id ""0HLA61V9LQUBG"" disconnecting. +2017-12-18 17:53:23.020 +05:30 [Debug] Connection id ""0HLA61V9LQUBF"" disconnecting. +2017-12-18 17:53:23.020 +05:30 [Debug] Connection id ""0HLA61V9LQUBC"" sending FIN. +2017-12-18 17:53:23.021 +05:30 [Debug] Connection id ""0HLA61V9LQUBF"" sending FIN. +2017-12-18 17:53:23.021 +05:30 [Debug] Connection id ""0HLA61V9LQUBG"" sending FIN. +2017-12-18 17:53:23.021 +05:30 [Debug] Connection id ""0HLA61V9LQUBF"" sent FIN with status "0". +2017-12-18 17:53:23.022 +05:30 [Debug] Connection id ""0HLA61V9LQUBG"" sent FIN with status "0". +2017-12-18 17:53:23.022 +05:30 [Debug] Connection id ""0HLA61V9LQUBF"" stopped. +2017-12-18 17:53:23.022 +05:30 [Debug] Connection id ""0HLA61V9LQUBG"" stopped. +2017-12-18 17:53:23.023 +05:30 [Debug] Connection id ""0HLA61V9LQUBC"" sent FIN with status "0". +2017-12-18 17:53:23.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBD"" disconnecting. +2017-12-18 17:53:23.023 +05:30 [Debug] Connection id ""0HLA61V9LQUBC"" stopped. +2017-12-18 17:53:23.023 +05:30 [Debug] Connection id ""0HLA61V9LQUBD"" sending FIN. +2017-12-18 17:53:23.024 +05:30 [Debug] Connection id ""0HLA61V9LQUBD"" sent FIN with status "0". +2017-12-18 17:53:23.024 +05:30 [Debug] Connection id ""0HLA61V9LQUBD"" stopped. +2017-12-18 18:30:11.543 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" started. +2017-12-18 18:30:11.545 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 18:30:11.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 18:30:11.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 18:30:14.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 18:30:16.834 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:30:16.835 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:30:16.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:30:16.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5288.8595ms +2017-12-18 18:30:16.838 +05:30 [Information] Request finished in 5293.4926ms 200 application/json; charset=utf-8 +2017-12-18 18:30:16.838 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" completed keep alive response. +2017-12-18 18:30:16.894 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 18:30:16.895 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 18:30:16.895 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 18:30:19.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 18:30:20.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:30:20.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:30:20.537 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:30:20.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3643.0352ms +2017-12-18 18:30:20.545 +05:30 [Information] Request finished in 3650.7342ms 200 application/json; charset=utf-8 +2017-12-18 18:30:20.545 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" completed keep alive response. +2017-12-18 18:30:23.228 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 18:30:23.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 18:30:23.229 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 18:30:25.455 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" started. +2017-12-18 18:30:25.457 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 18:30:25.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 18:30:25.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 18:30:26.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 18:30:26.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:30:26.953 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:30:27.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:30:27.056 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3798.7317ms +2017-12-18 18:30:27.072 +05:30 [Information] Request finished in 3865.1836ms 200 application/json; charset=utf-8 +2017-12-18 18:30:27.072 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" completed keep alive response. +2017-12-18 18:30:27.376 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 18:30:27.377 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 18:30:27.377 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 18:30:28.670 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 18:30:29.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:30:29.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:30:29.273 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:30:29.274 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3815.0988ms +2017-12-18 18:30:29.276 +05:30 [Information] Request finished in 3819.6937ms 200 application/json; charset=utf-8 +2017-12-18 18:30:29.276 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" completed keep alive response. +2017-12-18 18:30:30.476 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 18:30:31.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:30:31.075 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:30:31.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:30:31.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3699.0882ms +2017-12-18 18:30:31.078 +05:30 [Information] Request finished in 3705.8ms 200 application/json; charset=utf-8 +2017-12-18 18:30:31.079 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" completed keep alive response. +2017-12-18 18:30:31.083 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 18:30:31.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 18:30:31.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 18:30:34.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 18:30:34.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:30:34.711 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:30:34.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:30:34.717 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3629.9912ms +2017-12-18 18:30:34.720 +05:30 [Information] Request finished in 3636.931ms 200 application/json; charset=utf-8 +2017-12-18 18:30:34.720 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" completed keep alive response. +2017-12-18 18:30:47.001 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 18:30:47.001 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 18:30:47.002 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 18:30:50.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 18:30:50.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:30:50.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:30:50.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:30:50.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3681.3004ms +2017-12-18 18:30:50.692 +05:30 [Information] Request finished in 3691.8787ms 200 application/json; charset=utf-8 +2017-12-18 18:30:50.693 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" completed keep alive response. +2017-12-18 18:30:50.702 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 18:30:50.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 18:30:50.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 18:30:53.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 18:30:55.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:30:55.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:30:55.784 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:30:55.790 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5075.6489ms +2017-12-18 18:30:55.795 +05:30 [Information] Request finished in 5093.1873ms 200 application/json; charset=utf-8 +2017-12-18 18:30:55.796 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" completed keep alive response. +2017-12-18 18:30:55.854 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 18:30:55.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 18:30:55.856 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 18:30:58.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 18:30:59.532 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:30:59.532 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:30:59.533 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:30:59.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3677.3699ms +2017-12-18 18:30:59.538 +05:30 [Information] Request finished in 3684.6163ms 200 application/json; charset=utf-8 +2017-12-18 18:30:59.538 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" completed keep alive response. +2017-12-18 18:30:59.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 18:30:59.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 18:30:59.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 18:31:02.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 18:31:04.407 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:31:04.407 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:31:04.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:31:04.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4864.4763ms +2017-12-18 18:31:04.421 +05:30 [Information] Request finished in 4877.1689ms 200 application/json; charset=utf-8 +2017-12-18 18:31:04.421 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" completed keep alive response. +2017-12-18 18:31:05.922 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" started. +2017-12-18 18:31:05.922 +05:30 [Debug] Connection id ""0HLA61V9LQUBK"" started. +2017-12-18 18:31:05.951 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 18:31:05.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 18:31:05.952 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 18:31:05.960 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 18:31:05.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 18:31:05.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 18:31:06.017 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 18:31:06.018 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 18:31:06.018 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 18:31:06.020 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 18:31:06.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 18:31:06.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 18:31:06.172 +05:30 [Debug] Connection id ""0HLA61V9LQUBL"" started. +2017-12-18 18:31:06.175 +05:30 [Debug] Connection id ""0HLA61V9LQUBM"" started. +2017-12-18 18:31:06.226 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 18:31:06.226 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 18:31:06.231 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 18:31:06.263 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 18:31:06.263 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 18:31:06.263 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 18:31:09.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:31:09.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:31:09.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:31:09.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:31:09.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:31:09.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:31:09.638 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:31:09.638 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:31:09.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:31:09.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:31:09.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3676.7522ms +2017-12-18 18:31:09.644 +05:30 [Information] Request finished in 3720.9231ms 200 application/json; charset=utf-8 +2017-12-18 18:31:09.645 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" completed keep alive response. +2017-12-18 18:31:09.658 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 18:31:09.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 18:31:09.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 18:31:11.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:31:11.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:31:11.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:31:11.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:31:11.363 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5339.9803ms +2017-12-18 18:31:11.365 +05:30 [Information] Request finished in 5434.3077ms 200 application/json; charset=utf-8 +2017-12-18 18:31:11.366 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" completed keep alive response. +2017-12-18 18:31:11.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:31:11.799 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:31:11.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:31:11.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:31:11.801 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5782.2987ms +2017-12-18 18:31:11.804 +05:30 [Information] Request finished in 5870.2972ms 200 application/json; charset=utf-8 +2017-12-18 18:31:11.804 +05:30 [Debug] Connection id ""0HLA61V9LQUBK"" completed keep alive response. +2017-12-18 18:31:12.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:31:12.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:31:12.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:31:12.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:31:12.185 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5936.2194ms +2017-12-18 18:31:12.190 +05:30 [Information] Request finished in 5994.4453ms 200 application/json; charset=utf-8 +2017-12-18 18:31:12.191 +05:30 [Debug] Connection id ""0HLA61V9LQUBL"" completed keep alive response. +2017-12-18 18:31:12.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:31:12.204 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:31:12.204 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:31:12.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:31:12.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5942.706ms +2017-12-18 18:31:12.210 +05:30 [Information] Request finished in 5984.7472ms 200 application/json; charset=utf-8 +2017-12-18 18:31:12.211 +05:30 [Debug] Connection id ""0HLA61V9LQUBM"" completed keep alive response. +2017-12-18 18:31:12.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:31:15.262 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:31:15.262 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:31:15.263 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:31:15.267 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:31:15.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5610.4229ms +2017-12-18 18:31:15.302 +05:30 [Information] Request finished in 5637.4784ms 200 application/json; charset=utf-8 +2017-12-18 18:31:15.303 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" completed keep alive response. +2017-12-18 18:31:18.209 +05:30 [Fatal] Sequence contains no elements +2017-12-18 18:31:18.211 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 18:31:18.786 +05:30 [Fatal] Sequence contains no elements +2017-12-18 18:31:18.787 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 18:31:33.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:31:33.629 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:31:33.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:31:33.630 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:31:33.633 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27679.717ms +2017-12-18 18:31:33.636 +05:30 [Information] Request finished in 27714.7347ms 200 application/json; charset=utf-8 +2017-12-18 18:31:33.636 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" completed keep alive response. +2017-12-18 18:31:45.593 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacebookGroups/GetCategories +2017-12-18 18:31:45.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetCategories"'. +2017-12-18 18:31:45.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" +2017-12-18 18:31:48.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 18:31:50.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:31:50.682 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:31:50.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:31:50.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:31:50.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" in 5088.6528ms +2017-12-18 18:31:50.693 +05:30 [Information] Request finished in 5100.9342ms 200 application/json; charset=utf-8 +2017-12-18 18:31:50.694 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" completed keep alive response. +2017-12-18 18:32:23.772 +05:30 [Debug] Connection id ""0HLA61V9LQUBK"" received FIN. +2017-12-18 18:32:23.772 +05:30 [Debug] Connection id ""0HLA61V9LQUBL"" received FIN. +2017-12-18 18:32:23.772 +05:30 [Debug] Connection id ""0HLA61V9LQUBM"" received FIN. +2017-12-18 18:32:23.772 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" received FIN. +2017-12-18 18:32:23.772 +05:30 [Debug] Connection id ""0HLA61V9LQUBL"" disconnecting. +2017-12-18 18:32:23.773 +05:30 [Debug] Connection id ""0HLA61V9LQUBL"" sending FIN. +2017-12-18 18:32:23.772 +05:30 [Debug] Connection id ""0HLA61V9LQUBM"" disconnecting. +2017-12-18 18:32:23.773 +05:30 [Debug] Connection id ""0HLA61V9LQUBL"" sent FIN with status "0". +2017-12-18 18:32:23.774 +05:30 [Debug] Connection id ""0HLA61V9LQUBM"" sending FIN. +2017-12-18 18:32:23.774 +05:30 [Debug] Connection id ""0HLA61V9LQUBL"" stopped. +2017-12-18 18:32:23.773 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" disconnecting. +2017-12-18 18:32:23.774 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" sending FIN. +2017-12-18 18:32:23.774 +05:30 [Debug] Connection id ""0HLA61V9LQUBM"" sent FIN with status "0". +2017-12-18 18:32:23.775 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" sent FIN with status "0". +2017-12-18 18:32:23.775 +05:30 [Debug] Connection id ""0HLA61V9LQUBH"" stopped. +2017-12-18 18:32:23.775 +05:30 [Debug] Connection id ""0HLA61V9LQUBM"" stopped. +2017-12-18 18:32:23.772 +05:30 [Debug] Connection id ""0HLA61V9LQUBK"" disconnecting. +2017-12-18 18:32:23.776 +05:30 [Debug] Connection id ""0HLA61V9LQUBK"" sending FIN. +2017-12-18 18:32:23.776 +05:30 [Debug] Connection id ""0HLA61V9LQUBK"" sent FIN with status "0". +2017-12-18 18:32:23.776 +05:30 [Debug] Connection id ""0HLA61V9LQUBK"" stopped. +2017-12-18 18:32:23.775 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 18:32:23.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 18:32:23.777 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 18:32:26.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 18:32:27.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:32:27.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:32:27.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:32:27.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3597.5024ms +2017-12-18 18:32:27.377 +05:30 [Information] Request finished in 3603.8762ms 200 application/json; charset=utf-8 +2017-12-18 18:32:27.378 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" completed keep alive response. +2017-12-18 18:32:27.385 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-18 18:32:27.385 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 18:32:27.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 18:32:30.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-18 18:32:32.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:32:32.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:32:32.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:32:32.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4833.7064ms +2017-12-18 18:32:32.224 +05:30 [Information] Request finished in 4838.7218ms 200 application/json; charset=utf-8 +2017-12-18 18:32:32.224 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" completed keep alive response. +2017-12-18 18:32:35.214 +05:30 [Debug] Connection id ""0HLA61V9LQUBN"" started. +2017-12-18 18:32:35.215 +05:30 [Debug] Connection id ""0HLA61V9LQUBO"" started. +2017-12-18 18:32:35.216 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 18:32:35.217 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 18:32:35.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 18:32:35.228 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 18:32:35.231 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 18:32:35.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 18:32:35.241 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 18:32:35.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 18:32:35.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 18:32:35.300 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 18:32:35.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 18:32:35.304 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 18:32:35.413 +05:30 [Debug] Connection id ""0HLA61V9LQUBP"" started. +2017-12-18 18:32:35.415 +05:30 [Debug] Connection id ""0HLA61V9LQUBQ"" started. +2017-12-18 18:32:36.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 18:32:36.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 18:32:36.407 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 18:32:37.405 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 18:32:37.405 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 18:32:37.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 18:32:40.572 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:32:40.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:32:40.644 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:32:40.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:32:40.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:32:40.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:32:41.194 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:32:41.195 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:32:41.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:32:41.197 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:32:41.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5951.8845ms +2017-12-18 18:32:41.203 +05:30 [Information] Request finished in 5984.619ms 200 application/json; charset=utf-8 +2017-12-18 18:32:41.203 +05:30 [Debug] Connection id ""0HLA61V9LQUBO"" completed keep alive response. +2017-12-18 18:32:41.212 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacebookGroups/GetCategories +2017-12-18 18:32:41.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetCategories"'. +2017-12-18 18:32:41.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" +2017-12-18 18:32:41.380 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:32:41.380 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:32:41.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:32:41.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:32:41.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6148.635ms +2017-12-18 18:32:41.385 +05:30 [Information] Request finished in 6167.9996ms 200 application/json; charset=utf-8 +2017-12-18 18:32:41.386 +05:30 [Debug] Connection id ""0HLA61V9LQUBN"" completed keep alive response. +2017-12-18 18:32:41.742 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:32:41.742 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:32:41.742 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:32:41.743 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:32:41.745 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4338.0592ms +2017-12-18 18:32:41.747 +05:30 [Information] Request finished in 4342.8866ms 200 application/json; charset=utf-8 +2017-12-18 18:32:41.748 +05:30 [Debug] Connection id ""0HLA61V9LQUBQ"" completed keep alive response. +2017-12-18 18:32:41.767 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:32:41.767 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:32:41.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:32:41.769 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:32:41.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6548.1047ms +2017-12-18 18:32:41.773 +05:30 [Information] Request finished in 6560.7011ms 200 application/json; charset=utf-8 +2017-12-18 18:32:41.774 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" completed keep alive response. +2017-12-18 18:32:41.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:32:41.803 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:32:41.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:32:41.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:32:41.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5398.0277ms +2017-12-18 18:32:41.810 +05:30 [Information] Request finished in 5404.204ms 200 application/json; charset=utf-8 +2017-12-18 18:32:41.810 +05:30 [Debug] Connection id ""0HLA61V9LQUBP"" completed keep alive response. +2017-12-18 18:32:44.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 18:32:44.606 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:32:44.606 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:32:44.607 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:32:44.608 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:32:44.609 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" in 3395.0595ms +2017-12-18 18:32:44.611 +05:30 [Information] Request finished in 3400.0623ms 200 application/json; charset=utf-8 +2017-12-18 18:32:44.612 +05:30 [Debug] Connection id ""0HLA61V9LQUBO"" completed keep alive response. +2017-12-18 18:32:48.209 +05:30 [Fatal] Sequence contains no elements +2017-12-18 18:32:48.210 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 18:32:48.829 +05:30 [Fatal] Sequence contains no elements +2017-12-18 18:32:48.830 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 18:33:03.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:33:03.155 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:33:03.155 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:33:03.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:33:03.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27852.5433ms +2017-12-18 18:33:03.160 +05:30 [Information] Request finished in 27944.2804ms 200 application/json; charset=utf-8 +2017-12-18 18:33:03.161 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" completed keep alive response. +2017-12-18 18:33:14.290 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 18:33:14.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 18:33:14.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 18:33:17.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 18:33:19.807 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:33:19.807 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:33:19.807 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:33:19.808 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:33:19.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5518.1829ms +2017-12-18 18:33:19.815 +05:30 [Information] Request finished in 5523.8022ms 200 application/json; charset=utf-8 +2017-12-18 18:33:19.815 +05:30 [Debug] Connection id ""0HLA61V9LQUBN"" completed keep alive response. +2017-12-18 18:33:20.722 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacebookGroups/GetCategories +2017-12-18 18:33:20.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetCategories"'. +2017-12-18 18:33:20.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" +2017-12-18 18:33:23.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 18:33:24.113 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:33:24.114 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:33:24.114 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:33:24.115 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:33:24.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" in 3392.6442ms +2017-12-18 18:33:24.121 +05:30 [Information] Request finished in 3398.6361ms 200 application/json; charset=utf-8 +2017-12-18 18:33:24.121 +05:30 [Debug] Connection id ""0HLA61V9LQUBQ"" completed keep alive response. +2017-12-18 18:33:43.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" received FIN. +2017-12-18 18:33:43.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBP"" received FIN. +2017-12-18 18:33:43.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" disconnecting. +2017-12-18 18:33:43.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBP"" disconnecting. +2017-12-18 18:33:43.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" sending FIN. +2017-12-18 18:33:43.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBP"" sending FIN. +2017-12-18 18:33:43.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" sent FIN with status "0". +2017-12-18 18:33:43.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBP"" sent FIN with status "0". +2017-12-18 18:33:43.017 +05:30 [Debug] Connection id ""0HLA61V9LQUBP"" stopped. +2017-12-18 18:33:43.017 +05:30 [Debug] Connection id ""0HLA61V9LQUBI"" stopped. +2017-12-18 18:33:58.867 +05:30 [Debug] Connection id ""0HLA61V9LQUBO"" received FIN. +2017-12-18 18:33:58.868 +05:30 [Debug] Connection id ""0HLA61V9LQUBO"" disconnecting. +2017-12-18 18:33:58.869 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/FacebookGroups/GetFacebookGroupFeeds?skip=0&count=30&keyword=Hi 0 +2017-12-18 18:33:58.870 +05:30 [Debug] Connection id ""0HLA61V9LQUBO"" sending FIN. +2017-12-18 18:33:58.870 +05:30 [Debug] Connection id ""0HLA61V9LQUBO"" sent FIN with status "0". +2017-12-18 18:33:58.870 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetFacebookGroupFeeds"'. +2017-12-18 18:33:58.870 +05:30 [Debug] Connection id ""0HLA61V9LQUBO"" stopped. +2017-12-18 18:33:58.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)" +2017-12-18 18:34:01.919 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)" with arguments (["Hi", "0", "30"]) - ModelState is Valid +2017-12-18 18:34:02.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 18:34:02.349 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 18:34:02.349 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 18:34:02.349 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 18:34:02.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)" in 3482.0145ms +2017-12-18 18:34:02.357 +05:30 [Information] Request finished in 3488.3933ms 200 application/json; charset=utf-8 +2017-12-18 18:34:02.357 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" completed keep alive response. +2017-12-18 18:35:33.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBN"" received FIN. +2017-12-18 18:35:33.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBN"" disconnecting. +2017-12-18 18:35:33.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" received FIN. +2017-12-18 18:35:33.015 +05:30 [Debug] Connection id ""0HLA61V9LQUBQ"" received FIN. +2017-12-18 18:35:33.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBN"" sending FIN. +2017-12-18 18:35:33.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBN"" sent FIN with status "0". +2017-12-18 18:35:33.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBQ"" disconnecting. +2017-12-18 18:35:33.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBN"" stopped. +2017-12-18 18:35:33.017 +05:30 [Debug] Connection id ""0HLA61V9LQUBQ"" sending FIN. +2017-12-18 18:35:33.016 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" disconnecting. +2017-12-18 18:35:33.017 +05:30 [Debug] Connection id ""0HLA61V9LQUBQ"" sent FIN with status "0". +2017-12-18 18:35:33.017 +05:30 [Debug] Connection id ""0HLA61V9LQUBQ"" stopped. +2017-12-18 18:35:33.017 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" sending FIN. +2017-12-18 18:35:33.018 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" sent FIN with status "0". +2017-12-18 18:35:33.018 +05:30 [Debug] Connection id ""0HLA61V9LQUBJ"" stopped. +2017-12-18 19:37:43.563 +05:30 [Debug] Hosting starting +2017-12-18 19:37:43.925 +05:30 [Debug] Hosting started +2017-12-18 19:37:44.087 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" started. +2017-12-18 19:37:44.088 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" started. +2017-12-18 19:37:44.276 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-18 19:37:44.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-18 19:37:44.351 +05:30 [Information] Request finished in 108.078ms 200 +2017-12-18 19:37:44.392 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" completed keep alive response. +2017-12-18 19:37:46.525 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-18 19:37:46.584 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"459d27c5-cbce-4e23-825f-174a187f6bc1"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-18 19:37:46.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-18 19:37:46.835 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 19:37:46.838 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-18 19:37:46.895 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:37:46.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:37:46.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:37:46.935 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 19:37:46.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 19:37:46.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 19:37:47.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 574.4713ms +2017-12-18 19:37:47.353 +05:30 [Information] Request finished in 3127.3344ms 200 application/json; charset=utf-8 +2017-12-18 19:37:47.357 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" completed keep alive response. +2017-12-18 19:37:47.436 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-18 19:37:47.439 +05:30 [Debug] Request did not match any routes. +2017-12-18 19:37:47.452 +05:30 [Debug] The request path "" does not match the path filter +2017-12-18 19:37:47.463 +05:30 [Information] Request finished in 26.8903ms 404 +2017-12-18 19:37:47.463 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" completed keep alive response. +2017-12-18 19:37:51.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 19:38:01.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:38:01.674 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:38:01.675 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:38:01.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14735.1838ms +2017-12-18 19:38:01.681 +05:30 [Information] Request finished in 14747.9746ms 200 application/json; charset=utf-8 +2017-12-18 19:38:01.682 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" completed keep alive response. +2017-12-18 19:38:26.326 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 19:38:26.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 19:38:26.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 19:38:29.371 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 19:38:29.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:38:29.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:38:29.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:38:29.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.7463ms +2017-12-18 19:38:29.958 +05:30 [Information] Request finished in 3631.9891ms 200 application/json; charset=utf-8 +2017-12-18 19:38:29.958 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" completed keep alive response. +2017-12-18 19:38:30.678 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 19:38:30.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 19:38:30.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 19:38:33.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 19:38:34.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:38:34.306 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:38:34.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:38:34.308 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3628.0138ms +2017-12-18 19:38:34.311 +05:30 [Information] Request finished in 3632.8425ms 200 application/json; charset=utf-8 +2017-12-18 19:38:34.312 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" completed keep alive response. +2017-12-18 19:38:34.345 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 19:38:34.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 19:38:34.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 19:38:34.400 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 19:38:34.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 19:38:34.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 19:38:37.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 19:38:37.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 19:38:38.000 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:38:38.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:38:38.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:38:38.003 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3652.13ms +2017-12-18 19:38:38.007 +05:30 [Information] Request finished in 3666.8024ms 200 application/json; charset=utf-8 +2017-12-18 19:38:38.008 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" completed keep alive response. +2017-12-18 19:38:39.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:38:39.673 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:38:39.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:38:39.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5294.3131ms +2017-12-18 19:38:39.780 +05:30 [Information] Request finished in 5361.4877ms 200 application/json; charset=utf-8 +2017-12-18 19:38:39.781 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" completed keep alive response. +2017-12-18 19:38:44.604 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 19:38:44.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 19:38:44.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 19:38:47.627 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 19:38:48.208 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:38:48.209 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:38:48.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:38:48.214 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3606.605ms +2017-12-18 19:38:48.217 +05:30 [Information] Request finished in 3613.5806ms 200 application/json; charset=utf-8 +2017-12-18 19:38:48.217 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" completed keep alive response. +2017-12-18 19:38:48.246 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-18 19:38:48.247 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-18 19:38:48.249 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-18 19:38:51.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-18 19:38:53.784 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:38:53.785 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:38:53.787 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:38:53.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5659.754ms +2017-12-18 19:38:53.911 +05:30 [Information] Request finished in 5666.7141ms 200 application/json; charset=utf-8 +2017-12-18 19:38:53.911 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" completed keep alive response. +2017-12-18 19:38:54.172 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-18 19:38:54.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-18 19:38:54.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-18 19:38:57.225 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-18 19:38:57.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:38:57.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:38:57.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:38:57.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3642.4912ms +2017-12-18 19:38:57.818 +05:30 [Information] Request finished in 3646.623ms 200 application/json; charset=utf-8 +2017-12-18 19:38:57.819 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" completed keep alive response. +2017-12-18 19:38:57.859 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-18 19:38:57.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-18 19:38:57.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-18 19:39:00.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-18 19:39:02.983 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:39:02.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:39:02.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:39:03.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5210.6622ms +2017-12-18 19:39:03.084 +05:30 [Information] Request finished in 5225.1592ms 200 application/json; charset=utf-8 +2017-12-18 19:39:03.085 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" completed keep alive response. +2017-12-18 19:39:06.002 +05:30 [Debug] Connection id ""0HLA642QNVH1P"" started. +2017-12-18 19:39:06.003 +05:30 [Debug] Connection id ""0HLA642QNVH1Q"" started. +2017-12-18 19:39:06.005 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-18 19:39:06.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-18 19:39:06.005 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-18 19:39:06.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-18 19:39:06.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-18 19:39:06.007 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-18 19:39:06.008 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-18 19:39:06.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-18 19:39:06.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-18 19:39:06.010 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-18 19:39:06.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-18 19:39:06.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-18 19:39:06.055 +05:30 [Debug] Connection id ""0HLA642QNVH1R"" started. +2017-12-18 19:39:06.055 +05:30 [Debug] Connection id ""0HLA642QNVH1S"" started. +2017-12-18 19:39:06.087 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-18 19:39:06.094 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-18 19:39:06.095 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-18 19:39:06.099 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-18 19:39:06.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-18 19:39:06.101 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-18 19:39:09.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 19:39:09.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 19:39:09.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 19:39:09.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 19:39:09.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 19:39:09.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 19:39:09.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:39:09.846 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:39:09.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:39:09.856 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:39:09.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3852.1346ms +2017-12-18 19:39:09.941 +05:30 [Information] Request finished in 3924.0676ms 200 application/json; charset=utf-8 +2017-12-18 19:39:09.942 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" completed keep alive response. +2017-12-18 19:39:09.989 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-18 19:39:09.990 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-18 19:39:09.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-18 19:39:10.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:39:10.670 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:39:10.670 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:39:10.671 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:39:10.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4659.1411ms +2017-12-18 19:39:10.678 +05:30 [Information] Request finished in 4671.73ms 200 application/json; charset=utf-8 +2017-12-18 19:39:10.679 +05:30 [Debug] Connection id ""0HLA642QNVH1Q"" completed keep alive response. +2017-12-18 19:39:11.573 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:39:11.573 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:39:11.574 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:39:11.574 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:39:11.592 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5581.1502ms +2017-12-18 19:39:11.597 +05:30 [Information] Request finished in 5591.4315ms 200 application/json; charset=utf-8 +2017-12-18 19:39:11.598 +05:30 [Debug] Connection id ""0HLA642QNVH1P"" completed keep alive response. +2017-12-18 19:39:12.177 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:39:12.177 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:39:12.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:39:12.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:39:12.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6076.6249ms +2017-12-18 19:39:12.184 +05:30 [Information] Request finished in 6107.926ms 200 application/json; charset=utf-8 +2017-12-18 19:39:12.185 +05:30 [Debug] Connection id ""0HLA642QNVH1S"" completed keep alive response. +2017-12-18 19:39:12.281 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:39:12.282 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:39:12.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:39:12.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:39:12.289 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6187.6753ms +2017-12-18 19:39:12.295 +05:30 [Information] Request finished in 6237.1056ms 200 application/json; charset=utf-8 +2017-12-18 19:39:12.295 +05:30 [Debug] Connection id ""0HLA642QNVH1R"" completed keep alive response. +2017-12-18 19:39:13.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 19:39:15.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:39:15.756 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:39:15.757 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:39:15.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:39:15.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5811.7984ms +2017-12-18 19:39:15.810 +05:30 [Information] Request finished in 5828.6025ms 200 application/json; charset=utf-8 +2017-12-18 19:39:15.810 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" completed keep alive response. +2017-12-18 19:39:18.918 +05:30 [Fatal] Sequence contains no elements +2017-12-18 19:39:19.068 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 19:39:19.686 +05:30 [Fatal] Sequence contains no elements +2017-12-18 19:39:19.687 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-18 19:39:21.741 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacebookGroups/GetCategories +2017-12-18 19:39:21.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetCategories"'. +2017-12-18 19:39:21.742 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" +2017-12-18 19:39:24.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-18 19:39:30.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:39:30.237 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:39:30.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:39:30.238 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:39:30.275 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" in 8531.6088ms +2017-12-18 19:39:30.278 +05:30 [Information] Request finished in 8537.6747ms 200 application/json; charset=utf-8 +2017-12-18 19:39:30.278 +05:30 [Debug] Connection id ""0HLA642QNVH1Q"" completed keep alive response. +2017-12-18 19:39:37.110 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:39:37.110 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:39:37.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:39:37.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:39:37.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 31127.308ms +2017-12-18 19:39:37.141 +05:30 [Information] Request finished in 31137.7728ms 200 application/json; charset=utf-8 +2017-12-18 19:39:37.141 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" completed keep alive response. +2017-12-18 19:41:24.862 +05:30 [Debug] Connection id ""0HLA642QNVH1P"" received FIN. +2017-12-18 19:41:24.864 +05:30 [Debug] Connection id ""0HLA642QNVH1P"" disconnecting. +2017-12-18 19:41:24.866 +05:30 [Debug] Connection id ""0HLA642QNVH1P"" sending FIN. +2017-12-18 19:41:24.881 +05:30 [Debug] Connection id ""0HLA642QNVH1P"" sent FIN with status "0". +2017-12-18 19:41:24.884 +05:30 [Debug] Connection id ""0HLA642QNVH1R"" received FIN. +2017-12-18 19:41:24.884 +05:30 [Debug] Connection id ""0HLA642QNVH1Q"" received FIN. +2017-12-18 19:41:24.885 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" received FIN. +2017-12-18 19:41:24.885 +05:30 [Debug] Connection id ""0HLA642QNVH1P"" stopped. +2017-12-18 19:41:24.885 +05:30 [Debug] Connection id ""0HLA642QNVH1S"" received FIN. +2017-12-18 19:41:24.886 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" received FIN. +2017-12-18 19:41:24.892 +05:30 [Debug] Connection id ""0HLA642QNVH1R"" disconnecting. +2017-12-18 19:41:24.903 +05:30 [Debug] Connection id ""0HLA642QNVH1R"" sending FIN. +2017-12-18 19:41:24.903 +05:30 [Debug] Connection id ""0HLA642QNVH1R"" sent FIN with status "0". +2017-12-18 19:41:24.904 +05:30 [Debug] Connection id ""0HLA642QNVH1R"" stopped. +2017-12-18 19:41:24.909 +05:30 [Debug] Connection id ""0HLA642QNVH1Q"" disconnecting. +2017-12-18 19:41:24.909 +05:30 [Debug] Connection id ""0HLA642QNVH1Q"" sending FIN. +2017-12-18 19:41:24.909 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" disconnecting. +2017-12-18 19:41:24.909 +05:30 [Debug] Connection id ""0HLA642QNVH1Q"" sent FIN with status "0". +2017-12-18 19:41:24.910 +05:30 [Debug] Connection id ""0HLA642QNVH1Q"" stopped. +2017-12-18 19:41:24.910 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" sending FIN. +2017-12-18 19:41:24.910 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" sent FIN with status "0". +2017-12-18 19:41:24.909 +05:30 [Debug] Connection id ""0HLA642QNVH1S"" disconnecting. +2017-12-18 19:41:24.911 +05:30 [Debug] Connection id ""0HLA642QNVH1N"" stopped. +2017-12-18 19:41:24.911 +05:30 [Debug] Connection id ""0HLA642QNVH1S"" sending FIN. +2017-12-18 19:41:24.911 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" disconnecting. +2017-12-18 19:41:24.912 +05:30 [Debug] Connection id ""0HLA642QNVH1S"" sent FIN with status "0". +2017-12-18 19:41:24.912 +05:30 [Debug] Connection id ""0HLA642QNVH1S"" stopped. +2017-12-18 19:41:24.912 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" sending FIN. +2017-12-18 19:41:24.913 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" sent FIN with status "0". +2017-12-18 19:41:24.913 +05:30 [Debug] Connection id ""0HLA642QNVH1O"" stopped. +2017-12-18 19:43:56.370 +05:30 [Debug] Connection id ""0HLA642QNVH1T"" started. +2017-12-18 19:43:56.372 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-18 19:43:56.373 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-18 19:43:56.375 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-18 19:43:59.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-18 19:44:09.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:44:09.868 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:44:09.868 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:44:09.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:44:09.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 13510.8957ms +2017-12-18 19:44:09.891 +05:30 [Information] Request finished in 13518.6904ms 200 application/json; charset=utf-8 +2017-12-18 19:44:09.892 +05:30 [Debug] Connection id ""0HLA642QNVH1T"" completed keep alive response. +2017-12-18 19:44:21.828 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=48 +2017-12-18 19:44:21.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-12-18 19:44:21.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-12-18 19:44:24.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-18 19:44:26.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:44:26.994 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:44:26.994 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:44:26.996 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:44:27.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 5192.1488ms +2017-12-18 19:44:27.027 +05:30 [Information] Request finished in 5199.7166ms 200 application/json; charset=utf-8 +2017-12-18 19:44:27.027 +05:30 [Debug] Connection id ""0HLA642QNVH1T"" completed keep alive response. +2017-12-18 19:44:28.908 +05:30 [Debug] Connection id ""0HLA642QNVH1U"" started. +2017-12-18 19:44:28.909 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 19:44:28.909 +05:30 [Debug] Connection id ""0HLA642QNVH1V"" started. +2017-12-18 19:44:28.917 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 19:44:28.917 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-12-18 19:44:28.917 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-12-18 19:44:28.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-12-18 19:44:28.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-12-18 19:44:28.965 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=113&userId=48&skip=0&count=30 +2017-12-18 19:44:28.966 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-12-18 19:44:28.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-12-18 19:44:31.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 19:44:32.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 19:44:32.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["113", "0", "30"]) - ModelState is Valid +2017-12-18 19:44:34.197 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:44:34.198 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:44:34.198 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:44:34.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:44:34.228 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 5308.4503ms +2017-12-18 19:44:34.232 +05:30 [Information] Request finished in 5325.0105ms 200 application/json; charset=utf-8 +2017-12-18 19:44:34.232 +05:30 [Debug] Connection id ""0HLA642QNVH1T"" completed keep alive response. +2017-12-18 19:44:34.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:44:34.590 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:44:34.590 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:44:34.591 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:44:34.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 5634.8451ms +2017-12-18 19:44:34.606 +05:30 [Information] Request finished in 5695.8251ms 200 application/json; charset=utf-8 +2017-12-18 19:44:34.607 +05:30 [Debug] Connection id ""0HLA642QNVH1V"" completed keep alive response. +2017-12-18 19:44:36.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-18 19:44:36.463 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-18 19:44:36.463 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-18 19:44:36.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-18 19:44:36.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 7557.4672ms +2017-12-18 19:44:36.480 +05:30 [Information] Request finished in 7569.0905ms 200 application/json; charset=utf-8 +2017-12-18 19:44:36.480 +05:30 [Debug] Connection id ""0HLA642QNVH1U"" completed keep alive response. +2017-12-18 19:46:54.860 +05:30 [Debug] Connection id ""0HLA642QNVH1T"" received FIN. +2017-12-18 19:46:54.860 +05:30 [Debug] Connection id ""0HLA642QNVH1U"" received FIN. +2017-12-18 19:46:54.861 +05:30 [Debug] Connection id ""0HLA642QNVH1T"" disconnecting. +2017-12-18 19:46:54.861 +05:30 [Debug] Connection id ""0HLA642QNVH1U"" disconnecting. +2017-12-18 19:46:54.861 +05:30 [Debug] Connection id ""0HLA642QNVH1V"" received FIN. +2017-12-18 19:46:54.861 +05:30 [Debug] Connection id ""0HLA642QNVH1U"" sending FIN. +2017-12-18 19:46:54.862 +05:30 [Debug] Connection id ""0HLA642QNVH1T"" sending FIN. +2017-12-18 19:46:54.862 +05:30 [Debug] Connection id ""0HLA642QNVH1U"" sent FIN with status "0". +2017-12-18 19:46:54.862 +05:30 [Debug] Connection id ""0HLA642QNVH1V"" disconnecting. +2017-12-18 19:46:54.865 +05:30 [Debug] Connection id ""0HLA642QNVH1T"" sent FIN with status "0". +2017-12-18 19:46:54.865 +05:30 [Debug] Connection id ""0HLA642QNVH1U"" stopped. +2017-12-18 19:46:54.866 +05:30 [Debug] Connection id ""0HLA642QNVH1T"" stopped. +2017-12-18 19:46:54.866 +05:30 [Debug] Connection id ""0HLA642QNVH1V"" sending FIN. +2017-12-18 19:46:54.867 +05:30 [Debug] Connection id ""0HLA642QNVH1V"" sent FIN with status "0". +2017-12-18 19:46:54.867 +05:30 [Debug] Connection id ""0HLA642QNVH1V"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171219.txt b/src/Api.Socioboard/wwwroot/log/log-20171219.txt new file mode 100644 index 000000000..fcff459db --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171219.txt @@ -0,0 +1,7745 @@ +2017-12-19 10:19:26.424 +05:30 [Debug] Hosting starting +2017-12-19 10:19:26.837 +05:30 [Debug] Hosting started +2017-12-19 10:19:27.061 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" started. +2017-12-19 10:19:27.069 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" started. +2017-12-19 10:19:27.315 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 10:19:27.341 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 10:19:27.432 +05:30 [Information] Request finished in 162.9774ms 200 +2017-12-19 10:19:27.551 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" completed keep alive response. +2017-12-19 10:19:29.750 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 10:19:30.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 10:19:30.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 10:19:30.153 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0b4ccf3e-c597-44e5-b20b-bb015214405c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 10:19:30.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 10:19:30.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 10:19:30.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 10:19:30.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 10:19:30.702 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:19:30.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:19:30.726 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:19:31.592 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1223.4394ms +2017-12-19 10:19:31.671 +05:30 [Information] Request finished in 4426.817ms 200 application/json; charset=utf-8 +2017-12-19 10:19:31.673 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" completed keep alive response. +2017-12-19 10:19:31.730 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-19 10:19:31.734 +05:30 [Debug] Request did not match any routes. +2017-12-19 10:19:31.762 +05:30 [Debug] The request path "" does not match the path filter +2017-12-19 10:19:31.778 +05:30 [Information] Request finished in 45.8586ms 404 +2017-12-19 10:19:31.779 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" completed keep alive response. +2017-12-19 10:19:34.568 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 10:19:44.754 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:19:44.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:19:44.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:19:44.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14418.9345ms +2017-12-19 10:19:44.775 +05:30 [Information] Request finished in 15023.8091ms 200 application/json; charset=utf-8 +2017-12-19 10:19:44.776 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" completed keep alive response. +2017-12-19 10:19:59.268 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 10:19:59.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 10:19:59.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 10:20:02.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 10:20:03.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:03.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:03.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:03.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3784.2763ms +2017-12-19 10:20:03.060 +05:30 [Information] Request finished in 3865.8006ms 200 application/json; charset=utf-8 +2017-12-19 10:20:03.060 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" completed keep alive response. +2017-12-19 10:20:03.096 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 10:20:03.098 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 10:20:03.100 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 10:20:06.181 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 10:20:06.566 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 10:20:06.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 10:20:06.567 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 10:20:06.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:06.699 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:06.700 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:06.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3600.2346ms +2017-12-19 10:20:06.703 +05:30 [Information] Request finished in 3607.153ms 200 application/json; charset=utf-8 +2017-12-19 10:20:06.704 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" completed keep alive response. +2017-12-19 10:20:06.768 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 10:20:06.768 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 10:20:06.769 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 10:20:08.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 10:20:09.405 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:09.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:09.406 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:09.409 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2637.0601ms +2017-12-19 10:20:09.413 +05:30 [Information] Request finished in 2644.7081ms 200 application/json; charset=utf-8 +2017-12-19 10:20:09.413 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" completed keep alive response. +2017-12-19 10:20:09.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 10:20:10.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:10.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:10.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:10.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3560.7613ms +2017-12-19 10:20:10.131 +05:30 [Information] Request finished in 3567.4299ms 200 application/json; charset=utf-8 +2017-12-19 10:20:10.131 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" completed keep alive response. +2017-12-19 10:20:23.077 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 10:20:23.077 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 10:20:23.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 10:20:26.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 10:20:26.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:26.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:26.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:26.704 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.2853ms +2017-12-19 10:20:26.706 +05:30 [Information] Request finished in 3629.344ms 200 application/json; charset=utf-8 +2017-12-19 10:20:26.706 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" completed keep alive response. +2017-12-19 10:20:26.738 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-19 10:20:26.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-19 10:20:26.753 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-19 10:20:30.006 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-19 10:20:32.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:32.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:32.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:32.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5496.8785ms +2017-12-19 10:20:32.252 +05:30 [Information] Request finished in 5514.3979ms 200 application/json; charset=utf-8 +2017-12-19 10:20:32.253 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" completed keep alive response. +2017-12-19 10:20:32.660 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 10:20:32.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 10:20:32.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 10:20:35.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 10:20:36.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:36.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:36.240 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:36.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3578.9826ms +2017-12-19 10:20:36.246 +05:30 [Information] Request finished in 3589.0123ms 200 application/json; charset=utf-8 +2017-12-19 10:20:36.247 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" completed keep alive response. +2017-12-19 10:20:36.292 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-19 10:20:36.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 10:20:36.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 10:20:38.441 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-19 10:20:40.149 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:40.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:40.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:40.212 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3914.63ms +2017-12-19 10:20:40.214 +05:30 [Information] Request finished in 3922.088ms 200 application/json; charset=utf-8 +2017-12-19 10:20:40.214 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" completed keep alive response. +2017-12-19 10:20:44.515 +05:30 [Debug] Connection id ""0HLA6JFH20CP2"" started. +2017-12-19 10:20:44.516 +05:30 [Debug] Connection id ""0HLA6JFH20CP3"" started. +2017-12-19 10:20:44.520 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 10:20:44.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 10:20:44.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 10:20:44.591 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 10:20:44.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 10:20:44.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 10:20:44.619 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 10:20:44.620 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 10:20:44.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 10:20:44.691 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 10:20:44.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 10:20:44.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 10:20:45.291 +05:30 [Debug] Connection id ""0HLA6JFH20CP4"" started. +2017-12-19 10:20:45.895 +05:30 [Debug] Connection id ""0HLA6JFH20CP5"" started. +2017-12-19 10:20:48.710 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 10:20:48.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 10:20:48.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 10:20:49.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 10:20:49.716 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 10:20:49.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 10:20:51.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:20:51.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:20:51.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:20:51.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:20:52.847 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:20:52.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:20:53.027 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:53.027 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:20:53.028 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:53.028 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:53.031 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8361.8765ms +2017-12-19 10:20:53.034 +05:30 [Information] Request finished in 8515.0911ms 200 application/json; charset=utf-8 +2017-12-19 10:20:53.035 +05:30 [Debug] Connection id ""0HLA6JFH20CP2"" completed keep alive response. +2017-12-19 10:20:53.047 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 10:20:53.048 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 10:20:53.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 10:20:53.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:53.870 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:20:53.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:53.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:53.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 9323.0311ms +2017-12-19 10:20:53.913 +05:30 [Information] Request finished in 9405.4253ms 200 application/json; charset=utf-8 +2017-12-19 10:20:53.913 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" completed keep alive response. +2017-12-19 10:20:54.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:54.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:20:54.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:54.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:54.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 9381.2314ms +2017-12-19 10:20:54.078 +05:30 [Information] Request finished in 9560.6658ms 200 application/json; charset=utf-8 +2017-12-19 10:20:54.078 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" completed keep alive response. +2017-12-19 10:20:55.489 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:55.489 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:20:55.489 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:55.490 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:55.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5773.262ms +2017-12-19 10:20:55.497 +05:30 [Information] Request finished in 5781.211ms 200 application/json; charset=utf-8 +2017-12-19 10:20:55.498 +05:30 [Debug] Connection id ""0HLA6JFH20CP5"" completed keep alive response. +2017-12-19 10:20:56.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:20:57.233 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:20:57.233 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:20:57.233 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:20:57.234 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:20:57.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4186.1061ms +2017-12-19 10:20:57.239 +05:30 [Information] Request finished in 4192.3971ms 200 application/json; charset=utf-8 +2017-12-19 10:20:57.239 +05:30 [Debug] Connection id ""0HLA6JFH20CP2"" completed keep alive response. +2017-12-19 10:21:01.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:21:01.346 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:21:01.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:21:01.347 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:21:01.417 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 12704.0271ms +2017-12-19 10:21:01.419 +05:30 [Information] Request finished in 12708.6244ms 200 application/json; charset=utf-8 +2017-12-19 10:21:01.419 +05:30 [Debug] Connection id ""0HLA6JFH20CP4"" completed keep alive response. +2017-12-19 10:21:05.074 +05:30 [Fatal] Sequence contains no elements +2017-12-19 10:21:05.293 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 10:21:05.864 +05:30 [Fatal] Sequence contains no elements +2017-12-19 10:21:05.864 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 10:21:21.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:21:21.602 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:21:21.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:21:21.602 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:21:21.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 37040.5282ms +2017-12-19 10:21:21.636 +05:30 [Information] Request finished in 37114.5812ms 200 application/json; charset=utf-8 +2017-12-19 10:21:21.636 +05:30 [Debug] Connection id ""0HLA6JFH20CP3"" completed keep alive response. +2017-12-19 10:23:07.893 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" received FIN. +2017-12-19 10:23:07.893 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" received FIN. +2017-12-19 10:23:07.894 +05:30 [Debug] Connection id ""0HLA6JFH20CP5"" received FIN. +2017-12-19 10:23:07.894 +05:30 [Debug] Connection id ""0HLA6JFH20CP4"" received FIN. +2017-12-19 10:23:07.895 +05:30 [Debug] Connection id ""0HLA6JFH20CP2"" received FIN. +2017-12-19 10:23:07.895 +05:30 [Debug] Connection id ""0HLA6JFH20CP3"" received FIN. +2017-12-19 10:23:07.898 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" disconnecting. +2017-12-19 10:23:07.898 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" disconnecting. +2017-12-19 10:23:07.923 +05:30 [Debug] Connection id ""0HLA6JFH20CP5"" disconnecting. +2017-12-19 10:23:07.923 +05:30 [Debug] Connection id ""0HLA6JFH20CP4"" disconnecting. +2017-12-19 10:23:07.923 +05:30 [Debug] Connection id ""0HLA6JFH20CP2"" disconnecting. +2017-12-19 10:23:07.924 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" sending FIN. +2017-12-19 10:23:07.924 +05:30 [Debug] Connection id ""0HLA6JFH20CP4"" sending FIN. +2017-12-19 10:23:07.924 +05:30 [Debug] Connection id ""0HLA6JFH20CP3"" disconnecting. +2017-12-19 10:23:07.929 +05:30 [Debug] Connection id ""0HLA6JFH20CP3"" sending FIN. +2017-12-19 10:23:07.929 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" sending FIN. +2017-12-19 10:23:07.929 +05:30 [Debug] Connection id ""0HLA6JFH20CP5"" sending FIN. +2017-12-19 10:23:07.932 +05:30 [Debug] Connection id ""0HLA6JFH20CP2"" sending FIN. +2017-12-19 10:23:07.944 +05:30 [Debug] Connection id ""0HLA6JFH20CP2"" sent FIN with status "0". +2017-12-19 10:23:07.944 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" sent FIN with status "0". +2017-12-19 10:23:07.948 +05:30 [Debug] Connection id ""0HLA6JFH20CP2"" stopped. +2017-12-19 10:23:07.949 +05:30 [Debug] Connection id ""0HLA6JFH20CP1"" stopped. +2017-12-19 10:23:07.949 +05:30 [Debug] Connection id ""0HLA6JFH20CP5"" sent FIN with status "0". +2017-12-19 10:23:07.949 +05:30 [Debug] Connection id ""0HLA6JFH20CP3"" sent FIN with status "0". +2017-12-19 10:23:07.950 +05:30 [Debug] Connection id ""0HLA6JFH20CP5"" stopped. +2017-12-19 10:23:07.950 +05:30 [Debug] Connection id ""0HLA6JFH20CP3"" stopped. +2017-12-19 10:23:07.950 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" sent FIN with status "0". +2017-12-19 10:23:07.951 +05:30 [Debug] Connection id ""0HLA6JFH20CP4"" sent FIN with status "0". +2017-12-19 10:23:07.951 +05:30 [Debug] Connection id ""0HLA6JFH20CP0"" stopped. +2017-12-19 10:23:07.951 +05:30 [Debug] Connection id ""0HLA6JFH20CP4"" stopped. +2017-12-19 10:23:38.029 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" started. +2017-12-19 10:23:38.035 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 10:23:38.036 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 10:23:38.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 10:23:41.086 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 10:23:41.603 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:23:41.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:23:41.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:23:41.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3567.2638ms +2017-12-19 10:23:41.608 +05:30 [Information] Request finished in 3572.5183ms 200 application/json; charset=utf-8 +2017-12-19 10:23:41.608 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" completed keep alive response. +2017-12-19 10:23:41.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-19 10:23:41.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 10:23:41.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 10:23:44.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-19 10:23:46.377 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:23:46.377 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:23:46.378 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:23:46.380 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4760.6823ms +2017-12-19 10:23:46.384 +05:30 [Information] Request finished in 4766.491ms 200 application/json; charset=utf-8 +2017-12-19 10:23:46.385 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" completed keep alive response. +2017-12-19 10:23:52.552 +05:30 [Debug] Connection id ""0HLA6JFH20CP7"" started. +2017-12-19 10:23:52.552 +05:30 [Debug] Connection id ""0HLA6JFH20CP8"" started. +2017-12-19 10:23:52.552 +05:30 [Debug] Connection id ""0HLA6JFH20CP9"" started. +2017-12-19 10:23:52.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 10:23:52.586 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 10:23:52.586 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 10:23:52.587 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 10:23:52.589 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 10:23:52.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 10:23:52.601 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 10:23:52.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 10:23:52.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 10:23:52.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 10:23:52.620 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 10:23:52.620 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 10:23:52.782 +05:30 [Debug] Connection id ""0HLA6JFH20CPA"" started. +2017-12-19 10:23:52.783 +05:30 [Debug] Connection id ""0HLA6JFH20CPB"" started. +2017-12-19 10:23:52.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 10:23:52.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 10:23:52.806 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 10:23:52.806 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 10:23:52.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 10:23:52.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 10:23:55.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:23:55.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:23:55.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:23:55.586 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:23:55.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:23:55.587 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:23:55.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2995.7273ms +2017-12-19 10:23:55.592 +05:30 [Information] Request finished in 3048.4306ms 200 application/json; charset=utf-8 +2017-12-19 10:23:55.593 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" completed keep alive response. +2017-12-19 10:23:55.597 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 10:23:55.598 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 10:23:55.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 10:23:55.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:23:55.894 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:23:55.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:23:56.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:23:56.057 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:23:56.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:23:56.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:23:56.061 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3253.5213ms +2017-12-19 10:23:56.064 +05:30 [Information] Request finished in 3279.1918ms 200 application/json; charset=utf-8 +2017-12-19 10:23:56.065 +05:30 [Debug] Connection id ""0HLA6JFH20CPB"" completed keep alive response. +2017-12-19 10:23:56.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:23:56.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:23:56.589 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:23:56.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:23:56.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:23:56.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3991.3639ms +2017-12-19 10:23:56.610 +05:30 [Information] Request finished in 4052.1089ms 200 application/json; charset=utf-8 +2017-12-19 10:23:56.610 +05:30 [Debug] Connection id ""0HLA6JFH20CP8"" completed keep alive response. +2017-12-19 10:23:56.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:23:56.957 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:23:56.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:23:56.957 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:23:56.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4338.091ms +2017-12-19 10:23:56.968 +05:30 [Information] Request finished in 4405.1093ms 200 application/json; charset=utf-8 +2017-12-19 10:23:56.968 +05:30 [Debug] Connection id ""0HLA6JFH20CP9"" completed keep alive response. +2017-12-19 10:23:57.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:23:57.298 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:23:57.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:23:57.299 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:23:57.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4492.7564ms +2017-12-19 10:23:57.303 +05:30 [Information] Request finished in 4518.2637ms 200 application/json; charset=utf-8 +2017-12-19 10:23:57.304 +05:30 [Debug] Connection id ""0HLA6JFH20CPA"" completed keep alive response. +2017-12-19 10:23:58.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 10:24:01.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:24:01.043 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:24:01.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:24:01.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:24:01.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5445.683ms +2017-12-19 10:24:01.048 +05:30 [Information] Request finished in 5450.0909ms 200 application/json; charset=utf-8 +2017-12-19 10:24:01.048 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" completed keep alive response. +2017-12-19 10:24:03.268 +05:30 [Fatal] Sequence contains no elements +2017-12-19 10:24:03.270 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 10:24:03.834 +05:30 [Fatal] Sequence contains no elements +2017-12-19 10:24:03.837 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 10:24:19.594 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:24:19.594 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:24:19.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:24:19.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:24:19.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26992.2201ms +2017-12-19 10:24:19.604 +05:30 [Information] Request finished in 27047.7019ms 200 application/json; charset=utf-8 +2017-12-19 10:24:19.605 +05:30 [Debug] Connection id ""0HLA6JFH20CP7"" completed keep alive response. +2017-12-19 10:24:57.557 +05:30 [Debug] Connection id ""0HLA6JFH20CPB"" received FIN. +2017-12-19 10:24:57.557 +05:30 [Debug] Connection id ""0HLA6JFH20CP8"" received FIN. +2017-12-19 10:24:57.558 +05:30 [Debug] Connection id ""0HLA6JFH20CPB"" disconnecting. +2017-12-19 10:24:57.558 +05:30 [Debug] Connection id ""0HLA6JFH20CP9"" received FIN. +2017-12-19 10:24:57.559 +05:30 [Debug] Connection id ""0HLA6JFH20CP8"" disconnecting. +2017-12-19 10:24:57.558 +05:30 [Debug] Connection id ""0HLA6JFH20CPA"" received FIN. +2017-12-19 10:24:57.559 +05:30 [Debug] Connection id ""0HLA6JFH20CPB"" sending FIN. +2017-12-19 10:24:57.585 +05:30 [Debug] Connection id ""0HLA6JFH20CP9"" disconnecting. +2017-12-19 10:24:57.585 +05:30 [Debug] Connection id ""0HLA6JFH20CPB"" sent FIN with status "0". +2017-12-19 10:24:57.585 +05:30 [Debug] Connection id ""0HLA6JFH20CP8"" sending FIN. +2017-12-19 10:24:57.586 +05:30 [Debug] Connection id ""0HLA6JFH20CPB"" stopped. +2017-12-19 10:24:57.586 +05:30 [Debug] Connection id ""0HLA6JFH20CP8"" sent FIN with status "0". +2017-12-19 10:24:57.585 +05:30 [Debug] Connection id ""0HLA6JFH20CPA"" disconnecting. +2017-12-19 10:24:57.586 +05:30 [Debug] Connection id ""0HLA6JFH20CP9"" sending FIN. +2017-12-19 10:24:57.586 +05:30 [Debug] Connection id ""0HLA6JFH20CP8"" stopped. +2017-12-19 10:24:57.587 +05:30 [Debug] Connection id ""0HLA6JFH20CP9"" sent FIN with status "0". +2017-12-19 10:24:57.588 +05:30 [Debug] Connection id ""0HLA6JFH20CP9"" stopped. +2017-12-19 10:24:57.587 +05:30 [Debug] Connection id ""0HLA6JFH20CPA"" sending FIN. +2017-12-19 10:24:57.589 +05:30 [Debug] Connection id ""0HLA6JFH20CPA"" sent FIN with status "0". +2017-12-19 10:24:57.589 +05:30 [Debug] Connection id ""0HLA6JFH20CPA"" stopped. +2017-12-19 10:26:47.891 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" received FIN. +2017-12-19 10:26:47.891 +05:30 [Debug] Connection id ""0HLA6JFH20CP7"" received FIN. +2017-12-19 10:26:47.891 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" disconnecting. +2017-12-19 10:26:47.894 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" sending FIN. +2017-12-19 10:26:47.896 +05:30 [Debug] Connection id ""0HLA6JFH20CP7"" disconnecting. +2017-12-19 10:26:47.897 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" sent FIN with status "0". +2017-12-19 10:26:47.897 +05:30 [Debug] Connection id ""0HLA6JFH20CP6"" stopped. +2017-12-19 10:26:47.897 +05:30 [Debug] Connection id ""0HLA6JFH20CP7"" sending FIN. +2017-12-19 10:26:47.898 +05:30 [Debug] Connection id ""0HLA6JFH20CP7"" sent FIN with status "0". +2017-12-19 10:26:47.898 +05:30 [Debug] Connection id ""0HLA6JFH20CP7"" stopped. +2017-12-19 10:49:35.338 +05:30 [Debug] Connection id ""0HLA6JFH20CPC"" started. +2017-12-19 10:49:35.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacebookGroups/GetCategories +2017-12-19 10:49:35.342 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetCategories"'. +2017-12-19 10:49:35.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" +2017-12-19 10:49:38.412 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 10:49:42.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 10:49:42.706 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 10:49:42.706 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 10:49:42.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 10:49:42.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetCategories (Api.Socioboard)" in 7383.3481ms +2017-12-19 10:49:42.730 +05:30 [Information] Request finished in 7389.1929ms 200 application/json; charset=utf-8 +2017-12-19 10:49:42.731 +05:30 [Debug] Connection id ""0HLA6JFH20CPC"" completed keep alive response. +2017-12-19 10:52:27.557 +05:30 [Debug] Connection id ""0HLA6JFH20CPC"" received FIN. +2017-12-19 10:52:27.557 +05:30 [Debug] Connection id ""0HLA6JFH20CPC"" disconnecting. +2017-12-19 10:52:27.558 +05:30 [Debug] Connection id ""0HLA6JFH20CPC"" sending FIN. +2017-12-19 10:52:27.558 +05:30 [Debug] Connection id ""0HLA6JFH20CPC"" sent FIN with status "0". +2017-12-19 10:52:27.558 +05:30 [Debug] Connection id ""0HLA6JFH20CPC"" stopped. +2017-12-19 11:40:21.744 +05:30 [Debug] Connection id ""0HLA6JFH20CPD"" started. +2017-12-19 11:40:21.745 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/FacebookGroups/GetFacebookGroupFeeds?skip=0&count=30&keyword=hi 0 +2017-12-19 11:40:21.746 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacebookGroups/GetFacebookGroupFeeds"'. +2017-12-19 11:40:21.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)" +2017-12-19 11:40:24.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)" with arguments (["hi", "0", "30"]) - ModelState is Valid +2017-12-19 11:40:27.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 11:40:27.628 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 11:40:27.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 11:40:27.630 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 11:40:27.666 +05:30 [Information] Executed action "Api.Socioboard.Controllers.Listening.FacebookGroupsController.GetFacebookGroupFeeds (Api.Socioboard)" in 5917.3532ms +2017-12-19 11:40:27.668 +05:30 [Information] Request finished in 5922.6829ms 200 application/json; charset=utf-8 +2017-12-19 11:40:27.669 +05:30 [Debug] Connection id ""0HLA6JFH20CPD"" completed keep alive response. +2017-12-19 11:41:57.557 +05:30 [Debug] Connection id ""0HLA6JFH20CPD"" received FIN. +2017-12-19 11:41:57.557 +05:30 [Debug] Connection id ""0HLA6JFH20CPD"" disconnecting. +2017-12-19 11:41:57.558 +05:30 [Debug] Connection id ""0HLA6JFH20CPD"" sending FIN. +2017-12-19 11:41:57.558 +05:30 [Debug] Connection id ""0HLA6JFH20CPD"" sent FIN with status "0". +2017-12-19 11:41:57.559 +05:30 [Debug] Connection id ""0HLA6JFH20CPD"" stopped. +2017-12-19 12:36:59.566 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" started. +2017-12-19 12:36:59.567 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 12:36:59.568 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 12:36:59.569 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 12:37:02.601 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 12:37:04.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:04.491 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:04.492 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:04.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4925.0189ms +2017-12-19 12:37:04.498 +05:30 [Information] Request finished in 4931.4583ms 200 application/json; charset=utf-8 +2017-12-19 12:37:04.498 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" completed keep alive response. +2017-12-19 12:37:04.554 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 12:37:04.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 12:37:04.554 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 12:37:06.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 12:37:07.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:07.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:07.169 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:07.171 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2615.205ms +2017-12-19 12:37:07.175 +05:30 [Information] Request finished in 2621.0345ms 200 application/json; charset=utf-8 +2017-12-19 12:37:07.175 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" completed keep alive response. +2017-12-19 12:37:08.260 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 12:37:08.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 12:37:08.267 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 12:37:11.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 12:37:11.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:11.837 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:11.838 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:11.839 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3570.8022ms +2017-12-19 12:37:11.840 +05:30 [Information] Request finished in 3583.2854ms 200 application/json; charset=utf-8 +2017-12-19 12:37:11.841 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" completed keep alive response. +2017-12-19 12:37:11.876 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 12:37:11.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 12:37:11.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 12:37:14.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 12:37:15.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:15.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:15.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:15.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3562.8516ms +2017-12-19 12:37:15.444 +05:30 [Information] Request finished in 3567.2383ms 200 application/json; charset=utf-8 +2017-12-19 12:37:15.444 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" completed keep alive response. +2017-12-19 12:37:15.455 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 12:37:15.455 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 12:37:15.456 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 12:37:17.833 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" started. +2017-12-19 12:37:17.835 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 12:37:17.836 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 12:37:17.837 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 12:37:18.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 12:37:19.021 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:19.022 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:19.023 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:19.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3567.3814ms +2017-12-19 12:37:19.029 +05:30 [Information] Request finished in 3574.7162ms 200 application/json; charset=utf-8 +2017-12-19 12:37:19.033 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" completed keep alive response. +2017-12-19 12:37:19.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 12:37:20.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:20.460 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:20.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:20.463 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2623.9738ms +2017-12-19 12:37:20.466 +05:30 [Information] Request finished in 2631.0017ms 200 application/json; charset=utf-8 +2017-12-19 12:37:20.467 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" completed keep alive response. +2017-12-19 12:37:35.813 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 12:37:35.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 12:37:35.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 12:37:38.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 12:37:39.364 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:39.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:39.365 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:39.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3552.1654ms +2017-12-19 12:37:39.371 +05:30 [Information] Request finished in 3557.5601ms 200 application/json; charset=utf-8 +2017-12-19 12:37:39.371 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" completed keep alive response. +2017-12-19 12:37:39.377 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 56 +2017-12-19 12:37:39.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-19 12:37:39.378 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-19 12:37:42.424 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-19 12:37:44.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:44.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:44.026 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:44.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4647.0403ms +2017-12-19 12:37:44.029 +05:30 [Information] Request finished in 4651.7984ms 200 application/json; charset=utf-8 +2017-12-19 12:37:44.029 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" completed keep alive response. +2017-12-19 12:37:44.055 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 12:37:44.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 12:37:44.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 12:37:47.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 12:37:47.620 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:47.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:47.622 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:47.624 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3567.1295ms +2017-12-19 12:37:47.627 +05:30 [Information] Request finished in 3572.3839ms 200 application/json; charset=utf-8 +2017-12-19 12:37:47.628 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" completed keep alive response. +2017-12-19 12:37:47.638 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500287&groupId= +2017-12-19 12:37:47.639 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 12:37:47.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 12:37:50.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500287", ""]) - ModelState is Valid +2017-12-19 12:37:52.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:52.251 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:52.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:52.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4612.1145ms +2017-12-19 12:37:52.260 +05:30 [Information] Request finished in 4620.247ms 200 application/json; charset=utf-8 +2017-12-19 12:37:52.261 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" completed keep alive response. +2017-12-19 12:37:53.287 +05:30 [Debug] Connection id ""0HLA6JFH20CPH"" started. +2017-12-19 12:37:53.287 +05:30 [Debug] Connection id ""0HLA6JFH20CPG"" started. +2017-12-19 12:37:53.344 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500287 +2017-12-19 12:37:53.345 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 12:37:53.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152477 +2017-12-19 12:37:53.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500287 +2017-12-19 12:37:53.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 12:37:53.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 12:37:53.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 12:37:53.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 12:37:53.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 12:37:53.352 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500287 +2017-12-19 12:37:53.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 12:37:53.355 +05:30 [Debug] Connection id ""0HLA6JFH20CPI"" started. +2017-12-19 12:37:53.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 12:37:53.355 +05:30 [Debug] Connection id ""0HLA6JFH20CPJ"" started. +2017-12-19 12:37:53.910 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500287 +2017-12-19 12:37:53.911 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 12:37:53.911 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 12:37:54.428 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152477&userId=500287 +2017-12-19 12:37:54.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 12:37:54.429 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 12:37:57.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 12:37:57.626 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 12:37:57.629 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 12:37:57.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 12:37:57.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 12:37:57.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 12:37:58.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:58.617 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 12:37:58.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:58.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:58.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4707.4948ms +2017-12-19 12:37:58.622 +05:30 [Information] Request finished in 4712.0629ms 200 application/json; charset=utf-8 +2017-12-19 12:37:58.622 +05:30 [Debug] Connection id ""0HLA6JFH20CPI"" completed keep alive response. +2017-12-19 12:37:58.647 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152477 +2017-12-19 12:37:58.648 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 12:37:58.648 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 12:37:59.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:59.731 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 12:37:59.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:59.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:59.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6385.2907ms +2017-12-19 12:37:59.737 +05:30 [Information] Request finished in 6427.9671ms 200 application/json; charset=utf-8 +2017-12-19 12:37:59.738 +05:30 [Debug] Connection id ""0HLA6JFH20CPG"" completed keep alive response. +2017-12-19 12:37:59.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:37:59.746 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 12:37:59.746 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:37:59.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:37:59.750 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6388.2415ms +2017-12-19 12:37:59.754 +05:30 [Information] Request finished in 6465.4705ms 200 application/json; charset=utf-8 +2017-12-19 12:37:59.756 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" completed keep alive response. +2017-12-19 12:38:00.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:38:00.075 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 12:38:00.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:38:00.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:38:00.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6727.7756ms +2017-12-19 12:38:00.082 +05:30 [Information] Request finished in 6773.6812ms 200 application/json; charset=utf-8 +2017-12-19 12:38:00.083 +05:30 [Debug] Connection id ""0HLA6JFH20CPH"" completed keep alive response. +2017-12-19 12:38:00.188 +05:30 [Fatal] Sequence contains no elements +2017-12-19 12:38:00.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:38:00.189 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 12:38:00.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:38:00.190 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 12:38:00.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:38:00.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5761.1355ms +2017-12-19 12:38:00.195 +05:30 [Information] Request finished in 5768.4236ms 200 application/json; charset=utf-8 +2017-12-19 12:38:00.196 +05:30 [Debug] Connection id ""0HLA6JFH20CPJ"" completed keep alive response. +2017-12-19 12:38:00.745 +05:30 [Fatal] Sequence contains no elements +2017-12-19 12:38:00.746 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 12:38:01.310 +05:30 [Fatal] Sequence contains no elements +2017-12-19 12:38:01.311 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 12:38:01.311 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:38:01.312 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 12:38:01.312 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:38:01.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:38:01.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7966.4731ms +2017-12-19 12:38:01.315 +05:30 [Information] Request finished in 8027.7465ms 200 application/json; charset=utf-8 +2017-12-19 12:38:01.315 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" completed keep alive response. +2017-12-19 12:38:01.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 12:38:03.986 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:38:03.986 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 12:38:03.987 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:38:03.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:38:04.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5351.9009ms +2017-12-19 12:38:04.010 +05:30 [Information] Request finished in 5374.0098ms 200 application/json; charset=utf-8 +2017-12-19 12:38:04.010 +05:30 [Debug] Connection id ""0HLA6JFH20CPI"" completed keep alive response. +2017-12-19 12:39:42.013 +05:30 [Debug] Connection id ""0HLA6JFH20CPG"" received FIN. +2017-12-19 12:39:42.013 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" received FIN. +2017-12-19 12:39:42.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPH"" received FIN. +2017-12-19 12:39:42.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" received FIN. +2017-12-19 12:39:42.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPG"" disconnecting. +2017-12-19 12:39:42.016 +05:30 [Debug] Connection id ""0HLA6JFH20CPI"" received FIN. +2017-12-19 12:39:42.017 +05:30 [Debug] Connection id ""0HLA6JFH20CPG"" sending FIN. +2017-12-19 12:39:42.016 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" disconnecting. +2017-12-19 12:39:42.017 +05:30 [Debug] Connection id ""0HLA6JFH20CPG"" sent FIN with status "0". +2017-12-19 12:39:42.017 +05:30 [Debug] Connection id ""0HLA6JFH20CPH"" disconnecting. +2017-12-19 12:39:42.018 +05:30 [Debug] Connection id ""0HLA6JFH20CPG"" stopped. +2017-12-19 12:39:42.017 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" disconnecting. +2017-12-19 12:39:42.018 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" sending FIN. +2017-12-19 12:39:42.018 +05:30 [Debug] Connection id ""0HLA6JFH20CPI"" disconnecting. +2017-12-19 12:39:42.019 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" sent FIN with status "0". +2017-12-19 12:39:42.017 +05:30 [Debug] Connection id ""0HLA6JFH20CPJ"" received FIN. +2017-12-19 12:39:42.020 +05:30 [Debug] Connection id ""0HLA6JFH20CPE"" stopped. +2017-12-19 12:39:42.020 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" sending FIN. +2017-12-19 12:39:42.020 +05:30 [Debug] Connection id ""0HLA6JFH20CPI"" sending FIN. +2017-12-19 12:39:42.020 +05:30 [Debug] Connection id ""0HLA6JFH20CPJ"" disconnecting. +2017-12-19 12:39:42.021 +05:30 [Debug] Connection id ""0HLA6JFH20CPI"" sent FIN with status "0". +2017-12-19 12:39:42.020 +05:30 [Debug] Connection id ""0HLA6JFH20CPH"" sending FIN. +2017-12-19 12:39:42.021 +05:30 [Debug] Connection id ""0HLA6JFH20CPJ"" sending FIN. +2017-12-19 12:39:42.021 +05:30 [Debug] Connection id ""0HLA6JFH20CPI"" stopped. +2017-12-19 12:39:42.022 +05:30 [Debug] Connection id ""0HLA6JFH20CPJ"" sent FIN with status "0". +2017-12-19 12:39:42.022 +05:30 [Debug] Connection id ""0HLA6JFH20CPJ"" stopped. +2017-12-19 12:39:42.023 +05:30 [Debug] Connection id ""0HLA6JFH20CPH"" sent FIN with status "0". +2017-12-19 12:39:42.023 +05:30 [Debug] Connection id ""0HLA6JFH20CPH"" stopped. +2017-12-19 12:39:42.023 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" sent FIN with status "0". +2017-12-19 12:39:42.023 +05:30 [Debug] Connection id ""0HLA6JFH20CPF"" stopped. +2017-12-19 12:50:08.938 +05:30 [Debug] Connection id ""0HLA6JFH20CPK"" started. +2017-12-19 12:50:08.940 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=500287&skip=0&count=10 +2017-12-19 12:50:08.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-19 12:50:08.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-19 12:50:11.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["500287", "0", "10"]) - ModelState is Valid +2017-12-19 12:50:14.836 +05:30 [Fatal] Sequence contains no elements +2017-12-19 12:50:14.837 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 12:50:15.375 +05:30 [Fatal] Sequence contains no elements +2017-12-19 12:50:15.376 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 12:50:15.944 +05:30 [Fatal] Sequence contains no elements +2017-12-19 12:50:15.945 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 12:50:19.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 12:50:19.507 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 12:50:19.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 12:50:19.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 12:50:19.509 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10565.5757ms +2017-12-19 12:50:19.526 +05:30 [Information] Request finished in 10586.9478ms 200 application/json; charset=utf-8 +2017-12-19 12:50:19.526 +05:30 [Debug] Connection id ""0HLA6JFH20CPK"" completed keep alive response. +2017-12-19 12:50:19.561 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=500287 +2017-12-19 12:50:19.562 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-19 12:50:19.563 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-19 12:50:21.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 12:50:25.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-19 12:50:25.762 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-19 12:50:25.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 6199.0754ms +2017-12-19 12:50:25.766 +05:30 [Information] Request finished in 6204.9892ms 200 +2017-12-19 12:50:25.767 +05:30 [Debug] Connection id ""0HLA6JFH20CPK"" completed keep alive response. +2017-12-19 12:52:32.013 +05:30 [Debug] Connection id ""0HLA6JFH20CPK"" received FIN. +2017-12-19 12:52:32.013 +05:30 [Debug] Connection id ""0HLA6JFH20CPK"" disconnecting. +2017-12-19 12:52:32.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPK"" sending FIN. +2017-12-19 12:52:32.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPK"" sent FIN with status "0". +2017-12-19 12:52:32.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPK"" stopped. +2017-12-19 13:16:24.141 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" started. +2017-12-19 13:16:24.143 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 13:16:24.143 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 13:16:24.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 13:16:27.200 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 13:16:29.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:29.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:29.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:29.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4985.3639ms +2017-12-19 13:16:29.134 +05:30 [Information] Request finished in 4991.4407ms 200 application/json; charset=utf-8 +2017-12-19 13:16:29.135 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" completed keep alive response. +2017-12-19 13:16:29.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500287&groupId=1152477 +2017-12-19 13:16:29.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 13:16:29.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 13:16:31.018 +05:30 [Debug] Connection id ""0HLA6JFH20CPM"" started. +2017-12-19 13:16:31.023 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUser?Id=500287 +2017-12-19 13:16:31.023 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUser"'. +2017-12-19 13:16:31.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" +2017-12-19 13:16:32.185 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500287", "1152477"]) - ModelState is Valid +2017-12-19 13:16:33.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:33.747 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:33.748 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:33.750 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4604.6749ms +2017-12-19 13:16:33.755 +05:30 [Information] Request finished in 4611.4365ms 200 application/json; charset=utf-8 +2017-12-19 13:16:33.755 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" completed keep alive response. +2017-12-19 13:16:34.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:34.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:34.687 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:34.687 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:34.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:34.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" in 3664.4247ms +2017-12-19 13:16:34.724 +05:30 [Information] Request finished in 3701.4252ms 200 application/json; charset=utf-8 +2017-12-19 13:16:34.724 +05:30 [Debug] Connection id ""0HLA6JFH20CPM"" completed keep alive response. +2017-12-19 13:16:34.727 +05:30 [Debug] Connection id ""0HLA6JFH20CPM"" received FIN. +2017-12-19 13:16:34.728 +05:30 [Debug] Connection id ""0HLA6JFH20CPM"" disconnecting. +2017-12-19 13:16:34.729 +05:30 [Information] Connection id ""0HLA6JFH20CPM"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-19 13:16:34.730 +05:30 [Debug] Connection id ""0HLA6JFH20CPM"" sending FIN. +2017-12-19 13:16:34.731 +05:30 [Debug] Connection id ""0HLA6JFH20CPM"" sent FIN with status "0". +2017-12-19 13:16:34.733 +05:30 [Debug] Connection id ""0HLA6JFH20CPM"" stopped. +2017-12-19 13:16:36.220 +05:30 [Debug] Connection id ""0HLA6JFH20CPN"" started. +2017-12-19 13:16:36.221 +05:30 [Debug] Connection id ""0HLA6JFH20CPP"" started. +2017-12-19 13:16:36.221 +05:30 [Debug] Connection id ""0HLA6JFH20CPO"" started. +2017-12-19 13:16:36.224 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500287 +2017-12-19 13:16:36.226 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 13:16:36.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 13:16:36.229 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500287 +2017-12-19 13:16:36.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 13:16:36.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 13:16:36.287 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152477 +2017-12-19 13:16:36.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 13:16:36.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 13:16:36.319 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500287 +2017-12-19 13:16:36.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 13:16:36.321 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 13:16:36.364 +05:30 [Debug] Connection id ""0HLA6JFH20CPQ"" started. +2017-12-19 13:16:36.366 +05:30 [Debug] Connection id ""0HLA6JFH20CPR"" started. +2017-12-19 13:16:37.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500287 +2017-12-19 13:16:37.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 13:16:37.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 13:16:38.045 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152477&userId=500287 +2017-12-19 13:16:38.046 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 13:16:38.046 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 13:16:40.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 13:16:41.118 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:41.223 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:41.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:41.292 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 13:16:41.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:41.292 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:41.293 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:41.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:41.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:41.321 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3273.1726ms +2017-12-19 13:16:41.323 +05:30 [Information] Request finished in 3279.1943ms 200 application/json; charset=utf-8 +2017-12-19 13:16:41.323 +05:30 [Debug] Connection id ""0HLA6JFH20CPR"" completed keep alive response. +2017-12-19 13:16:41.331 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=500287&skip=0&count=10 +2017-12-19 13:16:41.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-19 13:16:41.332 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-19 13:16:41.807 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:41.807 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:41.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:41.808 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:41.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5488.6396ms +2017-12-19 13:16:41.815 +05:30 [Information] Request finished in 5590.8634ms 200 application/json; charset=utf-8 +2017-12-19 13:16:41.816 +05:30 [Debug] Connection id ""0HLA6JFH20CPN"" completed keep alive response. +2017-12-19 13:16:41.822 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUser?Id=500287 +2017-12-19 13:16:41.824 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUser"'. +2017-12-19 13:16:41.824 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" +2017-12-19 13:16:43.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:43.168 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:43.169 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:43.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:43.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6944.8873ms +2017-12-19 13:16:43.177 +05:30 [Information] Request finished in 6958.6148ms 200 application/json; charset=utf-8 +2017-12-19 13:16:43.178 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" completed keep alive response. +2017-12-19 13:16:43.182 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetPrimaryFacebookAcc?userId=500287&groupId=1152477 +2017-12-19 13:16:43.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetPrimaryFacebookAcc"'. +2017-12-19 13:16:43.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetPrimaryFacebookAcc (Api.Socioboard)" +2017-12-19 13:16:43.261 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:43.261 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:43.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:43.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:43.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6976.2135ms +2017-12-19 13:16:43.268 +05:30 [Information] Request finished in 7042.0883ms 200 application/json; charset=utf-8 +2017-12-19 13:16:43.269 +05:30 [Debug] Connection id ""0HLA6JFH20CPO"" completed keep alive response. +2017-12-19 13:16:43.275 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetPrimaryGoogleAcc?userId=500287&groupId=1152477 +2017-12-19 13:16:43.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetPrimaryGoogleAcc"'. +2017-12-19 13:16:43.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetPrimaryGoogleAcc (Api.Socioboard)" +2017-12-19 13:16:43.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["500287", "0", "10"]) - ModelState is Valid +2017-12-19 13:16:43.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:43.673 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:43.674 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:43.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:43.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6634.6047ms +2017-12-19 13:16:43.678 +05:30 [Information] Request finished in 6638.4416ms 200 application/json; charset=utf-8 +2017-12-19 13:16:43.679 +05:30 [Debug] Connection id ""0HLA6JFH20CPQ"" completed keep alive response. +2017-12-19 13:16:43.686 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGplusProfilesOnly?groupId=1152477 +2017-12-19 13:16:43.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGplusProfilesOnly"'. +2017-12-19 13:16:43.688 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGplusProfilesOnly (Api.Socioboard)" +2017-12-19 13:16:43.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:43.717 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:43.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:43.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:43.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7485.1386ms +2017-12-19 13:16:43.723 +05:30 [Information] Request finished in 7499.9024ms 200 application/json; charset=utf-8 +2017-12-19 13:16:43.724 +05:30 [Debug] Connection id ""0HLA6JFH20CPP"" completed keep alive response. +2017-12-19 13:16:43.732 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetPrimaryUserDeatils?userId=500287 +2017-12-19 13:16:43.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetPrimaryUserDeatils"'. +2017-12-19 13:16:43.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetPrimaryUserDeatils (Api.Socioboard)" +2017-12-19 13:16:44.542 +05:30 [Fatal] Sequence contains no elements +2017-12-19 13:16:44.543 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 13:16:44.862 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:45.069 +05:30 [Fatal] Sequence contains no elements +2017-12-19 13:16:45.071 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 13:16:45.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetPrimaryFacebookAcc (Api.Socioboard)" with arguments (["500287", "1152477"]) - ModelState is Valid +2017-12-19 13:16:45.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:45.382 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:45.382 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:45.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:45.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" in 3558.8296ms +2017-12-19 13:16:45.387 +05:30 [Information] Request finished in 3564.768ms 200 application/json; charset=utf-8 +2017-12-19 13:16:45.387 +05:30 [Debug] Connection id ""0HLA6JFH20CPN"" completed keep alive response. +2017-12-19 13:16:45.393 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1152477 +2017-12-19 13:16:45.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-12-19 13:16:45.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-12-19 13:16:45.616 +05:30 [Fatal] Sequence contains no elements +2017-12-19 13:16:45.617 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 13:16:46.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetPrimaryGoogleAcc (Api.Socioboard)" with arguments (["500287", "1152477"]) - ModelState is Valid +2017-12-19 13:16:46.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfilesOnly (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 13:16:46.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetPrimaryUserDeatils (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:47.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetPrimaryUserDeatils (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:47.296 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:47.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:47.299 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:47.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetPrimaryUserDeatils (Api.Socioboard)" in 3564.5798ms +2017-12-19 13:16:47.304 +05:30 [Information] Request finished in 3571.4475ms 200 application/json; charset=utf-8 +2017-12-19 13:16:47.305 +05:30 [Debug] Connection id ""0HLA6JFH20CPP"" completed keep alive response. +2017-12-19 13:16:47.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=500287 +2017-12-19 13:16:47.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-12-19 13:16:47.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-12-19 13:16:48.102 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetPrimaryGoogleAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:48.103 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:48.103 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:48.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:48.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetPrimaryGoogleAcc (Api.Socioboard)" in 4845.2154ms +2017-12-19 13:16:48.127 +05:30 [Information] Request finished in 4852.7041ms 200 application/json; charset=utf-8 +2017-12-19 13:16:48.128 +05:30 [Debug] Connection id ""0HLA6JFH20CPO"" completed keep alive response. +2017-12-19 13:16:48.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetPrimaryFacebookAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:48.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:48.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:48.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:48.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetPrimaryFacebookAcc (Api.Socioboard)" in 4948.5388ms +2017-12-19 13:16:48.156 +05:30 [Information] Request finished in 4954.0032ms 200 application/json; charset=utf-8 +2017-12-19 13:16:48.157 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" completed keep alive response. +2017-12-19 13:16:48.156 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUser?Id=500287 +2017-12-19 13:16:48.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUser"'. +2017-12-19 13:16:48.157 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" +2017-12-19 13:16:48.470 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 13:16:48.517 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:48.517 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:48.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:48.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:48.545 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGplusProfilesOnly (Api.Socioboard)" in 4856.8729ms +2017-12-19 13:16:48.547 +05:30 [Information] Request finished in 4863.4404ms 200 application/json; charset=utf-8 +2017-12-19 13:16:48.548 +05:30 [Debug] Connection id ""0HLA6JFH20CPQ"" completed keep alive response. +2017-12-19 13:16:49.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:49.407 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:49.407 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:49.409 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:49.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 8077.1515ms +2017-12-19 13:16:49.415 +05:30 [Information] Request finished in 8082.6153ms 200 application/json; charset=utf-8 +2017-12-19 13:16:49.416 +05:30 [Debug] Connection id ""0HLA6JFH20CPR"" completed keep alive response. +2017-12-19 13:16:49.471 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=500287 +2017-12-19 13:16:49.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-19 13:16:49.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-19 13:16:50.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:50.366 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:50.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:50.780 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:50.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:50.781 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:50.782 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" in 2623.0473ms +2017-12-19 13:16:50.784 +05:30 [Information] Request finished in 2647.7932ms 200 application/json; charset=utf-8 +2017-12-19 13:16:50.784 +05:30 [Debug] Connection id ""0HLA6JFH20CPO"" completed keep alive response. +2017-12-19 13:16:50.785 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUser?Id=500287 +2017-12-19 13:16:50.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUser"'. +2017-12-19 13:16:50.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" +2017-12-19 13:16:50.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:50.900 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:50.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:50.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:50.917 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3602.0061ms +2017-12-19 13:16:50.920 +05:30 [Information] Request finished in 3611.1973ms 200 application/json; charset=utf-8 +2017-12-19 13:16:50.921 +05:30 [Debug] Connection id ""0HLA6JFH20CPP"" completed keep alive response. +2017-12-19 13:16:51.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:51.219 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:51.220 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:51.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:51.224 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 5827.3533ms +2017-12-19 13:16:51.227 +05:30 [Information] Request finished in 5835.5026ms 200 application/json; charset=utf-8 +2017-12-19 13:16:51.228 +05:30 [Debug] Connection id ""0HLA6JFH20CPN"" completed keep alive response. +2017-12-19 13:16:52.523 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:53.050 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-19 13:16:53.052 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-19 13:16:53.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3580.8349ms +2017-12-19 13:16:53.057 +05:30 [Information] Request finished in 3585.5274ms 200 +2017-12-19 13:16:53.057 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" completed keep alive response. +2017-12-19 13:16:53.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 13:16:54.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 13:16:54.484 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 13:16:54.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 13:16:54.485 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 13:16:54.486 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" in 3699.0743ms +2017-12-19 13:16:54.489 +05:30 [Information] Request finished in 3703.638ms 200 application/json; charset=utf-8 +2017-12-19 13:16:54.490 +05:30 [Debug] Connection id ""0HLA6JFH20CPQ"" completed keep alive response. +2017-12-19 13:18:12.013 +05:30 [Debug] Connection id ""0HLA6JFH20CPR"" received FIN. +2017-12-19 13:18:12.013 +05:30 [Debug] Connection id ""0HLA6JFH20CPR"" disconnecting. +2017-12-19 13:18:12.013 +05:30 [Debug] Connection id ""0HLA6JFH20CPR"" sending FIN. +2017-12-19 13:18:12.013 +05:30 [Debug] Connection id ""0HLA6JFH20CPO"" received FIN. +2017-12-19 13:18:12.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPR"" sent FIN with status "0". +2017-12-19 13:18:12.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPR"" stopped. +2017-12-19 13:18:12.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPP"" received FIN. +2017-12-19 13:18:12.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPQ"" received FIN. +2017-12-19 13:18:12.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPN"" received FIN. +2017-12-19 13:18:12.014 +05:30 [Debug] Connection id ""0HLA6JFH20CPO"" disconnecting. +2017-12-19 13:18:12.015 +05:30 [Debug] Connection id ""0HLA6JFH20CPP"" disconnecting. +2017-12-19 13:18:12.015 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" received FIN. +2017-12-19 13:18:12.015 +05:30 [Debug] Connection id ""0HLA6JFH20CPN"" disconnecting. +2017-12-19 13:18:12.015 +05:30 [Debug] Connection id ""0HLA6JFH20CPO"" sending FIN. +2017-12-19 13:18:12.016 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" disconnecting. +2017-12-19 13:18:12.015 +05:30 [Debug] Connection id ""0HLA6JFH20CPQ"" disconnecting. +2017-12-19 13:18:12.016 +05:30 [Debug] Connection id ""0HLA6JFH20CPP"" sending FIN. +2017-12-19 13:18:12.016 +05:30 [Debug] Connection id ""0HLA6JFH20CPO"" sent FIN with status "0". +2017-12-19 13:18:12.017 +05:30 [Debug] Connection id ""0HLA6JFH20CPN"" sending FIN. +2017-12-19 13:18:12.017 +05:30 [Debug] Connection id ""0HLA6JFH20CPO"" stopped. +2017-12-19 13:18:12.018 +05:30 [Debug] Connection id ""0HLA6JFH20CPQ"" sending FIN. +2017-12-19 13:18:12.017 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" sending FIN. +2017-12-19 13:18:12.018 +05:30 [Debug] Connection id ""0HLA6JFH20CPQ"" sent FIN with status "0". +2017-12-19 13:18:12.018 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" sent FIN with status "0". +2017-12-19 13:18:12.018 +05:30 [Debug] Connection id ""0HLA6JFH20CPQ"" stopped. +2017-12-19 13:18:12.018 +05:30 [Debug] Connection id ""0HLA6JFH20CPL"" stopped. +2017-12-19 13:18:12.019 +05:30 [Debug] Connection id ""0HLA6JFH20CPN"" sent FIN with status "0". +2017-12-19 13:18:12.019 +05:30 [Debug] Connection id ""0HLA6JFH20CPN"" stopped. +2017-12-19 13:18:12.019 +05:30 [Debug] Connection id ""0HLA6JFH20CPP"" sent FIN with status "0". +2017-12-19 13:18:12.019 +05:30 [Debug] Connection id ""0HLA6JFH20CPP"" stopped. +2017-12-19 16:22:09.992 +05:30 [Debug] Hosting starting +2017-12-19 16:22:10.231 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" started. +2017-12-19 16:22:10.249 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I9"" started. +2017-12-19 16:22:10.266 +05:30 [Debug] Hosting started +2017-12-19 16:22:10.399 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 16:22:10.399 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 16:22:10.481 +05:30 [Information] Request finished in 109.1647ms 200 +2017-12-19 16:22:10.545 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" completed keep alive response. +2017-12-19 16:22:11.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 16:22:11.618 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"37a753c6-6a0e-4f94-9eac-83cdfee8fb7e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 16:22:11.858 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 16:22:12.040 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 16:22:12.043 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 16:22:12.108 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:22:12.112 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:22:12.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:22:12.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1030.088ms +2017-12-19 16:22:13.026 +05:30 [Information] Request finished in 2675.8875ms 200 application/json; charset=utf-8 +2017-12-19 16:22:13.030 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I9"" completed keep alive response. +2017-12-19 16:22:13.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-19 16:22:13.093 +05:30 [Debug] Request did not match any routes. +2017-12-19 16:22:13.115 +05:30 [Debug] The request path "" does not match the path filter +2017-12-19 16:22:13.118 +05:30 [Information] Request finished in 27.851ms 404 +2017-12-19 16:22:13.118 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" completed keep alive response. +2017-12-19 16:22:14.110 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:22:14.111 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:22:14.114 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:22:17.685 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:22:24.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:22:24.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:22:24.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:22:24.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10871.748ms +2017-12-19 16:22:24.996 +05:30 [Information] Request finished in 10886.0251ms 200 application/json; charset=utf-8 +2017-12-19 16:22:24.997 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I9"" completed keep alive response. +2017-12-19 16:22:39.065 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:22:39.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:22:39.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:22:42.115 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:22:42.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:22:42.670 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:22:42.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:22:42.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3602.5778ms +2017-12-19 16:22:42.673 +05:30 [Information] Request finished in 3606.8078ms 200 application/json; charset=utf-8 +2017-12-19 16:22:42.673 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" completed keep alive response. +2017-12-19 16:22:42.723 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:22:42.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:22:42.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:22:45.751 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:22:46.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:22:46.305 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:22:46.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:22:46.307 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3582.1558ms +2017-12-19 16:22:46.309 +05:30 [Information] Request finished in 3598.535ms 200 application/json; charset=utf-8 +2017-12-19 16:22:46.309 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I9"" completed keep alive response. +2017-12-19 16:22:46.371 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:22:46.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:22:46.372 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:22:49.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:22:49.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:22:49.976 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:22:49.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:22:49.979 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3604.9669ms +2017-12-19 16:22:49.982 +05:30 [Information] Request finished in 3614.9136ms 200 application/json; charset=utf-8 +2017-12-19 16:22:49.982 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" completed keep alive response. +2017-12-19 16:24:01.081 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I9"" received FIN. +2017-12-19 16:24:01.081 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" received FIN. +2017-12-19 16:24:01.082 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" disconnecting. +2017-12-19 16:24:01.082 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I9"" disconnecting. +2017-12-19 16:24:01.083 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" sending FIN. +2017-12-19 16:24:01.085 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I9"" sending FIN. +2017-12-19 16:24:01.089 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I9"" sent FIN with status "0". +2017-12-19 16:24:01.095 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I9"" stopped. +2017-12-19 16:24:01.096 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" sent FIN with status "0". +2017-12-19 16:24:01.096 +05:30 [Debug] Connection id ""0HLA6PQ6VO7I8"" stopped. +2017-12-19 16:24:04.566 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IA"" started. +2017-12-19 16:24:04.570 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:24:04.570 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:24:04.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:24:06.750 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:24:09.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:24:09.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:24:09.471 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:24:09.472 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4900.194ms +2017-12-19 16:24:09.474 +05:30 [Information] Request finished in 4907.6258ms 200 application/json; charset=utf-8 +2017-12-19 16:24:09.475 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IA"" completed keep alive response. +2017-12-19 16:25:34.530 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IA"" received FIN. +2017-12-19 16:25:34.530 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" started. +2017-12-19 16:25:34.531 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IA"" disconnecting. +2017-12-19 16:25:34.531 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IA"" sending FIN. +2017-12-19 16:25:34.533 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IA"" sent FIN with status "0". +2017-12-19 16:25:34.534 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:25:34.534 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IA"" stopped. +2017-12-19 16:25:34.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:25:34.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:25:37.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:25:38.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:25:38.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:25:38.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:25:38.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3610.2948ms +2017-12-19 16:25:38.149 +05:30 [Information] Request finished in 3616.2699ms 200 application/json; charset=utf-8 +2017-12-19 16:25:38.149 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:25:38.171 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 56 +2017-12-19 16:25:38.172 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-19 16:25:38.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-19 16:25:41.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-19 16:25:43.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:25:43.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:25:43.691 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:25:43.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5657.496ms +2017-12-19 16:25:43.833 +05:30 [Information] Request finished in 5662.6473ms 200 application/json; charset=utf-8 +2017-12-19 16:25:43.834 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:25:44.125 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:25:44.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:25:44.126 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:25:47.176 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:25:47.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:25:47.730 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:25:47.731 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:25:47.732 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3606.0054ms +2017-12-19 16:25:47.734 +05:30 [Information] Request finished in 3610.339ms 200 application/json; charset=utf-8 +2017-12-19 16:25:47.734 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:25:47.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500287&groupId= +2017-12-19 16:25:47.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 16:25:47.781 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 16:25:50.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500287", ""]) - ModelState is Valid +2017-12-19 16:25:52.752 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:25:52.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:25:52.753 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:25:52.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5027.8836ms +2017-12-19 16:25:52.812 +05:30 [Information] Request finished in 5033.9545ms 200 application/json; charset=utf-8 +2017-12-19 16:25:52.812 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:25:54.392 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" started. +2017-12-19 16:25:54.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500287 +2017-12-19 16:25:54.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 16:25:54.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 16:25:54.426 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152477&userId=500287 +2017-12-19 16:25:54.426 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 16:25:54.427 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 16:25:54.560 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" started. +2017-12-19 16:25:54.565 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" started. +2017-12-19 16:25:54.565 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" started. +2017-12-19 16:25:54.566 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" started. +2017-12-19 16:25:54.665 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500287 +2017-12-19 16:25:54.669 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500287 +2017-12-19 16:25:54.669 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 16:25:54.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 16:25:54.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 16:25:54.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 16:25:54.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500287 +2017-12-19 16:25:54.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 16:25:54.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 16:25:54.702 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152477 +2017-12-19 16:25:54.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 16:25:54.704 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 16:25:57.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:25:57.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 16:25:57.321 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:25:57.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:25:57.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 16:25:57.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:25:57.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:25:57.895 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:25:57.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:25:57.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:25:57.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3234.7569ms +2017-12-19 16:25:57.910 +05:30 [Information] Request finished in 3244.8588ms 200 application/json; charset=utf-8 +2017-12-19 16:25:57.911 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" completed keep alive response. +2017-12-19 16:25:57.920 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152477 +2017-12-19 16:25:57.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 16:25:57.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 16:25:58.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:25:58.558 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:25:58.558 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:25:58.559 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:25:58.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3863.3154ms +2017-12-19 16:25:58.571 +05:30 [Information] Request finished in 3911.1676ms 200 application/json; charset=utf-8 +2017-12-19 16:25:58.572 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" completed keep alive response. +2017-12-19 16:25:59.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:25:59.758 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:25:59.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:25:59.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:25:59.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5062.9173ms +2017-12-19 16:25:59.766 +05:30 [Information] Request finished in 5097.9032ms 200 application/json; charset=utf-8 +2017-12-19 16:25:59.767 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" completed keep alive response. +2017-12-19 16:26:00.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:00.049 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:00.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:00.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:00.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5643.5433ms +2017-12-19 16:26:00.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:00.055 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:00.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:00.056 +05:30 [Information] Request finished in 5676.6616ms 200 application/json; charset=utf-8 +2017-12-19 16:26:00.057 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:26:00.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:00.063 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5630.7665ms +2017-12-19 16:26:00.065 +05:30 [Information] Request finished in 5671.4108ms 200 application/json; charset=utf-8 +2017-12-19 16:26:00.065 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" completed keep alive response. +2017-12-19 16:26:00.665 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:00.665 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:00.665 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:00.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:00.668 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5994.404ms +2017-12-19 16:26:00.670 +05:30 [Information] Request finished in 6101.1053ms 200 application/json; charset=utf-8 +2017-12-19 16:26:00.670 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" completed keep alive response. +2017-12-19 16:26:00.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 16:26:03.396 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:03.396 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:03.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:03.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:03.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5536.9089ms +2017-12-19 16:26:03.462 +05:30 [Information] Request finished in 5545.7577ms 200 application/json; charset=utf-8 +2017-12-19 16:26:03.463 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" completed keep alive response. +2017-12-19 16:26:32.300 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1576509852421292&daysCount=90 +2017-12-19 16:26:32.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-19 16:26:32.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-19 16:26:34.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1576509852421292", "90"]) - ModelState is Valid +2017-12-19 16:26:38.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:38.955 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:38.955 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:38.956 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:39.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 6685.278ms +2017-12-19 16:26:39.003 +05:30 [Information] Request finished in 6703.0409ms 200 application/json; charset=utf-8 +2017-12-19 16:26:39.003 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" completed keep alive response. +2017-12-19 16:26:39.040 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=500287 +2017-12-19 16:26:39.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-19 16:26:39.046 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-19 16:26:39.052 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=500287 +2017-12-19 16:26:39.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-19 16:26:39.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-19 16:26:39.063 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500287&days=90 +2017-12-19 16:26:39.064 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-19 16:26:39.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-19 16:26:39.070 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1576509852421292&daysCount=90 +2017-12-19 16:26:39.071 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-19 16:26:39.073 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-19 16:26:41.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500287", "90"]) - ModelState is Valid +2017-12-19 16:26:42.214 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:26:42.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:26:42.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1576509852421292", "90"]) - ModelState is Valid +2017-12-19 16:26:43.932 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:43.932 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:43.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:43.933 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:43.939 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4871.8152ms +2017-12-19 16:26:43.941 +05:30 [Information] Request finished in 4925.8182ms 200 application/json; charset=utf-8 +2017-12-19 16:26:43.942 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:26:44.501 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:44.502 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:44.502 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:44.505 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:44.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5460.8825ms +2017-12-19 16:26:44.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:44.525 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:44.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:44.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:44.529 +05:30 [Information] Request finished in 5507.645ms 200 application/json; charset=utf-8 +2017-12-19 16:26:44.529 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" completed keep alive response. +2017-12-19 16:26:44.649 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5509.9785ms +2017-12-19 16:26:44.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1576509852421292&daysCount=90 +2017-12-19 16:26:44.681 +05:30 [Information] Request finished in 5640.5885ms 200 application/json; charset=utf-8 +2017-12-19 16:26:44.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-19 16:26:44.682 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" completed keep alive response. +2017-12-19 16:26:44.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-19 16:26:47.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:47.034 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:47.034 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:47.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:47.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 7989.7333ms +2017-12-19 16:26:47.056 +05:30 [Information] Request finished in 8039.6077ms 200 application/json; charset=utf-8 +2017-12-19 16:26:47.057 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" completed keep alive response. +2017-12-19 16:26:47.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1576509852421292", "90"]) - ModelState is Valid +2017-12-19 16:26:48.182 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:26:48.183 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:26:48.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:26:48.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:26:48.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3502.6552ms +2017-12-19 16:26:48.201 +05:30 [Information] Request finished in 3564.5969ms 200 application/json; charset=utf-8 +2017-12-19 16:26:48.202 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" completed keep alive response. +2017-12-19 16:27:02.412 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:27:02.412 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:27:02.413 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:27:05.470 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:27:05.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:05.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:05.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:05.972 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3558.9326ms +2017-12-19 16:27:05.974 +05:30 [Information] Request finished in 3562.2212ms 200 application/json; charset=utf-8 +2017-12-19 16:27:05.975 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" completed keep alive response. +2017-12-19 16:27:05.982 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500287&groupId=1152477 +2017-12-19 16:27:05.983 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 16:27:05.983 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 16:27:09.018 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500287", "1152477"]) - ModelState is Valid +2017-12-19 16:27:10.638 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:10.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:10.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:10.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4656.8019ms +2017-12-19 16:27:10.646 +05:30 [Information] Request finished in 4663.1471ms 200 application/json; charset=utf-8 +2017-12-19 16:27:10.648 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:27:13.845 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500287 +2017-12-19 16:27:13.845 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 16:27:13.845 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 16:27:13.906 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500287 +2017-12-19 16:27:13.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 16:27:13.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 16:27:13.945 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152477 +2017-12-19 16:27:13.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 16:27:13.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 16:27:13.969 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500287 +2017-12-19 16:27:13.970 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 16:27:13.971 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 16:27:15.255 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152477&userId=500287 +2017-12-19 16:27:15.255 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 16:27:15.255 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 16:27:15.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500287 +2017-12-19 16:27:15.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 16:27:15.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 16:27:17.190 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 16:27:17.267 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:27:17.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:27:17.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:17.816 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:17.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:17.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:17.819 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3910.4575ms +2017-12-19 16:27:17.822 +05:30 [Information] Request finished in 3976.7456ms 200 application/json; charset=utf-8 +2017-12-19 16:27:17.823 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" completed keep alive response. +2017-12-19 16:27:17.830 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1576509852421292&daysCount=90 +2017-12-19 16:27:17.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-19 16:27:17.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-19 16:27:17.872 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:17.872 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:17.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:17.875 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:17.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3917.5836ms +2017-12-19 16:27:17.880 +05:30 [Information] Request finished in 4069.9399ms 200 application/json; charset=utf-8 +2017-12-19 16:27:17.881 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" completed keep alive response. +2017-12-19 16:27:18.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:18.332 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:18.332 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:18.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:18.335 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4362.9625ms +2017-12-19 16:27:18.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:27:18.439 +05:30 [Information] Request finished in 4546.7031ms 200 application/json; charset=utf-8 +2017-12-19 16:27:18.439 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" completed keep alive response. +2017-12-19 16:27:18.443 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152477"]) - ModelState is Valid +2017-12-19 16:27:19.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:19.484 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:19.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:19.485 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:19.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4202.3459ms +2017-12-19 16:27:19.490 +05:30 [Information] Request finished in 4231.1897ms 200 application/json; charset=utf-8 +2017-12-19 16:27:19.491 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:27:19.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:19.517 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:19.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:19.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:19.522 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4264.3487ms +2017-12-19 16:27:19.525 +05:30 [Information] Request finished in 4357.5865ms 200 application/json; charset=utf-8 +2017-12-19 16:27:19.525 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" completed keep alive response. +2017-12-19 16:27:20.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1576509852421292", "90"]) - ModelState is Valid +2017-12-19 16:27:21.062 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:27:21.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:21.194 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:21.194 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:21.195 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:21.197 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3323.5501ms +2017-12-19 16:27:21.199 +05:30 [Information] Request finished in 3369.5658ms 200 application/json; charset=utf-8 +2017-12-19 16:27:21.199 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" completed keep alive response. +2017-12-19 16:27:21.233 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500287&days=90 +2017-12-19 16:27:21.233 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-19 16:27:21.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-19 16:27:21.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=500287 +2017-12-19 16:27:21.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-19 16:27:21.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-19 16:27:21.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=500287 +2017-12-19 16:27:21.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-19 16:27:21.252 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-19 16:27:21.252 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1576509852421292&daysCount=90 +2017-12-19 16:27:21.252 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-19 16:27:21.253 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1576509852421292&daysCount=90 +2017-12-19 16:27:21.255 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-19 16:27:21.256 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-19 16:27:21.256 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-19 16:27:21.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:21.653 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:21.653 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:21.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:21.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7809.1286ms +2017-12-19 16:27:21.661 +05:30 [Information] Request finished in 7852.4435ms 200 application/json; charset=utf-8 +2017-12-19 16:27:21.662 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" completed keep alive response. +2017-12-19 16:27:24.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500287", "90"]) - ModelState is Valid +2017-12-19 16:27:24.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:27:24.430 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1576509852421292", "90"]) - ModelState is Valid +2017-12-19 16:27:24.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["500287"]) - ModelState is Valid +2017-12-19 16:27:25.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:25.172 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:25.173 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:25.180 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:25.184 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3946.9449ms +2017-12-19 16:27:25.187 +05:30 [Information] Request finished in 3954.29ms 200 application/json; charset=utf-8 +2017-12-19 16:27:25.187 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" completed keep alive response. +2017-12-19 16:27:25.417 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:25.418 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:25.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:25.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:25.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4182.4804ms +2017-12-19 16:27:25.434 +05:30 [Information] Request finished in 4200.2165ms 200 application/json; charset=utf-8 +2017-12-19 16:27:25.435 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" completed keep alive response. +2017-12-19 16:27:26.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:26.032 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:26.032 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:26.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:26.036 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4779.0595ms +2017-12-19 16:27:26.042 +05:30 [Information] Request finished in 4787.7736ms 200 application/json; charset=utf-8 +2017-12-19 16:27:26.042 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" completed keep alive response. +2017-12-19 16:27:27.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:27.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:27.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:27.522 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:27.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 6272.0305ms +2017-12-19 16:27:27.533 +05:30 [Information] Request finished in 6282.3246ms 200 application/json; charset=utf-8 +2017-12-19 16:27:27.533 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:27:28.470 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1576509852421292", "90"]) - ModelState is Valid +2017-12-19 16:27:28.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:28.892 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:27:28.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:28.893 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:28.901 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 7641.2195ms +2017-12-19 16:27:28.906 +05:30 [Information] Request finished in 7653.9574ms 200 application/json; charset=utf-8 +2017-12-19 16:27:28.907 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" completed keep alive response. +2017-12-19 16:27:42.520 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:27:42.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:27:42.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:27:45.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:27:46.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:46.054 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:46.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:46.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3535.2609ms +2017-12-19 16:27:46.061 +05:30 [Information] Request finished in 3542.0536ms 200 application/json; charset=utf-8 +2017-12-19 16:27:46.062 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" completed keep alive response. +2017-12-19 16:27:46.626 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:27:46.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:27:46.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:27:47.941 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:27:47.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:27:47.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:27:49.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:27:50.239 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:50.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:50.240 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:50.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3611.9839ms +2017-12-19 16:27:50.245 +05:30 [Information] Request finished in 3620.6165ms 200 application/json; charset=utf-8 +2017-12-19 16:27:50.246 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" completed keep alive response. +2017-12-19 16:27:50.283 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:27:50.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:27:50.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:27:50.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:27:51.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:51.490 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:51.492 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:51.492 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3548.1431ms +2017-12-19 16:27:51.494 +05:30 [Information] Request finished in 3553.1055ms 200 application/json; charset=utf-8 +2017-12-19 16:27:51.494 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" completed keep alive response. +2017-12-19 16:27:53.346 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:27:53.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:53.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:53.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:53.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3617.2511ms +2017-12-19 16:27:53.907 +05:30 [Information] Request finished in 3623.3801ms 200 application/json; charset=utf-8 +2017-12-19 16:27:53.907 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" completed keep alive response. +2017-12-19 16:27:53.916 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:27:53.917 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:27:53.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:27:56.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:27:57.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:27:57.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:27:57.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:27:57.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3554.5766ms +2017-12-19 16:27:57.477 +05:30 [Information] Request finished in 3561.1236ms 200 application/json; charset=utf-8 +2017-12-19 16:27:57.477 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:28:03.813 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:28:03.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:28:03.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:28:06.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:28:07.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:07.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:07.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:07.363 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3547.8865ms +2017-12-19 16:28:07.367 +05:30 [Information] Request finished in 3552.8909ms 200 application/json; charset=utf-8 +2017-12-19 16:28:07.367 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" completed keep alive response. +2017-12-19 16:28:07.379 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-19 16:28:07.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-19 16:28:07.381 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-19 16:28:10.410 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-19 16:28:12.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:12.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:12.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:12.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4655.1274ms +2017-12-19 16:28:12.039 +05:30 [Information] Request finished in 4661.7603ms 200 application/json; charset=utf-8 +2017-12-19 16:28:12.040 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" completed keep alive response. +2017-12-19 16:28:12.082 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:28:12.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:28:12.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:28:15.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:28:15.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:15.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:15.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:15.672 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3587.2977ms +2017-12-19 16:28:15.680 +05:30 [Information] Request finished in 3592.7394ms 200 application/json; charset=utf-8 +2017-12-19 16:28:15.681 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" completed keep alive response. +2017-12-19 16:28:15.707 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-19 16:28:15.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 16:28:15.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 16:28:18.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-19 16:28:20.337 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:20.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:20.339 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:20.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4630.1492ms +2017-12-19 16:28:20.341 +05:30 [Information] Request finished in 4633.5908ms 200 application/json; charset=utf-8 +2017-12-19 16:28:20.342 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" completed keep alive response. +2017-12-19 16:28:21.254 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 16:28:21.255 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 16:28:21.256 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 16:28:21.263 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 16:28:21.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 16:28:21.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 16:28:21.292 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 16:28:21.293 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 16:28:21.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 16:28:21.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 16:28:21.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 16:28:21.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 16:28:22.211 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 16:28:22.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 16:28:22.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 16:28:23.212 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 16:28:23.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 16:28:23.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 16:28:26.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:28:26.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:28:26.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:28:26.392 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:28:26.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:28:26.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:28:26.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:26.887 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:26.887 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:26.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:26.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5632.0721ms +2017-12-19 16:28:26.893 +05:30 [Information] Request finished in 5659.5229ms 200 application/json; charset=utf-8 +2017-12-19 16:28:26.893 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:28:26.914 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 16:28:26.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 16:28:26.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 16:28:27.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:27.087 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:27.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:27.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:27.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5795.5223ms +2017-12-19 16:28:27.092 +05:30 [Information] Request finished in 5838.646ms 200 application/json; charset=utf-8 +2017-12-19 16:28:27.093 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" completed keep alive response. +2017-12-19 16:28:27.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:27.440 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:27.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:27.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:27.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6174.8131ms +2017-12-19 16:28:27.447 +05:30 [Information] Request finished in 6193.5311ms 200 application/json; charset=utf-8 +2017-12-19 16:28:27.447 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" completed keep alive response. +2017-12-19 16:28:27.454 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:27.454 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:27.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:27.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:27.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5243.0876ms +2017-12-19 16:28:27.463 +05:30 [Information] Request finished in 5249.722ms 200 application/json; charset=utf-8 +2017-12-19 16:28:27.464 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" completed keep alive response. +2017-12-19 16:28:28.191 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-19 16:28:28.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-19 16:28:28.191 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-19 16:28:28.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:28.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:28.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:28.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:28.907 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5692.2794ms +2017-12-19 16:28:28.911 +05:30 [Information] Request finished in 5698.8401ms 200 application/json; charset=utf-8 +2017-12-19 16:28:28.911 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" completed keep alive response. +2017-12-19 16:28:29.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:28:30.288 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-19 16:28:30.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:30.552 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:30.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:30.553 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:30.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 2361.3129ms +2017-12-19 16:28:30.556 +05:30 [Information] Request finished in 2365.6204ms 200 application/json; charset=utf-8 +2017-12-19 16:28:30.557 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" completed keep alive response. +2017-12-19 16:28:30.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-19 16:28:30.601 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-19 16:28:30.602 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-19 16:28:30.603 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-19 16:28:30.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-19 16:28:30.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-19 16:28:30.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-19 16:28:30.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-19 16:28:30.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-19 16:28:30.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-19 16:28:30.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-19 16:28:30.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-19 16:28:32.396 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:32.396 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:32.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:32.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:32.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5496.9765ms +2017-12-19 16:28:32.415 +05:30 [Information] Request finished in 5504.1816ms 200 application/json; charset=utf-8 +2017-12-19 16:28:32.415 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:28:32.421 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-19 16:28:32.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-19 16:28:32.421 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-19 16:28:32.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:28:33.450 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:33.451 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:33.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:33.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:33.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 2849.9271ms +2017-12-19 16:28:33.463 +05:30 [Information] Request finished in 2885.0579ms 200 application/json; charset=utf-8 +2017-12-19 16:28:33.463 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" completed keep alive response. +2017-12-19 16:28:33.738 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-19 16:28:33.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:28:33.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-19 16:28:33.787 +05:30 [Fatal] Sequence contains no elements +2017-12-19 16:28:33.840 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 16:28:34.458 +05:30 [Fatal] Sequence contains no elements +2017-12-19 16:28:34.459 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 16:28:34.531 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:34.531 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:34.531 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:34.532 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:34.534 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3908.0827ms +2017-12-19 16:28:34.536 +05:30 [Information] Request finished in 3958.482ms 200 application/json; charset=utf-8 +2017-12-19 16:28:34.536 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" completed keep alive response. +2017-12-19 16:28:34.716 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:34.716 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:34.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:34.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:34.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4114.9206ms +2017-12-19 16:28:34.722 +05:30 [Information] Request finished in 4120.565ms 200 application/json; charset=utf-8 +2017-12-19 16:28:34.723 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" completed keep alive response. +2017-12-19 16:28:36.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:36.433 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:36.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:36.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:36.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 5815.8634ms +2017-12-19 16:28:36.439 +05:30 [Information] Request finished in 5860.6264ms 200 application/json; charset=utf-8 +2017-12-19 16:28:36.440 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" completed keep alive response. +2017-12-19 16:28:39.628 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-19 16:28:40.048 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:40.048 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:40.048 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:40.049 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:40.055 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 7630.0972ms +2017-12-19 16:28:40.061 +05:30 [Information] Request finished in 7640.2131ms 200 application/json; charset=utf-8 +2017-12-19 16:28:40.061 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" completed keep alive response. +2017-12-19 16:28:49.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:28:49.715 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:28:49.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:28:49.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:28:49.734 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 28423.4289ms +2017-12-19 16:28:49.738 +05:30 [Information] Request finished in 28504.8814ms 200 application/json; charset=utf-8 +2017-12-19 16:28:49.739 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" completed keep alive response. +2017-12-19 16:29:55.868 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" received FIN. +2017-12-19 16:29:55.868 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" received FIN. +2017-12-19 16:29:55.868 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" received FIN. +2017-12-19 16:29:55.868 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" received FIN. +2017-12-19 16:29:55.868 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" received FIN. +2017-12-19 16:29:55.868 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" received FIN. +2017-12-19 16:29:55.868 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" disconnecting. +2017-12-19 16:29:55.869 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" started. +2017-12-19 16:29:55.869 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" disconnecting. +2017-12-19 16:29:55.869 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" sending FIN. +2017-12-19 16:29:55.869 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" disconnecting. +2017-12-19 16:29:55.869 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" sent FIN with status "0". +2017-12-19 16:29:55.869 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" disconnecting. +2017-12-19 16:29:55.869 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IE"" stopped. +2017-12-19 16:29:55.870 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" disconnecting. +2017-12-19 16:29:55.870 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" sending FIN. +2017-12-19 16:29:55.869 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" disconnecting. +2017-12-19 16:29:55.869 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" sending FIN. +2017-12-19 16:29:55.871 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" sending FIN. +2017-12-19 16:29:55.870 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" sending FIN. +2017-12-19 16:29:55.871 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:29:55.871 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" sending FIN. +2017-12-19 16:29:55.872 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:29:55.872 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" sent FIN with status "0". +2017-12-19 16:29:55.872 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:29:55.872 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IC"" stopped. +2017-12-19 16:29:55.872 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" sent FIN with status "0". +2017-12-19 16:29:55.873 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" sent FIN with status "0". +2017-12-19 16:29:55.874 +05:30 [Debug] Connection id ""0HLA6PQ6VO7ID"" stopped. +2017-12-19 16:29:55.875 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IF"" stopped. +2017-12-19 16:29:55.875 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" sent FIN with status "0". +2017-12-19 16:29:55.876 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IB"" stopped. +2017-12-19 16:29:55.876 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" sent FIN with status "0". +2017-12-19 16:29:55.876 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IG"" stopped. +2017-12-19 16:29:58.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:29:59.488 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:29:59.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:29:59.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:29:59.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3616.937ms +2017-12-19 16:29:59.494 +05:30 [Information] Request finished in 3623.251ms 200 application/json; charset=utf-8 +2017-12-19 16:29:59.494 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:30:00.206 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:30:00.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:30:00.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:30:03.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:30:03.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:30:03.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:30:03.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:30:03.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3553.8958ms +2017-12-19 16:30:03.764 +05:30 [Information] Request finished in 3618.5551ms 200 application/json; charset=utf-8 +2017-12-19 16:30:03.765 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:30:03.811 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:30:03.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:30:03.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:30:06.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:30:07.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:30:07.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:30:07.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:30:07.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3539.4952ms +2017-12-19 16:30:07.355 +05:30 [Information] Request finished in 3543.4705ms 200 application/json; charset=utf-8 +2017-12-19 16:30:07.356 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:30:07.367 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:30:07.367 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:30:07.368 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:30:09.492 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:30:10.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:30:10.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:30:10.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:30:10.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2676.6877ms +2017-12-19 16:30:10.048 +05:30 [Information] Request finished in 2680.8617ms 200 application/json; charset=utf-8 +2017-12-19 16:30:10.049 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:30:54.923 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:30:54.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:30:54.924 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:30:58.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:30:58.502 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:30:58.503 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:30:58.505 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:30:58.508 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3581.1882ms +2017-12-19 16:30:58.512 +05:30 [Information] Request finished in 3588.2229ms 200 application/json; charset=utf-8 +2017-12-19 16:30:58.512 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:06.200 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 200 +2017-12-19 16:31:06.202 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 16:31:06.205 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 16:31:09.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAGtjT4iCp7V1nD9jlSvp3CyRqA5ipw3cZBKD6tZBk3TFPWPF5C09oq8eCRwsZACX7TZADGhB8d0C6XfZAhXqPYmvxndD9FZAIoPFeXp6D70esh6gqFx6yiyhlBrZCCfYE80E4MCH52mxhCuKtTEm57tV3uU7SWYUAZDZD", "Free"]) - ModelState is Valid +2017-12-19 16:31:11.572 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:11.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:11.573 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:11.574 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 5368.3215ms +2017-12-19 16:31:11.575 +05:30 [Information] Request finished in 5383.6128ms 200 application/json; charset=utf-8 +2017-12-19 16:31:11.576 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:11.731 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:31:11.731 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:31:11.731 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:31:14.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:31:15.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:15.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:15.278 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:15.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3546.1495ms +2017-12-19 16:31:15.282 +05:30 [Information] Request finished in 3550.5795ms 200 application/json; charset=utf-8 +2017-12-19 16:31:15.282 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:15.815 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:31:15.816 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:31:15.816 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:31:18.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:31:19.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:19.421 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:19.423 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:19.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3607.4792ms +2017-12-19 16:31:19.430 +05:30 [Information] Request finished in 3615.8419ms 200 application/json; charset=utf-8 +2017-12-19 16:31:19.431 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:19.479 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:31:19.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:31:19.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:31:21.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:31:22.102 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:22.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:22.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:22.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2623.3997ms +2017-12-19 16:31:22.108 +05:30 [Information] Request finished in 2627.3918ms 200 application/json; charset=utf-8 +2017-12-19 16:31:22.108 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:22.117 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:31:22.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:31:22.118 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:31:25.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:31:25.693 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:25.693 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:25.696 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:25.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3577.7746ms +2017-12-19 16:31:25.705 +05:30 [Information] Request finished in 3589.5058ms 200 application/json; charset=utf-8 +2017-12-19 16:31:25.706 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:31.383 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:31:31.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:31:31.384 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:31:34.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:31:35.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:35.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:35.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:35.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3632.8263ms +2017-12-19 16:31:35.021 +05:30 [Information] Request finished in 3638.8347ms 200 application/json; charset=utf-8 +2017-12-19 16:31:35.022 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:36.849 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 202 +2017-12-19 16:31:36.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 16:31:36.853 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 16:31:39.891 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAKULNt6kjZBZAkZBxXmYxLPfzBR5KXOPbrOIzG4ZCiKudfCuSaZAzHDsAqG34NQ9sPX6OtPtMh4xJYNblxznqZAqBSOEINhYd5aAp6jWBCtkTHZBZB9K323SGjtiPporfNSw3ZAqmOh9in9e3vOgV9QJ6uGTDe0snMAZDZD", "Free"]) - ModelState is Valid +2017-12-19 16:31:41.708 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:41.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:41.710 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:41.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 4856.9108ms +2017-12-19 16:31:41.712 +05:30 [Information] Request finished in 4864.6981ms 200 application/json; charset=utf-8 +2017-12-19 16:31:41.713 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:41.765 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:31:41.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:31:41.770 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:31:44.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:31:45.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:45.304 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:45.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:45.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3536.0203ms +2017-12-19 16:31:45.314 +05:30 [Information] Request finished in 3549.1498ms 200 application/json; charset=utf-8 +2017-12-19 16:31:45.315 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:45.726 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:31:45.726 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:31:45.727 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:31:48.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:31:49.302 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:49.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:49.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:49.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3576.6578ms +2017-12-19 16:31:49.306 +05:30 [Information] Request finished in 3580.0534ms 200 application/json; charset=utf-8 +2017-12-19 16:31:49.306 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:49.430 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:31:49.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:31:49.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:31:52.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:31:53.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:53.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:53.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:53.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3638.2136ms +2017-12-19 16:31:53.073 +05:30 [Information] Request finished in 3643.2945ms 200 application/json; charset=utf-8 +2017-12-19 16:31:53.073 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:31:53.080 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:31:53.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:31:53.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:31:56.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:31:56.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:31:56.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:31:56.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:31:56.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3562.7965ms +2017-12-19 16:31:56.646 +05:30 [Information] Request finished in 3567.3885ms 200 application/json; charset=utf-8 +2017-12-19 16:31:56.647 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" completed keep alive response. +2017-12-19 16:33:05.342 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" received FIN. +2017-12-19 16:33:05.342 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" disconnecting. +2017-12-19 16:33:05.342 +05:30 [Debug] Connection id ""0HLA6PQ6VO7II"" started. +2017-12-19 16:33:05.342 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" sending FIN. +2017-12-19 16:33:05.343 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" sent FIN with status "0". +2017-12-19 16:33:05.344 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IH"" stopped. +2017-12-19 16:33:05.346 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:33:05.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:33:05.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:33:08.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:33:08.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:33:08.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:33:08.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:33:08.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3547.1681ms +2017-12-19 16:33:08.899 +05:30 [Information] Request finished in 3555.2011ms 200 application/json; charset=utf-8 +2017-12-19 16:33:08.899 +05:30 [Debug] Connection id ""0HLA6PQ6VO7II"" completed keep alive response. +2017-12-19 16:35:01.080 +05:30 [Debug] Connection id ""0HLA6PQ6VO7II"" received FIN. +2017-12-19 16:35:01.080 +05:30 [Debug] Connection id ""0HLA6PQ6VO7II"" disconnecting. +2017-12-19 16:35:01.081 +05:30 [Debug] Connection id ""0HLA6PQ6VO7II"" sending FIN. +2017-12-19 16:35:01.081 +05:30 [Debug] Connection id ""0HLA6PQ6VO7II"" sent FIN with status "0". +2017-12-19 16:35:01.081 +05:30 [Debug] Connection id ""0HLA6PQ6VO7II"" stopped. +2017-12-19 16:35:29.803 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IJ"" started. +2017-12-19 16:35:29.807 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 201 +2017-12-19 16:35:29.809 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 16:35:29.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 16:35:32.883 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAAILAhrms2gm8ZCESREagKGU8GkIw2ZCZAzAVNOyGvhV5eLg0R0zuPxu9cyudBfvZB9oiB4UfakMnYFvZA5uEx5AlqHgCe1RGZALuZBOq0rlXAoFBi9JoPMCVW4voFunExWjU0L4ZASKGEaJ4EpMqrsnYfsOskjvCwZDZD", "Free"]) - ModelState is Valid +2017-12-19 16:36:08.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:36:08.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:36:08.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:36:08.758 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 38946.6037ms +2017-12-19 16:36:08.760 +05:30 [Information] Request finished in 38954.4411ms 200 application/json; charset=utf-8 +2017-12-19 16:36:08.761 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IJ"" completed keep alive response. +2017-12-19 16:36:08.823 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:36:08.824 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:36:08.824 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:36:11.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:36:12.396 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:36:12.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:36:12.402 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:36:12.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3577.6536ms +2017-12-19 16:36:12.407 +05:30 [Information] Request finished in 3583.0984ms 200 application/json; charset=utf-8 +2017-12-19 16:36:12.407 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IJ"" completed keep alive response. +2017-12-19 16:36:13.078 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:36:13.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:36:13.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:36:16.262 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:36:16.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:36:16.765 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:36:16.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:36:16.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3640.8167ms +2017-12-19 16:36:16.772 +05:30 [Information] Request finished in 3693.3067ms 200 application/json; charset=utf-8 +2017-12-19 16:36:16.772 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IJ"" completed keep alive response. +2017-12-19 16:36:16.828 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:36:16.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:36:16.829 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:36:19.078 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IK"" started. +2017-12-19 16:36:19.080 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:36:19.080 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:36:19.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:36:19.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:36:20.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:36:20.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:36:20.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:36:20.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3610.5679ms +2017-12-19 16:36:20.443 +05:30 [Information] Request finished in 3615.7387ms 200 application/json; charset=utf-8 +2017-12-19 16:36:20.444 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IJ"" completed keep alive response. +2017-12-19 16:36:20.450 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:36:20.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:36:20.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:36:22.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:36:22.636 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:36:22.637 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:36:22.640 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:36:22.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3559.7446ms +2017-12-19 16:36:22.648 +05:30 [Information] Request finished in 3568.1063ms 200 application/json; charset=utf-8 +2017-12-19 16:36:22.648 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IK"" completed keep alive response. +2017-12-19 16:36:23.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:36:24.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:36:24.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:36:24.050 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:36:24.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3598.822ms +2017-12-19 16:36:24.095 +05:30 [Information] Request finished in 3619.7833ms 200 application/json; charset=utf-8 +2017-12-19 16:36:24.096 +05:30 [Debug] Connection id ""0HLA6PQ6VO7IJ"" completed keep alive response. +2017-12-19 16:36:35.871 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 199 +2017-12-19 16:36:35.871 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 16:36:35.872 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 16:36:38.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAOqiashrTOUS2ICHvgvZAp75OzGWdPcemVDKZCFYEvwtuYL2QkXX8RqQcYaUwJIzSp9jmZAi9L80ugdrLlGJ0VN1PF2psd00w5hHFPaOtftMYRY4Im18xLpOVGZAxTpayGU4tXmArFtvZCwBQpDFZBd9yL3tLryQZDZD", "Free"]) - ModelState is Valid +2017-12-19 16:40:17.632 +05:30 [Debug] Hosting starting +2017-12-19 16:40:18.136 +05:30 [Debug] Hosting started +2017-12-19 16:40:18.307 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGH"" started. +2017-12-19 16:40:18.310 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGI"" started. +2017-12-19 16:40:18.607 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 16:40:18.660 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 16:40:18.778 +05:30 [Information] Request finished in 254.9796ms 200 +2017-12-19 16:40:18.859 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGH"" completed keep alive response. +2017-12-19 16:40:19.201 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:40:19.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:40:19.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 16:40:20.057 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"92e35aa9-f286-4dd9-8414-0bcd4985593e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 16:40:20.249 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:40:20.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 16:40:20.416 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 16:40:20.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 16:40:20.487 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:40:20.495 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:40:20.499 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:40:20.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 633.2714ms +2017-12-19 16:40:20.999 +05:30 [Information] Request finished in 2515.097ms 200 application/json; charset=utf-8 +2017-12-19 16:40:21.002 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGI"" completed keep alive response. +2017-12-19 16:40:21.045 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-19 16:40:21.048 +05:30 [Debug] Request did not match any routes. +2017-12-19 16:40:21.078 +05:30 [Debug] The request path "" does not match the path filter +2017-12-19 16:40:21.080 +05:30 [Information] Request finished in 34.4191ms 404 +2017-12-19 16:40:21.081 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGI"" completed keep alive response. +2017-12-19 16:40:23.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:40:30.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:40:30.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:40:30.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:40:30.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9785.5545ms +2017-12-19 16:40:30.044 +05:30 [Information] Request finished in 10843.34ms 200 application/json; charset=utf-8 +2017-12-19 16:40:30.045 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGH"" completed keep alive response. +2017-12-19 16:40:39.917 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:40:39.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:40:39.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:40:42.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:40:43.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:40:43.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:40:43.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:40:43.489 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3560.6503ms +2017-12-19 16:40:43.491 +05:30 [Information] Request finished in 3576.4656ms 200 application/json; charset=utf-8 +2017-12-19 16:40:43.492 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGI"" completed keep alive response. +2017-12-19 16:40:43.535 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:40:43.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:40:43.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:40:45.658 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:40:46.178 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:40:46.179 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:40:46.180 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:40:46.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2639.2511ms +2017-12-19 16:40:46.184 +05:30 [Information] Request finished in 2648.6218ms 200 application/json; charset=utf-8 +2017-12-19 16:40:46.185 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGH"" completed keep alive response. +2017-12-19 16:40:46.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:40:46.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:40:46.224 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:40:49.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:40:49.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:40:49.793 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:40:49.794 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:40:49.795 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3570.1487ms +2017-12-19 16:40:49.797 +05:30 [Information] Request finished in 3575.545ms 200 application/json; charset=utf-8 +2017-12-19 16:40:49.797 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGI"" completed keep alive response. +2017-12-19 16:41:01.826 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:41:01.826 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:41:01.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:41:04.897 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:41:05.413 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:41:05.414 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:41:05.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:41:05.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3586.778ms +2017-12-19 16:41:05.419 +05:30 [Information] Request finished in 3593.3791ms 200 application/json; charset=utf-8 +2017-12-19 16:41:05.419 +05:30 [Debug] Connection id ""0HLA6Q4B8EPGH"" completed keep alive response. +2017-12-19 16:41:08.593 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 207 +2017-12-19 16:41:08.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 16:41:08.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 16:41:11.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAFsKaocvZCdeBW4T56apJSIZACAkunjnWZCKRlY3ZBZCdYj7FUptni91LPlVaZBhLkUB0ZAH4Rme9iCB6ZCLZAdi5DOGaYZCqBwj5UsOXIG08nJQTlMkbeVaoZAPACA9ZBZA2FzJE0V3hQUViTfVEno4spxe1J9R3xyKZCuAZDZD", "Free"]) - ModelState is Valid +2017-12-19 16:42:55.010 +05:30 [Debug] Hosting starting +2017-12-19 16:42:55.229 +05:30 [Debug] Hosting started +2017-12-19 16:42:55.501 +05:30 [Debug] Connection id ""0HLA6Q5Q3I37M"" started. +2017-12-19 16:42:55.502 +05:30 [Debug] Connection id ""0HLA6Q5Q3I37N"" started. +2017-12-19 16:42:55.688 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 16:42:55.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 16:42:55.805 +05:30 [Information] Request finished in 121.7674ms 200 +2017-12-19 16:42:55.858 +05:30 [Debug] Connection id ""0HLA6Q5Q3I37N"" completed keep alive response. +2017-12-19 16:42:56.677 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 16:42:56.760 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"ba01a4ca-56f2-43a7-8374-923f0ca74294"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 16:42:56.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 16:42:57.116 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 16:42:57.118 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 16:42:57.156 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:42:57.162 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:42:57.164 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:42:57.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 491.4297ms +2017-12-19 16:42:57.539 +05:30 [Information] Request finished in 1909.5463ms 200 application/json; charset=utf-8 +2017-12-19 16:42:57.541 +05:30 [Debug] Connection id ""0HLA6Q5Q3I37M"" completed keep alive response. +2017-12-19 16:43:32.372 +05:30 [Debug] Hosting starting +2017-12-19 16:43:32.685 +05:30 [Debug] Hosting started +2017-12-19 16:43:32.792 +05:30 [Debug] Connection id ""0HLA6Q6576LMR"" started. +2017-12-19 16:43:32.803 +05:30 [Debug] Connection id ""0HLA6Q6576LMS"" started. +2017-12-19 16:43:33.104 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 16:43:33.111 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 16:43:33.194 +05:30 [Information] Request finished in 195.7971ms 200 +2017-12-19 16:43:33.253 +05:30 [Debug] Connection id ""0HLA6Q6576LMR"" completed keep alive response. +2017-12-19 16:43:34.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 16:43:34.385 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"99c69381-eda3-4e10-b6ec-3f951a0099b6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 16:43:34.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 16:43:34.682 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 16:43:34.685 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 16:43:34.745 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:43:34.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:43:34.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:43:35.124 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:43:35.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:43:35.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:43:35.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 601.2858ms +2017-12-19 16:43:35.248 +05:30 [Information] Request finished in 2265.8648ms 200 application/json; charset=utf-8 +2017-12-19 16:43:35.251 +05:30 [Debug] Connection id ""0HLA6Q6576LMS"" completed keep alive response. +2017-12-19 16:43:38.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:43:44.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:43:44.755 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:43:44.756 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:43:44.759 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9628.6333ms +2017-12-19 16:43:44.763 +05:30 [Information] Request finished in 9637.85ms 200 application/json; charset=utf-8 +2017-12-19 16:43:44.763 +05:30 [Debug] Connection id ""0HLA6Q6576LMR"" completed keep alive response. +2017-12-19 16:43:54.811 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:43:54.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:43:54.813 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:43:57.890 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:43:58.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:43:58.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:43:58.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:43:58.469 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3653.866ms +2017-12-19 16:43:58.471 +05:30 [Information] Request finished in 3659.308ms 200 application/json; charset=utf-8 +2017-12-19 16:43:58.472 +05:30 [Debug] Connection id ""0HLA6Q6576LMS"" completed keep alive response. +2017-12-19 16:43:58.552 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:43:58.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:43:58.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:44:01.586 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:44:02.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:44:02.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:44:02.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:44:02.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3610.5346ms +2017-12-19 16:44:02.166 +05:30 [Information] Request finished in 3614.6091ms 200 application/json; charset=utf-8 +2017-12-19 16:44:02.167 +05:30 [Debug] Connection id ""0HLA6Q6576LMR"" completed keep alive response. +2017-12-19 16:44:02.207 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:44:02.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:44:02.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:44:05.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:44:05.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:44:05.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:44:05.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:44:05.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3601.1369ms +2017-12-19 16:44:05.819 +05:30 [Information] Request finished in 3612.7608ms 200 application/json; charset=utf-8 +2017-12-19 16:44:05.820 +05:30 [Debug] Connection id ""0HLA6Q6576LMS"" completed keep alive response. +2017-12-19 16:44:16.909 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:44:16.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:44:16.914 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:44:19.948 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:44:20.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:44:20.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:44:20.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:44:20.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3611.736ms +2017-12-19 16:44:20.536 +05:30 [Information] Request finished in 3628.9182ms 200 application/json; charset=utf-8 +2017-12-19 16:44:20.538 +05:30 [Debug] Connection id ""0HLA6Q6576LMR"" completed keep alive response. +2017-12-19 16:44:24.360 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 201 +2017-12-19 16:44:24.360 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 16:44:24.388 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 16:44:27.449 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBACZBDQ6b7ko1vow8KdHtzmf5WZBA3S17DXZAqMBOwYXu40P7Fmnzj6wAXbHu8dGZCtILQcJFJoC25unxBsza5ZAruHcE9AhW2T3gTLOjWZBoYzZBv2GSnGrLpo8198K0aoJFNr2EZAfDbACPH1ppf4f2bq8viK8cKwZDZD", "Free"]) - ModelState is Valid +2017-12-19 16:46:18.944 +05:30 [Debug] Hosting starting +2017-12-19 16:46:19.262 +05:30 [Debug] Hosting started +2017-12-19 16:46:19.353 +05:30 [Debug] Connection id ""0HLA6Q7MRLC22"" started. +2017-12-19 16:46:19.358 +05:30 [Debug] Connection id ""0HLA6Q7MRLC23"" started. +2017-12-19 16:46:19.552 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 16:46:19.552 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 16:46:19.634 +05:30 [Information] Request finished in 124.1509ms 200 +2017-12-19 16:46:19.688 +05:30 [Debug] Connection id ""0HLA6Q7MRLC22"" completed keep alive response. +2017-12-19 16:46:20.617 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:46:20.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 16:46:20.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:46:20.939 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"36cef778-d2dc-4b0d-82d5-57cca9ef92c6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 16:46:21.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 16:46:21.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:46:21.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 16:46:21.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 16:46:21.203 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:46:21.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:46:21.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:46:21.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 477.4434ms +2017-12-19 16:46:21.561 +05:30 [Information] Request finished in 2068.6825ms 200 application/json; charset=utf-8 +2017-12-19 16:46:21.564 +05:30 [Debug] Connection id ""0HLA6Q7MRLC23"" completed keep alive response. +2017-12-19 16:46:24.738 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:46:31.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:46:31.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:46:31.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:46:31.184 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10150.1723ms +2017-12-19 16:46:31.193 +05:30 [Information] Request finished in 10572.2804ms 200 application/json; charset=utf-8 +2017-12-19 16:46:31.193 +05:30 [Debug] Connection id ""0HLA6Q7MRLC22"" completed keep alive response. +2017-12-19 16:46:42.129 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:46:42.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:46:42.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:46:42.732 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:46:42.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:46:42.735 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:46:44.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:46:45.235 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:46:45.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:46:45.417 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:46:45.418 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:46:45.420 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2682.5579ms +2017-12-19 16:46:45.422 +05:30 [Information] Request finished in 2690.4734ms 200 application/json; charset=utf-8 +2017-12-19 16:46:45.423 +05:30 [Debug] Connection id ""0HLA6Q7MRLC22"" completed keep alive response. +2017-12-19 16:46:47.274 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:46:47.274 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:46:47.281 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:46:47.284 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5144.1213ms +2017-12-19 16:46:47.432 +05:30 [Information] Request finished in 5178.1334ms 200 application/json; charset=utf-8 +2017-12-19 16:46:47.432 +05:30 [Debug] Connection id ""0HLA6Q7MRLC23"" completed keep alive response. +2017-12-19 16:46:53.621 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 199 +2017-12-19 16:46:53.622 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 16:46:53.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 16:46:56.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBACwYnvtMw8ZBpjTgNYAUK4tSZCLB7yEH4uHrvZCGmdn6IJArtGPZBcBGv3klDhOobWtDGhj9QNsVGkrLxJDdJwLREkfWoF4L50BLQ9MMluVNZBMrMMXXUZCoFoszM97qv19CuD6p9kWoFvmgimmME4Euk0EzDEVAZDZD", "Free"]) - ModelState is Valid +2017-12-19 16:53:51.711 +05:30 [Debug] Hosting starting +2017-12-19 16:53:52.256 +05:30 [Debug] Hosting started +2017-12-19 16:53:52.301 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" started. +2017-12-19 16:53:52.304 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" started. +2017-12-19 16:53:52.559 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 16:53:52.566 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 16:53:52.663 +05:30 [Information] Request finished in 140.4309ms 200 +2017-12-19 16:53:52.744 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" completed keep alive response. +2017-12-19 16:53:54.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 16:53:54.320 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3af6ca57-c999-4295-93f4-e10df8526832"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 16:53:54.427 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:53:54.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:53:54.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 16:53:54.433 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:53:54.566 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 16:53:54.568 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 16:53:54.612 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:53:54.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:53:54.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:53:54.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 407.1368ms +2017-12-19 16:53:54.908 +05:30 [Information] Request finished in 2426.807ms 200 application/json; charset=utf-8 +2017-12-19 16:53:54.912 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" completed keep alive response. +2017-12-19 16:53:57.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:03.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:03.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:03.497 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:03.501 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9053.436ms +2017-12-19 16:54:03.504 +05:30 [Information] Request finished in 9076.1467ms 200 application/json; charset=utf-8 +2017-12-19 16:54:03.504 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" completed keep alive response. +2017-12-19 16:54:13.549 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:13.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:13.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:14.349 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:14.350 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:14.351 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:16.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:17.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:17.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:17.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:17.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3599.9283ms +2017-12-19 16:54:17.157 +05:30 [Information] Request finished in 3611.574ms 200 application/json; charset=utf-8 +2017-12-19 16:54:17.158 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" completed keep alive response. +2017-12-19 16:54:17.205 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:17.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:17.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:17.396 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:17.895 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:17.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:17.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:17.899 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3545.6308ms +2017-12-19 16:54:17.901 +05:30 [Information] Request finished in 3558.2471ms 200 application/json; charset=utf-8 +2017-12-19 16:54:17.902 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" completed keep alive response. +2017-12-19 16:54:20.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:20.765 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:20.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:20.766 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:20.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3560.2008ms +2017-12-19 16:54:20.771 +05:30 [Information] Request finished in 3566.5211ms 200 application/json; charset=utf-8 +2017-12-19 16:54:20.771 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" completed keep alive response. +2017-12-19 16:54:20.824 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:20.824 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:20.825 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:22.713 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:22.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:22.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:23.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:24.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:24.387 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:24.388 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:24.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3563.24ms +2017-12-19 16:54:24.393 +05:30 [Information] Request finished in 3574.3106ms 200 application/json; charset=utf-8 +2017-12-19 16:54:24.393 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" completed keep alive response. +2017-12-19 16:54:24.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:25.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:25.306 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:25.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:25.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2593.6705ms +2017-12-19 16:54:25.317 +05:30 [Information] Request finished in 2603.8034ms 200 application/json; charset=utf-8 +2017-12-19 16:54:25.318 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" completed keep alive response. +2017-12-19 16:54:25.351 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-19 16:54:25.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-19 16:54:25.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-19 16:54:28.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-19 16:54:30.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:30.407 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:30.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:30.546 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5193.5174ms +2017-12-19 16:54:30.548 +05:30 [Information] Request finished in 5198.333ms 200 application/json; charset=utf-8 +2017-12-19 16:54:30.549 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" completed keep alive response. +2017-12-19 16:54:30.925 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:30.926 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:30.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:33.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:34.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:34.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:34.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:34.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3548.2258ms +2017-12-19 16:54:34.479 +05:30 [Information] Request finished in 3554.0896ms 200 application/json; charset=utf-8 +2017-12-19 16:54:34.480 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" completed keep alive response. +2017-12-19 16:54:34.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-19 16:54:34.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 16:54:34.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 16:54:36.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-19 16:54:38.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:38.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:38.339 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:38.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3838.042ms +2017-12-19 16:54:38.393 +05:30 [Information] Request finished in 3844.9171ms 200 application/json; charset=utf-8 +2017-12-19 16:54:38.394 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" completed keep alive response. +2017-12-19 16:54:40.226 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 16:54:40.227 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 16:54:40.227 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 16:54:40.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 16:54:40.229 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 16:54:40.229 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 16:54:40.320 +05:30 [Debug] Connection id ""0HLA6QBTR967M"" started. +2017-12-19 16:54:40.320 +05:30 [Debug] Connection id ""0HLA6QBTR967N"" started. +2017-12-19 16:54:40.321 +05:30 [Debug] Connection id ""0HLA6QBTR967O"" started. +2017-12-19 16:54:40.323 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" started. +2017-12-19 16:54:40.350 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 16:54:40.350 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 16:54:40.351 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 16:54:40.352 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 16:54:40.352 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 16:54:40.352 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 16:54:40.353 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 16:54:40.354 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 16:54:40.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 16:54:41.255 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 16:54:41.256 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 16:54:41.258 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 16:54:44.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:54:44.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:54:44.441 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:54:44.446 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:54:44.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:54:44.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:54:44.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:44.941 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:54:44.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:44.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:44.947 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4582.5131ms +2017-12-19 16:54:44.951 +05:30 [Information] Request finished in 4626.6283ms 200 application/json; charset=utf-8 +2017-12-19 16:54:44.952 +05:30 [Debug] Connection id ""0HLA6QBTR967N"" completed keep alive response. +2017-12-19 16:54:44.964 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 16:54:44.965 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 16:54:44.968 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 16:54:46.667 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:46.668 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:54:46.668 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:46.669 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:46.679 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6323.5103ms +2017-12-19 16:54:46.682 +05:30 [Information] Request finished in 6331.1552ms 200 application/json; charset=utf-8 +2017-12-19 16:54:46.683 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" completed keep alive response. +2017-12-19 16:54:46.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:46.878 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:54:46.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:46.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:46.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5620.851ms +2017-12-19 16:54:46.883 +05:30 [Information] Request finished in 5627.7146ms 200 application/json; charset=utf-8 +2017-12-19 16:54:46.884 +05:30 [Debug] Connection id ""0HLA6QBTR967M"" completed keep alive response. +2017-12-19 16:54:47.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:47.020 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:54:47.020 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:47.022 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:47.022 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6791.737ms +2017-12-19 16:54:47.025 +05:30 [Information] Request finished in 6819.3912ms 200 application/json; charset=utf-8 +2017-12-19 16:54:47.025 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" completed keep alive response. +2017-12-19 16:54:47.107 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:47.107 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:54:47.107 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:47.108 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:47.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6878.8387ms +2017-12-19 16:54:47.112 +05:30 [Information] Request finished in 6907.0259ms 200 application/json; charset=utf-8 +2017-12-19 16:54:47.114 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" completed keep alive response. +2017-12-19 16:54:47.298 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:47.299 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:47.300 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:48.013 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 16:54:50.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:50.362 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:54:50.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:50.366 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:50.368 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:50.432 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5462.4111ms +2017-12-19 16:54:50.433 +05:30 [Information] Request finished in 5472.7655ms 200 application/json; charset=utf-8 +2017-12-19 16:54:50.434 +05:30 [Debug] Connection id ""0HLA6QBTR967N"" completed keep alive response. +2017-12-19 16:54:50.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:50.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:50.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:50.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3573.7275ms +2017-12-19 16:54:50.880 +05:30 [Information] Request finished in 3582.4883ms 200 application/json; charset=utf-8 +2017-12-19 16:54:50.881 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" completed keep alive response. +2017-12-19 16:54:51.515 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:51.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:51.517 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:53.146 +05:30 [Fatal] Sequence contains no elements +2017-12-19 16:54:53.211 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 16:54:53.761 +05:30 [Fatal] Sequence contains no elements +2017-12-19 16:54:53.763 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 16:54:54.325 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:54.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:54.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:54.585 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:55.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:55.155 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:55.157 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:55.159 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3640.4964ms +2017-12-19 16:54:55.165 +05:30 [Information] Request finished in 3724.6677ms 200 application/json; charset=utf-8 +2017-12-19 16:54:55.165 +05:30 [Debug] Connection id ""0HLA6QBTR967M"" completed keep alive response. +2017-12-19 16:54:55.250 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:55.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:55.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:54:56.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:57.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:57.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:57.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:57.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2680.6978ms +2017-12-19 16:54:57.011 +05:30 [Information] Request finished in 2688.2693ms 200 application/json; charset=utf-8 +2017-12-19 16:54:57.012 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" completed keep alive response. +2017-12-19 16:54:58.324 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:54:58.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:54:58.828 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:54:58.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:54:58.833 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3579.009ms +2017-12-19 16:54:58.857 +05:30 [Information] Request finished in 3594.7407ms 200 application/json; charset=utf-8 +2017-12-19 16:54:58.858 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" completed keep alive response. +2017-12-19 16:54:59.078 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:54:59.078 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:54:59.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:55:00.994 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 198 +2017-12-19 16:55:00.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 16:55:00.997 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 16:55:02.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:55:02.698 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:55:02.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:55:02.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:55:02.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3619.9939ms +2017-12-19 16:55:02.704 +05:30 [Information] Request finished in 3624.7489ms 200 application/json; charset=utf-8 +2017-12-19 16:55:02.705 +05:30 [Debug] Connection id ""0HLA6QBTR967N"" completed keep alive response. +2017-12-19 16:55:04.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAPaKBZC9j7v63yi3l6zOVcWUnZBDSgA0EZAjBPKOKbB9OzySedmg5ZCXPooPcr6Cd9z0OPk7RDdhIw61Lk6Rk2TSMptqgUqhmh0bpSv6kdHrVDr8DntfgQicQBNaCug143mFHlltBZBQ7K8uhSkQmnP86uetHmQZDZD", "Free"]) - ModelState is Valid +2017-12-19 16:55:31.969 +05:30 [Fatal] PartialEvalException (InvalidOperationException ("Sequence contains no elements"), PartialEvalException (InvalidOperationException ("Sequence contains no elements"), {value(System.Collections.Generic.List`1[Domain.Socioboard.Models.Facebookaccounts]) => First()}).UserId) +2017-12-19 16:55:31.973 +05:30 [Error] at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.Visit(Expression expression, VisitorParameters parameters) + at NHibernate.Linq.Visitors.QueryModelVisitor.VisitWhereClause(WhereClause whereClause, QueryModel queryModel, Int32 index) + at Remotion.Linq.Clauses.WhereClause.Accept(IQueryModelVisitor visitor, QueryModel queryModel, Int32 index) + at Remotion.Linq.QueryModelVisitorBase.VisitBodyClauses(ObservableCollection`1 bodyClauses, QueryModel queryModel) + at Remotion.Linq.QueryModelVisitorBase.VisitQueryModel(QueryModel queryModel) + at NHibernate.Linq.Visitors.QueryModelVisitor.Visit() + at NHibernate.Linq.Visitors.QueryModelVisitor.GenerateHqlQuery(QueryModel queryModel, VisitorParameters parameters, Boolean root) + at NHibernate.Linq.NhLinqExpression.Translate(ISessionFactoryImplementor sessionFactory, Boolean filter) + at NHibernate.Hql.Ast.ANTLR.ASTQueryTranslatorFactory.CreateQueryTranslators(IQueryExpression queryExpression, String collectionRole, Boolean shallow, IDictionary`2 filters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryExpressionPlan.CreateTranslators(IQueryExpression queryExpression, String collectionRole, Boolean shallow, IDictionary`2 enabledFilters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryExpressionPlan..ctor(IQueryExpression queryExpression, Boolean shallow, IDictionary`2 enabledFilters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryPlanCache.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow, IDictionary`2 enabledFilters) + at NHibernate.Impl.AbstractSessionImpl.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow) + at NHibernate.Impl.AbstractSessionImpl.CreateQuery(IQueryExpression queryExpression) + at NHibernate.Linq.DefaultQueryProvider.PrepareQuery(Expression expression, IQuery& query, NhLinqExpression& nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-12-19 16:55:40.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:55:40.420 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:55:40.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:55:42.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:55:50.317 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 68776.0763ms +2017-12-19 16:55:51.759 +05:30 [Information] Request finished in 70885.7303ms 200 application/json; charset=utf-8 +2017-12-19 16:55:51.760 +05:30 [Debug] Connection id ""0HLA6QBTR967O"" completed keep alive response. +2017-12-19 16:55:52.738 +05:30 [Debug] Connection id ""0HLA6QBTR967O"" received FIN. +2017-12-19 16:55:52.813 +05:30 [Debug] Connection id ""0HLA6QBTR967O"" disconnecting. +2017-12-19 16:55:52.826 +05:30 [Information] Connection id ""0HLA6QBTR967O"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-19 16:55:52.852 +05:30 [Debug] Connection id ""0HLA6QBTR967O"" sending FIN. +2017-12-19 16:55:53.066 +05:30 [Debug] Connection id ""0HLA6QBTR967O"" sent FIN with status "0". +2017-12-19 16:55:53.105 +05:30 [Debug] Connection id ""0HLA6QBTR967O"" stopped. +2017-12-19 16:56:21.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:21.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:21.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:21.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 80377.6915ms +2017-12-19 16:56:21.379 +05:30 [Information] Request finished in 80384.7775ms 200 application/json; charset=utf-8 +2017-12-19 16:56:21.380 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" completed keep alive response. +2017-12-19 16:56:21.470 +05:30 [Debug] Connection id ""0HLA6QBTR967M"" received FIN. +2017-12-19 16:56:21.470 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" received FIN. +2017-12-19 16:56:21.470 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" received FIN. +2017-12-19 16:56:21.470 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" disconnecting. +2017-12-19 16:56:21.470 +05:30 [Debug] Connection id ""0HLA6QBTR967N"" received FIN. +2017-12-19 16:56:21.470 +05:30 [Debug] Connection id ""0HLA6QBTR967M"" disconnecting. +2017-12-19 16:56:21.471 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" sending FIN. +2017-12-19 16:56:21.471 +05:30 [Debug] Connection id ""0HLA6QBTR967N"" disconnecting. +2017-12-19 16:56:21.475 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:56:21.476 +05:30 [Debug] Connection id ""0HLA6QBTR967N"" sending FIN. +2017-12-19 16:56:21.476 +05:30 [Debug] Connection id ""0HLA6QBTR967N"" sent FIN with status "0". +2017-12-19 16:56:21.477 +05:30 [Debug] Connection id ""0HLA6QBTR967N"" stopped. +2017-12-19 16:56:21.478 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:56:21.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:56:21.471 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" disconnecting. +2017-12-19 16:56:21.485 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" sending FIN. +2017-12-19 16:56:21.485 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" sent FIN with status "0". +2017-12-19 16:56:21.472 +05:30 [Debug] Connection id ""0HLA6QBTR967M"" sending FIN. +2017-12-19 16:56:21.485 +05:30 [Debug] Connection id ""0HLA6QBTR967K"" stopped. +2017-12-19 16:56:21.486 +05:30 [Debug] Connection id ""0HLA6QBTR967M"" sent FIN with status "0". +2017-12-19 16:56:21.490 +05:30 [Debug] Connection id ""0HLA6QBTR967M"" stopped. +2017-12-19 16:56:21.491 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" sent FIN with status "0". +2017-12-19 16:56:21.491 +05:30 [Debug] Connection id ""0HLA6QBTR967L"" stopped. +2017-12-19 16:56:24.546 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:56:25.095 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:25.096 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:25.097 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:25.111 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3625.0841ms +2017-12-19 16:56:25.114 +05:30 [Information] Request finished in 3643.0376ms 200 application/json; charset=utf-8 +2017-12-19 16:56:25.119 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" completed keep alive response. +2017-12-19 16:56:25.159 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500432&groupId= +2017-12-19 16:56:25.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 16:56:25.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 16:56:32.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500432", ""]) - ModelState is Valid +2017-12-19 16:56:33.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:33.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:34.023 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:34.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 8845.8837ms +2017-12-19 16:56:34.458 +05:30 [Information] Request finished in 9098.5451ms 200 application/json; charset=utf-8 +2017-12-19 16:56:34.458 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" completed keep alive response. +2017-12-19 16:56:38.493 +05:30 [Debug] Connection id ""0HLA6QBTR967R"" started. +2017-12-19 16:56:38.493 +05:30 [Debug] Connection id ""0HLA6QBTR967Q"" started. +2017-12-19 16:56:38.495 +05:30 [Debug] Connection id ""0HLA6QBTR967S"" started. +2017-12-19 16:56:38.576 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500432 +2017-12-19 16:56:38.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 16:56:38.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 16:56:38.709 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500432 +2017-12-19 16:56:38.709 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 16:56:38.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 16:56:38.719 +05:30 [Debug] Connection id ""0HLA6QBTR967T"" started. +2017-12-19 16:56:38.728 +05:30 [Debug] Connection id ""0HLA6QBTR967U"" started. +2017-12-19 16:56:39.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152625 +2017-12-19 16:56:39.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 16:56:39.068 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 16:56:39.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500432 +2017-12-19 16:56:39.240 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 16:56:39.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 16:56:42.974 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152625&userId=500432 +2017-12-19 16:56:42.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 16:56:42.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 16:56:46.544 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500432 +2017-12-19 16:56:46.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 16:56:46.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 16:56:48.677 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 16:56:49.597 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 16:56:49.678 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 16:56:49.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 16:56:49.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 16:56:49.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 16:56:49.825 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:49.825 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:56:49.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:49.828 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:49.830 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 10587.2411ms +2017-12-19 16:56:49.834 +05:30 [Information] Request finished in 11337.9719ms 200 application/json; charset=utf-8 +2017-12-19 16:56:49.834 +05:30 [Debug] Connection id ""0HLA6QBTR967R"" completed keep alive response. +2017-12-19 16:56:49.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152625 +2017-12-19 16:56:49.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 16:56:49.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 16:56:50.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:50.250 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:56:50.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:50.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:50.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:50.254 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:56:50.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 11542.0545ms +2017-12-19 16:56:50.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:50.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:50.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 11681.3354ms +2017-12-19 16:56:50.262 +05:30 [Information] Request finished in 11763.9924ms 200 application/json; charset=utf-8 +2017-12-19 16:56:50.265 +05:30 [Debug] Connection id ""0HLA6QBTR967Q"" completed keep alive response. +2017-12-19 16:56:50.293 +05:30 [Information] Request finished in 11771.0087ms 200 application/json; charset=utf-8 +2017-12-19 16:56:50.293 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" completed keep alive response. +2017-12-19 16:56:50.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:50.318 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:56:50.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:50.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:50.320 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 11251.4437ms +2017-12-19 16:56:50.322 +05:30 [Information] Request finished in 11747.5426ms 200 application/json; charset=utf-8 +2017-12-19 16:56:50.322 +05:30 [Debug] Connection id ""0HLA6QBTR967S"" completed keep alive response. +2017-12-19 16:56:50.815 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:50.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:56:50.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:50.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:50.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7840.4915ms +2017-12-19 16:56:50.820 +05:30 [Information] Request finished in 7975.6021ms 200 application/json; charset=utf-8 +2017-12-19 16:56:50.820 +05:30 [Debug] Connection id ""0HLA6QBTR967T"" completed keep alive response. +2017-12-19 16:56:50.862 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:50.862 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:56:50.863 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:50.864 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:50.865 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4318.7292ms +2017-12-19 16:56:50.868 +05:30 [Information] Request finished in 4324.109ms 200 application/json; charset=utf-8 +2017-12-19 16:56:50.868 +05:30 [Debug] Connection id ""0HLA6QBTR967U"" completed keep alive response. +2017-12-19 16:56:52.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 16:56:53.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:56:53.966 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:56:53.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:56:53.967 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:56:53.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4126.606ms +2017-12-19 16:56:53.971 +05:30 [Information] Request finished in 4132.6872ms 200 application/json; charset=utf-8 +2017-12-19 16:56:53.974 +05:30 [Debug] Connection id ""0HLA6QBTR967R"" completed keep alive response. +2017-12-19 16:59:22.564 +05:30 [Debug] Connection id ""0HLA6QBTR967Q"" received FIN. +2017-12-19 16:59:22.564 +05:30 [Debug] Connection id ""0HLA6QBTR967S"" received FIN. +2017-12-19 16:59:22.565 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" received FIN. +2017-12-19 16:59:22.566 +05:30 [Debug] Connection id ""0HLA6QBTR967T"" received FIN. +2017-12-19 16:59:22.565 +05:30 [Debug] Connection id ""0HLA6QBTR967U"" received FIN. +2017-12-19 16:59:22.566 +05:30 [Debug] Connection id ""0HLA6QBTR967Q"" disconnecting. +2017-12-19 16:59:22.566 +05:30 [Debug] Connection id ""0HLA6QBTR967R"" received FIN. +2017-12-19 16:59:22.567 +05:30 [Debug] Connection id ""0HLA6QBTR967Q"" sending FIN. +2017-12-19 16:59:22.566 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" disconnecting. +2017-12-19 16:59:22.568 +05:30 [Debug] Connection id ""0HLA6QBTR967U"" disconnecting. +2017-12-19 16:59:22.568 +05:30 [Debug] Connection id ""0HLA6QBTR967U"" sending FIN. +2017-12-19 16:59:22.568 +05:30 [Debug] Connection id ""0HLA6QBTR967R"" disconnecting. +2017-12-19 16:59:22.569 +05:30 [Debug] Connection id ""0HLA6QBTR967U"" sent FIN with status "0". +2017-12-19 16:59:22.570 +05:30 [Debug] Connection id ""0HLA6QBTR967U"" stopped. +2017-12-19 16:59:22.570 +05:30 [Debug] Connection id ""0HLA6QBTR967R"" sending FIN. +2017-12-19 16:59:22.567 +05:30 [Debug] Connection id ""0HLA6QBTR967T"" disconnecting. +2017-12-19 16:59:22.571 +05:30 [Debug] Connection id ""0HLA6QBTR967R"" sent FIN with status "0". +2017-12-19 16:59:22.567 +05:30 [Debug] Connection id ""0HLA6QBTR967Q"" sent FIN with status "0". +2017-12-19 16:59:22.572 +05:30 [Debug] Connection id ""0HLA6QBTR967Q"" stopped. +2017-12-19 16:59:22.572 +05:30 [Debug] Connection id ""0HLA6QBTR967R"" stopped. +2017-12-19 16:59:22.572 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" sending FIN. +2017-12-19 16:59:22.566 +05:30 [Debug] Connection id ""0HLA6QBTR967S"" disconnecting. +2017-12-19 16:59:22.573 +05:30 [Debug] Connection id ""0HLA6QBTR967T"" sending FIN. +2017-12-19 16:59:22.573 +05:30 [Debug] Connection id ""0HLA6QBTR967S"" sending FIN. +2017-12-19 16:59:22.574 +05:30 [Debug] Connection id ""0HLA6QBTR967T"" sent FIN with status "0". +2017-12-19 16:59:22.574 +05:30 [Debug] Connection id ""0HLA6QBTR967S"" sent FIN with status "0". +2017-12-19 16:59:22.574 +05:30 [Debug] Connection id ""0HLA6QBTR967T"" stopped. +2017-12-19 16:59:22.575 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" sent FIN with status "0". +2017-12-19 16:59:22.575 +05:30 [Debug] Connection id ""0HLA6QBTR967P"" stopped. +2017-12-19 16:59:22.575 +05:30 [Debug] Connection id ""0HLA6QBTR967S"" stopped. +2017-12-19 16:59:38.511 +05:30 [Debug] Connection id ""0HLA6QBTR967V"" started. +2017-12-19 16:59:38.513 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 16:59:38.513 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 16:59:38.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 16:59:41.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 16:59:42.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:59:42.130 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:59:42.133 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:59:42.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3619.5382ms +2017-12-19 16:59:42.146 +05:30 [Information] Request finished in 3632.3555ms 200 application/json; charset=utf-8 +2017-12-19 16:59:42.147 +05:30 [Debug] Connection id ""0HLA6QBTR967V"" completed keep alive response. +2017-12-19 16:59:42.151 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500432&groupId=1152625 +2017-12-19 16:59:42.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 16:59:42.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 16:59:45.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500432", "1152625"]) - ModelState is Valid +2017-12-19 16:59:47.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:59:47.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:59:47.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:59:47.103 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4948.5538ms +2017-12-19 16:59:47.107 +05:30 [Information] Request finished in 4954.6548ms 200 application/json; charset=utf-8 +2017-12-19 16:59:47.107 +05:30 [Debug] Connection id ""0HLA6QBTR967V"" completed keep alive response. +2017-12-19 16:59:50.121 +05:30 [Debug] Connection id ""0HLA6QBTR9681"" started. +2017-12-19 16:59:50.121 +05:30 [Debug] Connection id ""0HLA6QBTR9680"" started. +2017-12-19 16:59:50.124 +05:30 [Debug] Connection id ""0HLA6QBTR9682"" started. +2017-12-19 16:59:50.125 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152625 +2017-12-19 16:59:50.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 16:59:50.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 16:59:50.144 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500432 +2017-12-19 16:59:50.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 16:59:50.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 16:59:50.217 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500432 +2017-12-19 16:59:50.217 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 16:59:50.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 16:59:50.230 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500432 +2017-12-19 16:59:50.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 16:59:50.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 16:59:50.868 +05:30 [Debug] Connection id ""0HLA6QBTR9683"" started. +2017-12-19 16:59:50.934 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152625 +2017-12-19 16:59:50.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 16:59:50.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 16:59:51.423 +05:30 [Debug] Connection id ""0HLA6QBTR9684"" started. +2017-12-19 16:59:52.658 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500432 +2017-12-19 16:59:52.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 16:59:52.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 16:59:54.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 16:59:54.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 16:59:54.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 16:59:54.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 16:59:55.319 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:59:55.319 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:59:55.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:59:55.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:59:55.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5102.5742ms +2017-12-19 16:59:55.324 +05:30 [Information] Request finished in 5199.1037ms 200 application/json; charset=utf-8 +2017-12-19 16:59:55.325 +05:30 [Debug] Connection id ""0HLA6QBTR9680"" completed keep alive response. +2017-12-19 16:59:55.340 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152625&userId=500432 +2017-12-19 16:59:55.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 16:59:55.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 16:59:55.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:59:55.368 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:59:55.368 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:59:55.369 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:59:55.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5135.1581ms +2017-12-19 16:59:55.420 +05:30 [Information] Request finished in 5290.189ms 200 application/json; charset=utf-8 +2017-12-19 16:59:55.420 +05:30 [Debug] Connection id ""0HLA6QBTR9681"" completed keep alive response. +2017-12-19 16:59:55.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:59:55.539 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:59:55.539 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:59:55.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:59:55.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5402.8946ms +2017-12-19 16:59:55.547 +05:30 [Information] Request finished in 5430.137ms 200 application/json; charset=utf-8 +2017-12-19 16:59:55.547 +05:30 [Debug] Connection id ""0HLA6QBTR967V"" completed keep alive response. +2017-12-19 16:59:55.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 16:59:55.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:59:55.891 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:59:55.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:59:55.894 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 16:59:55.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:59:55.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5727.881ms +2017-12-19 16:59:55.938 +05:30 [Information] Request finished in 5810.8783ms 200 application/json; charset=utf-8 +2017-12-19 16:59:55.939 +05:30 [Debug] Connection id ""0HLA6QBTR9682"" completed keep alive response. +2017-12-19 16:59:56.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:59:56.899 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:59:56.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:59:56.900 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:59:56.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4241.9695ms +2017-12-19 16:59:56.906 +05:30 [Information] Request finished in 4247.8662ms 200 application/json; charset=utf-8 +2017-12-19 16:59:56.906 +05:30 [Debug] Connection id ""0HLA6QBTR9684"" completed keep alive response. +2017-12-19 16:59:56.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:59:57.000 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:59:57.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:59:57.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:59:57.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6066.2675ms +2017-12-19 16:59:57.005 +05:30 [Information] Request finished in 6104.5976ms 200 application/json; charset=utf-8 +2017-12-19 16:59:57.005 +05:30 [Debug] Connection id ""0HLA6QBTR9683"" completed keep alive response. +2017-12-19 16:59:58.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 16:59:59.538 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 16:59:59.538 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 16:59:59.539 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 16:59:59.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 16:59:59.540 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4199.1463ms +2017-12-19 16:59:59.542 +05:30 [Information] Request finished in 4211.1804ms 200 application/json; charset=utf-8 +2017-12-19 16:59:59.543 +05:30 [Debug] Connection id ""0HLA6QBTR9680"" completed keep alive response. +2017-12-19 17:00:09.915 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500432$profileId=134715397262944 0 +2017-12-19 17:00:09.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:00:09.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:00:13.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["0", ""]) - ModelState is Invalid +2017-12-19 17:00:20.039 +05:30 [Fatal] PartialEvalException (NullReferenceException ("Object reference not set to an instance of an object."), null.EmailId) +2017-12-19 17:00:20.041 +05:30 [Error] at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.Visit(Expression expression, VisitorParameters parameters) + at NHibernate.Linq.Visitors.QueryModelVisitor.VisitWhereClause(WhereClause whereClause, QueryModel queryModel, Int32 index) + at Remotion.Linq.Clauses.WhereClause.Accept(IQueryModelVisitor visitor, QueryModel queryModel, Int32 index) + at Remotion.Linq.QueryModelVisitorBase.VisitBodyClauses(ObservableCollection`1 bodyClauses, QueryModel queryModel) + at Remotion.Linq.QueryModelVisitorBase.VisitQueryModel(QueryModel queryModel) + at NHibernate.Linq.Visitors.QueryModelVisitor.Visit() + at NHibernate.Linq.Visitors.QueryModelVisitor.GenerateHqlQuery(QueryModel queryModel, VisitorParameters parameters, Boolean root) + at NHibernate.Linq.NhLinqExpression.Translate(ISessionFactoryImplementor sessionFactory, Boolean filter) + at NHibernate.Hql.Ast.ANTLR.ASTQueryTranslatorFactory.CreateQueryTranslators(IQueryExpression queryExpression, String collectionRole, Boolean shallow, IDictionary`2 filters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryExpressionPlan.CreateTranslators(IQueryExpression queryExpression, String collectionRole, Boolean shallow, IDictionary`2 enabledFilters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryExpressionPlan..ctor(IQueryExpression queryExpression, Boolean shallow, IDictionary`2 enabledFilters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryPlanCache.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow, IDictionary`2 enabledFilters) + at NHibernate.Impl.AbstractSessionImpl.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow) + at NHibernate.Impl.AbstractSessionImpl.CreateQuery(IQueryExpression queryExpression) + at NHibernate.Linq.DefaultQueryProvider.PrepareQuery(Expression expression, IQuery& query, NhLinqExpression& nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-12-19 17:00:33.033 +05:30 [Error] An unhandled exception has occurred while executing the request +System.ArgumentNullException: Value cannot be null. +Parameter name: source + at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source) + at Api.Socioboard.Repositories.GroupProfilesRepository.IsPrimaryAccount(Int64 userId, String profileId, DatabaseRepository dbr, AppSettings _appSettings) in D:\SBPROJECT\Developer\src\Api.Socioboard\Repositories\GroupProfilesRepository.cs:line 451 + at Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc(Int64 userId, String profileId) in D:\SBPROJECT\Developer\src\Api.Socioboard\Controllers\GroupProfilesController.cs:line 84 + at lambda_method(Closure , Object , Object[] ) + at Microsoft.AspNetCore.Mvc.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__28.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.d__18.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Builder.RouterMiddleware.d__4.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.d__6.MoveNext() +2017-12-19 17:00:33.276 +05:30 [Debug] Connection id ""0HLA6QBTR9681"" received FIN. +2017-12-19 17:00:33.319 +05:30 [Debug] Connection id ""0HLA6QBTR9681"" disconnecting. +2017-12-19 17:00:33.341 +05:30 [Information] Connection id ""0HLA6QBTR9681"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-19 17:00:33.344 +05:30 [Information] Connection id ""0HLA6QBTR9681"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-19 17:00:33.345 +05:30 [Debug] Connection id ""0HLA6QBTR9681"" stopped. +2017-12-19 17:00:33.345 +05:30 [Debug] Connection id ""0HLA6QBTR9681"" write of "0" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-19 17:00:33.347 +05:30 [Information] Request finished in 23436.9185ms 500 text/html; charset=utf-8 +2017-12-19 17:01:12.551 +05:30 [Debug] Connection id ""0HLA6QBTR967V"" received FIN. +2017-12-19 17:01:12.551 +05:30 [Debug] Connection id ""0HLA6QBTR9682"" received FIN. +2017-12-19 17:01:12.551 +05:30 [Debug] Connection id ""0HLA6QBTR967V"" disconnecting. +2017-12-19 17:01:12.551 +05:30 [Debug] Connection id ""0HLA6QBTR9684"" received FIN. +2017-12-19 17:01:12.551 +05:30 [Debug] Connection id ""0HLA6QBTR9683"" received FIN. +2017-12-19 17:01:12.552 +05:30 [Debug] Connection id ""0HLA6QBTR9682"" disconnecting. +2017-12-19 17:01:12.552 +05:30 [Debug] Connection id ""0HLA6QBTR967V"" sending FIN. +2017-12-19 17:01:12.552 +05:30 [Debug] Connection id ""0HLA6QBTR9682"" sending FIN. +2017-12-19 17:01:12.552 +05:30 [Debug] Connection id ""0HLA6QBTR967V"" sent FIN with status "0". +2017-12-19 17:01:12.553 +05:30 [Debug] Connection id ""0HLA6QBTR967V"" stopped. +2017-12-19 17:01:12.553 +05:30 [Debug] Connection id ""0HLA6QBTR9680"" received FIN. +2017-12-19 17:01:12.553 +05:30 [Debug] Connection id ""0HLA6QBTR9682"" sent FIN with status "0". +2017-12-19 17:01:12.553 +05:30 [Debug] Connection id ""0HLA6QBTR9682"" stopped. +2017-12-19 17:01:12.554 +05:30 [Debug] Connection id ""0HLA6QBTR9683"" disconnecting. +2017-12-19 17:01:12.555 +05:30 [Debug] Connection id ""0HLA6QBTR9680"" disconnecting. +2017-12-19 17:01:12.552 +05:30 [Debug] Connection id ""0HLA6QBTR9684"" disconnecting. +2017-12-19 17:01:12.557 +05:30 [Debug] Connection id ""0HLA6QBTR9684"" sending FIN. +2017-12-19 17:01:12.557 +05:30 [Debug] Connection id ""0HLA6QBTR9684"" sent FIN with status "0". +2017-12-19 17:01:12.557 +05:30 [Debug] Connection id ""0HLA6QBTR9684"" stopped. +2017-12-19 17:01:12.556 +05:30 [Debug] Connection id ""0HLA6QBTR9683"" sending FIN. +2017-12-19 17:01:12.558 +05:30 [Debug] Connection id ""0HLA6QBTR9680"" sending FIN. +2017-12-19 17:01:12.558 +05:30 [Debug] Connection id ""0HLA6QBTR9680"" sent FIN with status "0". +2017-12-19 17:01:12.558 +05:30 [Debug] Connection id ""0HLA6QBTR9680"" stopped. +2017-12-19 17:01:12.558 +05:30 [Debug] Connection id ""0HLA6QBTR9683"" sent FIN with status "0". +2017-12-19 17:01:12.559 +05:30 [Debug] Connection id ""0HLA6QBTR9683"" stopped. +2017-12-19 17:01:55.689 +05:30 [Debug] Hosting starting +2017-12-19 17:01:55.914 +05:30 [Debug] Hosting started +2017-12-19 17:01:55.963 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" started. +2017-12-19 17:01:55.963 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" started. +2017-12-19 17:01:56.190 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 17:01:56.190 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 17:01:56.284 +05:30 [Information] Request finished in 138.8162ms 200 +2017-12-19 17:01:56.349 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" completed keep alive response. +2017-12-19 17:01:57.817 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 17:01:57.897 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"dcd4b983-3900-4e8d-ac47-2bcf72bb1633"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 17:01:58.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 17:01:58.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 17:01:58.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 17:01:58.224 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:01:58.225 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:01:58.229 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:01:58.262 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:01:58.266 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:01:58.268 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:01:58.615 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 544.7429ms +2017-12-19 17:01:58.675 +05:30 [Information] Request finished in 2550.9434ms 200 application/json; charset=utf-8 +2017-12-19 17:01:58.677 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" completed keep alive response. +2017-12-19 17:01:58.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-19 17:01:58.691 +05:30 [Debug] Request did not match any routes. +2017-12-19 17:01:58.708 +05:30 [Debug] The request path "" does not match the path filter +2017-12-19 17:01:58.710 +05:30 [Information] Request finished in 22.1256ms 404 +2017-12-19 17:01:58.710 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" completed keep alive response. +2017-12-19 17:02:01.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:02:07.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:02:07.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:02:07.736 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:02:07.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9508.9422ms +2017-12-19 17:02:07.742 +05:30 [Information] Request finished in 9517.2333ms 200 application/json; charset=utf-8 +2017-12-19 17:02:07.743 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" completed keep alive response. +2017-12-19 17:02:18.074 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:02:18.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:02:18.078 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:02:20.526 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:02:20.528 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:02:20.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:02:21.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:02:21.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:02:21.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:02:21.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:02:21.684 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3604.0395ms +2017-12-19 17:02:21.691 +05:30 [Information] Request finished in 3617.6171ms 200 application/json; charset=utf-8 +2017-12-19 17:02:21.692 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" completed keep alive response. +2017-12-19 17:02:21.742 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:02:21.743 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:02:21.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:02:23.560 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:02:24.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:02:24.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:02:24.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:02:24.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3571.8083ms +2017-12-19 17:02:24.108 +05:30 [Information] Request finished in 3581.1366ms 200 application/json; charset=utf-8 +2017-12-19 17:02:24.109 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" completed keep alive response. +2017-12-19 17:02:24.989 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:02:25.532 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:02:25.532 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:02:25.534 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:02:25.540 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3791.9694ms +2017-12-19 17:02:25.546 +05:30 [Information] Request finished in 3807.2361ms 200 application/json; charset=utf-8 +2017-12-19 17:02:25.546 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" completed keep alive response. +2017-12-19 17:02:25.627 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:02:25.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:02:25.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:02:28.124 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 196 +2017-12-19 17:02:28.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 17:02:28.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 17:02:28.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:02:29.243 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:02:29.243 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:02:29.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:02:29.249 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3617.2797ms +2017-12-19 17:02:29.255 +05:30 [Information] Request finished in 3643.2983ms 200 application/json; charset=utf-8 +2017-12-19 17:02:29.256 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" completed keep alive response. +2017-12-19 17:02:31.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAOocMD0MSdqSh9yKET1RahYZCZA0EAijgzuofExeDQUapXlRrEM1Ahj2kBRrgL5dm7sxPaESaTmmV3OkVrRYtbPIrtZCWH2928arNH5c32HoUXzzw2JWAFN7nnPXixA6k8qaJ2UPhRJ1utxymfGBOMuOAho0gZDZD", "Free"]) - ModelState is Valid +2017-12-19 17:02:59.759 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:02:59.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:02:59.764 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:01.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 33162.3905ms +2017-12-19 17:03:01.296 +05:30 [Information] Request finished in 33172.4759ms 200 application/json; charset=utf-8 +2017-12-19 17:03:01.296 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" completed keep alive response. +2017-12-19 17:03:01.742 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:03:01.743 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:03:01.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:03:04.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:03:05.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:03:05.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:03:05.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:05.350 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3603.4355ms +2017-12-19 17:03:05.353 +05:30 [Information] Request finished in 3609.4653ms 200 application/json; charset=utf-8 +2017-12-19 17:03:05.354 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" completed keep alive response. +2017-12-19 17:03:05.415 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500432&groupId= +2017-12-19 17:03:05.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:03:05.417 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:03:07.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500432", ""]) - ModelState is Valid +2017-12-19 17:03:09.386 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:03:09.387 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:03:09.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:09.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4027.2414ms +2017-12-19 17:03:09.450 +05:30 [Information] Request finished in 4037.3404ms 200 application/json; charset=utf-8 +2017-12-19 17:03:09.451 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" completed keep alive response. +2017-12-19 17:03:11.359 +05:30 [Debug] Connection id ""0HLA6QGDVS5SN"" started. +2017-12-19 17:03:11.359 +05:30 [Debug] Connection id ""0HLA6QGDVS5SO"" started. +2017-12-19 17:03:11.363 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500432 +2017-12-19 17:03:11.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:03:11.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:03:11.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500432 +2017-12-19 17:03:11.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:03:11.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:03:11.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500432 +2017-12-19 17:03:11.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:03:11.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:03:11.419 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152625 +2017-12-19 17:03:11.419 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:03:11.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:03:11.460 +05:30 [Debug] Connection id ""0HLA6QGDVS5SP"" started. +2017-12-19 17:03:11.462 +05:30 [Debug] Connection id ""0HLA6QGDVS5SQ"" started. +2017-12-19 17:03:11.464 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152625&userId=500432 +2017-12-19 17:03:11.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:03:11.466 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:03:12.316 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500432 +2017-12-19 17:03:12.317 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:03:12.328 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:03:15.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:03:15.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:03:16.346 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:03:16.451 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:03:16.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:03:16.451 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:03:16.564 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:03:16.564 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:03:16.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:03:16.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:16.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5157.6626ms +2017-12-19 17:03:16.570 +05:30 [Information] Request finished in 5207.8293ms 200 application/json; charset=utf-8 +2017-12-19 17:03:16.570 +05:30 [Debug] Connection id ""0HLA6QGDVS5SO"" completed keep alive response. +2017-12-19 17:03:16.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152625 +2017-12-19 17:03:16.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:03:16.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:03:17.266 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:03:17.266 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:03:17.266 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:03:17.267 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:17.272 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5878.1277ms +2017-12-19 17:03:17.275 +05:30 [Information] Request finished in 5925.9168ms 200 application/json; charset=utf-8 +2017-12-19 17:03:17.275 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" completed keep alive response. +2017-12-19 17:03:18.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:03:18.642 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:03:18.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:03:18.643 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:18.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7285.6716ms +2017-12-19 17:03:18.656 +05:30 [Information] Request finished in 7306.7019ms 200 application/json; charset=utf-8 +2017-12-19 17:03:18.656 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" completed keep alive response. +2017-12-19 17:03:18.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:03:18.701 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:03:18.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:03:18.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:18.717 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7292.2787ms +2017-12-19 17:03:18.719 +05:30 [Information] Request finished in 7356.3175ms 200 application/json; charset=utf-8 +2017-12-19 17:03:18.719 +05:30 [Debug] Connection id ""0HLA6QGDVS5SN"" completed keep alive response. +2017-12-19 17:03:18.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:03:18.934 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:03:18.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:03:18.935 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:18.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6606.5176ms +2017-12-19 17:03:18.939 +05:30 [Information] Request finished in 6622.0397ms 200 application/json; charset=utf-8 +2017-12-19 17:03:18.939 +05:30 [Debug] Connection id ""0HLA6QGDVS5SP"" completed keep alive response. +2017-12-19 17:03:18.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:03:18.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:03:18.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:03:18.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:18.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7505.267ms +2017-12-19 17:03:18.976 +05:30 [Information] Request finished in 7511.8302ms 200 application/json; charset=utf-8 +2017-12-19 17:03:18.976 +05:30 [Debug] Connection id ""0HLA6QGDVS5SQ"" completed keep alive response. +2017-12-19 17:03:19.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:03:20.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:03:20.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:03:20.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:03:20.803 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:03:20.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4299.109ms +2017-12-19 17:03:20.879 +05:30 [Information] Request finished in 4304.9261ms 200 application/json; charset=utf-8 +2017-12-19 17:03:20.879 +05:30 [Debug] Connection id ""0HLA6QGDVS5SO"" completed keep alive response. +2017-12-19 17:05:23.658 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" received FIN. +2017-12-19 17:05:23.660 +05:30 [Debug] Connection id ""0HLA6QGDVS5SP"" received FIN. +2017-12-19 17:05:23.660 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" received FIN. +2017-12-19 17:05:23.660 +05:30 [Debug] Connection id ""0HLA6QGDVS5SO"" received FIN. +2017-12-19 17:05:23.660 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" disconnecting. +2017-12-19 17:05:23.663 +05:30 [Debug] Connection id ""0HLA6QGDVS5SN"" received FIN. +2017-12-19 17:05:23.663 +05:30 [Debug] Connection id ""0HLA6QGDVS5SP"" disconnecting. +2017-12-19 17:05:23.663 +05:30 [Debug] Connection id ""0HLA6QGDVS5SQ"" received FIN. +2017-12-19 17:05:23.664 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" disconnecting. +2017-12-19 17:05:23.664 +05:30 [Debug] Connection id ""0HLA6QGDVS5SO"" disconnecting. +2017-12-19 17:05:23.664 +05:30 [Debug] Connection id ""0HLA6QGDVS5SP"" sending FIN. +2017-12-19 17:05:23.664 +05:30 [Debug] Connection id ""0HLA6QGDVS5SN"" disconnecting. +2017-12-19 17:05:23.664 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" sending FIN. +2017-12-19 17:05:23.665 +05:30 [Debug] Connection id ""0HLA6QGDVS5SQ"" disconnecting. +2017-12-19 17:05:23.670 +05:30 [Debug] Connection id ""0HLA6QGDVS5SN"" sending FIN. +2017-12-19 17:05:23.670 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" sending FIN. +2017-12-19 17:05:23.671 +05:30 [Debug] Connection id ""0HLA6QGDVS5SO"" sending FIN. +2017-12-19 17:05:23.671 +05:30 [Debug] Connection id ""0HLA6QGDVS5SQ"" sending FIN. +2017-12-19 17:05:23.679 +05:30 [Debug] Connection id ""0HLA6QGDVS5SQ"" sent FIN with status "0". +2017-12-19 17:05:23.679 +05:30 [Debug] Connection id ""0HLA6QGDVS5SO"" sent FIN with status "0". +2017-12-19 17:05:23.682 +05:30 [Debug] Connection id ""0HLA6QGDVS5SO"" stopped. +2017-12-19 17:05:23.682 +05:30 [Debug] Connection id ""0HLA6QGDVS5SQ"" stopped. +2017-12-19 17:05:23.683 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" sent FIN with status "0". +2017-12-19 17:05:23.683 +05:30 [Debug] Connection id ""0HLA6QGDVS5SN"" sent FIN with status "0". +2017-12-19 17:05:23.683 +05:30 [Debug] Connection id ""0HLA6QGDVS5SL"" stopped. +2017-12-19 17:05:23.683 +05:30 [Debug] Connection id ""0HLA6QGDVS5SN"" stopped. +2017-12-19 17:05:23.684 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" sent FIN with status "0". +2017-12-19 17:05:23.684 +05:30 [Debug] Connection id ""0HLA6QGDVS5SM"" stopped. +2017-12-19 17:05:23.684 +05:30 [Debug] Connection id ""0HLA6QGDVS5SP"" sent FIN with status "0". +2017-12-19 17:05:23.684 +05:30 [Debug] Connection id ""0HLA6QGDVS5SP"" stopped. +2017-12-19 17:05:23.685 +05:30 [Debug] Connection id ""0HLA6QGDVS5SR"" started. +2017-12-19 17:05:23.686 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500432$profileId=134715397262944 0 +2017-12-19 17:05:23.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:05:23.688 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:05:26.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["0", ""]) - ModelState is Invalid +2017-12-19 17:05:45.162 +05:30 [Fatal] PartialEvalException (NullReferenceException ("Object reference not set to an instance of an object."), null.EmailId) +2017-12-19 17:05:45.218 +05:30 [Error] at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.Visit(Expression expression, VisitorParameters parameters) + at NHibernate.Linq.Visitors.QueryModelVisitor.VisitWhereClause(WhereClause whereClause, QueryModel queryModel, Int32 index) + at Remotion.Linq.Clauses.WhereClause.Accept(IQueryModelVisitor visitor, QueryModel queryModel, Int32 index) + at Remotion.Linq.QueryModelVisitorBase.VisitBodyClauses(ObservableCollection`1 bodyClauses, QueryModel queryModel) + at Remotion.Linq.QueryModelVisitorBase.VisitQueryModel(QueryModel queryModel) + at NHibernate.Linq.Visitors.QueryModelVisitor.Visit() + at NHibernate.Linq.Visitors.QueryModelVisitor.GenerateHqlQuery(QueryModel queryModel, VisitorParameters parameters, Boolean root) + at NHibernate.Linq.NhLinqExpression.Translate(ISessionFactoryImplementor sessionFactory, Boolean filter) + at NHibernate.Hql.Ast.ANTLR.ASTQueryTranslatorFactory.CreateQueryTranslators(IQueryExpression queryExpression, String collectionRole, Boolean shallow, IDictionary`2 filters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryExpressionPlan.CreateTranslators(IQueryExpression queryExpression, String collectionRole, Boolean shallow, IDictionary`2 enabledFilters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryExpressionPlan..ctor(IQueryExpression queryExpression, Boolean shallow, IDictionary`2 enabledFilters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryPlanCache.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow, IDictionary`2 enabledFilters) + at NHibernate.Impl.AbstractSessionImpl.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow) + at NHibernate.Impl.AbstractSessionImpl.CreateQuery(IQueryExpression queryExpression) + at NHibernate.Linq.DefaultQueryProvider.PrepareQuery(Expression expression, IQuery& query, NhLinqExpression& nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-12-19 17:06:15.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:06:15.730 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:06:15.730 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:06:15.731 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:06:15.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 52042.4058ms +2017-12-19 17:06:15.735 +05:30 [Information] Request finished in 52048.4623ms 200 text/plain; charset=utf-8 +2017-12-19 17:06:15.736 +05:30 [Debug] Connection id ""0HLA6QGDVS5SR"" completed keep alive response. +2017-12-19 17:07:26.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5SR"" received FIN. +2017-12-19 17:07:26.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5SR"" disconnecting. +2017-12-19 17:07:26.212 +05:30 [Debug] Connection id ""0HLA6QGDVS5SR"" sending FIN. +2017-12-19 17:07:26.213 +05:30 [Debug] Connection id ""0HLA6QGDVS5SR"" sent FIN with status "0". +2017-12-19 17:07:26.213 +05:30 [Debug] Connection id ""0HLA6QGDVS5SR"" stopped. +2017-12-19 17:08:47.585 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" started. +2017-12-19 17:08:47.592 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:08:47.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:08:47.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:08:50.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:08:51.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:08:51.199 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:08:51.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:08:51.202 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3606.8815ms +2017-12-19 17:08:51.205 +05:30 [Information] Request finished in 3617.3435ms 200 application/json; charset=utf-8 +2017-12-19 17:08:51.205 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" completed keep alive response. +2017-12-19 17:08:51.211 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500432&groupId=1152625 +2017-12-19 17:08:51.211 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:08:51.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:08:54.267 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500432", "1152625"]) - ModelState is Valid +2017-12-19 17:08:55.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:08:55.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:08:55.949 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:08:55.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4737.5981ms +2017-12-19 17:08:55.955 +05:30 [Information] Request finished in 4743.2ms 200 application/json; charset=utf-8 +2017-12-19 17:08:55.955 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" completed keep alive response. +2017-12-19 17:08:59.166 +05:30 [Debug] Connection id ""0HLA6QGDVS5ST"" started. +2017-12-19 17:08:59.166 +05:30 [Debug] Connection id ""0HLA6QGDVS5SU"" started. +2017-12-19 17:08:59.167 +05:30 [Debug] Connection id ""0HLA6QGDVS5SV"" started. +2017-12-19 17:08:59.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500432 +2017-12-19 17:08:59.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:08:59.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:08:59.257 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152625 +2017-12-19 17:08:59.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:08:59.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:08:59.335 +05:30 [Debug] Connection id ""0HLA6QGDVS5T0"" started. +2017-12-19 17:08:59.336 +05:30 [Debug] Connection id ""0HLA6QGDVS5T1"" started. +2017-12-19 17:08:59.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500432 +2017-12-19 17:08:59.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:08:59.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:08:59.480 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500432 +2017-12-19 17:08:59.481 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:08:59.481 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:08:59.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152625&userId=500432 +2017-12-19 17:08:59.522 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:08:59.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:08:59.583 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500432 +2017-12-19 17:08:59.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:08:59.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:09:01.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:09:02.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:09:02.205 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:09:02.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:09:02.206 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:09:02.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2961.7915ms +2017-12-19 17:09:02.210 +05:30 [Information] Request finished in 3050.4892ms 200 application/json; charset=utf-8 +2017-12-19 17:09:02.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" completed keep alive response. +2017-12-19 17:09:02.215 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152625 +2017-12-19 17:09:02.215 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:09:02.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:09:02.562 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:09:02.658 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:09:02.774 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:09:02.800 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:09:02.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:09:03.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:09:03.260 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:09:03.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:09:03.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:09:03.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3984.7556ms +2017-12-19 17:09:03.266 +05:30 [Information] Request finished in 4097.1344ms 200 application/json; charset=utf-8 +2017-12-19 17:09:03.266 +05:30 [Debug] Connection id ""0HLA6QGDVS5SV"" completed keep alive response. +2017-12-19 17:09:04.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:09:04.899 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:09:04.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:09:04.901 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:09:04.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5479.6425ms +2017-12-19 17:09:04.908 +05:30 [Information] Request finished in 5660.6307ms 200 application/json; charset=utf-8 +2017-12-19 17:09:04.909 +05:30 [Debug] Connection id ""0HLA6QGDVS5SU"" completed keep alive response. +2017-12-19 17:09:05.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:09:05.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:09:05.289 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:09:05.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:09:05.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:09:05.291 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:09:05.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:09:05.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:09:05.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:09:05.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5709.2794ms +2017-12-19 17:09:05.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5815.498ms +2017-12-19 17:09:05.324 +05:30 [Information] Request finished in 6132.8078ms 200 application/json; charset=utf-8 +2017-12-19 17:09:05.325 +05:30 [Debug] Connection id ""0HLA6QGDVS5ST"" completed keep alive response. +2017-12-19 17:09:05.326 +05:30 [Information] Request finished in 5989.2839ms 200 application/json; charset=utf-8 +2017-12-19 17:09:05.327 +05:30 [Debug] Connection id ""0HLA6QGDVS5T0"" completed keep alive response. +2017-12-19 17:09:05.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:09:05.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:09:05.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:09:05.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:09:05.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5916.3185ms +2017-12-19 17:09:05.442 +05:30 [Information] Request finished in 6104.3115ms 200 application/json; charset=utf-8 +2017-12-19 17:09:05.443 +05:30 [Debug] Connection id ""0HLA6QGDVS5T1"" completed keep alive response. +2017-12-19 17:09:06.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:09:06.423 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:09:06.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:09:06.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:09:06.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4208.0081ms +2017-12-19 17:09:06.428 +05:30 [Information] Request finished in 4212.5961ms 200 application/json; charset=utf-8 +2017-12-19 17:09:06.428 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" completed keep alive response. +2017-12-19 17:10:50.999 +05:30 [Debug] Connection id ""0HLA6QGDVS5SV"" received FIN. +2017-12-19 17:10:50.999 +05:30 [Debug] Connection id ""0HLA6QGDVS5SU"" received FIN. +2017-12-19 17:10:50.999 +05:30 [Debug] Connection id ""0HLA6QGDVS5ST"" received FIN. +2017-12-19 17:10:50.999 +05:30 [Debug] Connection id ""0HLA6QGDVS5T0"" received FIN. +2017-12-19 17:10:50.999 +05:30 [Debug] Connection id ""0HLA6QGDVS5T1"" received FIN. +2017-12-19 17:10:51.000 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" received FIN. +2017-12-19 17:10:51.000 +05:30 [Debug] Connection id ""0HLA6QGDVS5T2"" started. +2017-12-19 17:10:51.000 +05:30 [Debug] Connection id ""0HLA6QGDVS5SV"" disconnecting. +2017-12-19 17:10:51.000 +05:30 [Debug] Connection id ""0HLA6QGDVS5SV"" sending FIN. +2017-12-19 17:10:51.001 +05:30 [Debug] Connection id ""0HLA6QGDVS5SU"" disconnecting. +2017-12-19 17:10:51.001 +05:30 [Debug] Connection id ""0HLA6QGDVS5SV"" sent FIN with status "0". +2017-12-19 17:10:51.001 +05:30 [Debug] Connection id ""0HLA6QGDVS5ST"" disconnecting. +2017-12-19 17:10:51.001 +05:30 [Debug] Connection id ""0HLA6QGDVS5SV"" stopped. +2017-12-19 17:10:51.002 +05:30 [Debug] Connection id ""0HLA6QGDVS5T0"" disconnecting. +2017-12-19 17:10:51.002 +05:30 [Debug] Connection id ""0HLA6QGDVS5ST"" sending FIN. +2017-12-19 17:10:51.002 +05:30 [Debug] Connection id ""0HLA6QGDVS5T1"" disconnecting. +2017-12-19 17:10:51.003 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" disconnecting. +2017-12-19 17:10:51.002 +05:30 [Debug] Connection id ""0HLA6QGDVS5ST"" sent FIN with status "0". +2017-12-19 17:10:51.001 +05:30 [Debug] Connection id ""0HLA6QGDVS5SU"" sending FIN. +2017-12-19 17:10:51.004 +05:30 [Debug] Connection id ""0HLA6QGDVS5ST"" stopped. +2017-12-19 17:10:51.004 +05:30 [Debug] Connection id ""0HLA6QGDVS5T0"" sending FIN. +2017-12-19 17:10:51.004 +05:30 [Debug] Connection id ""0HLA6QGDVS5T1"" sending FIN. +2017-12-19 17:10:51.005 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" sending FIN. +2017-12-19 17:10:51.005 +05:30 [Debug] Connection id ""0HLA6QGDVS5T1"" sent FIN with status "0". +2017-12-19 17:10:51.005 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" sent FIN with status "0". +2017-12-19 17:10:51.006 +05:30 [Debug] Connection id ""0HLA6QGDVS5T1"" stopped. +2017-12-19 17:10:51.006 +05:30 [Debug] Connection id ""0HLA6QGDVS5SS"" stopped. +2017-12-19 17:10:51.007 +05:30 [Debug] Connection id ""0HLA6QGDVS5T0"" sent FIN with status "0". +2017-12-19 17:10:51.007 +05:30 [Debug] Connection id ""0HLA6QGDVS5T0"" stopped. +2017-12-19 17:10:51.008 +05:30 [Debug] Connection id ""0HLA6QGDVS5SU"" sent FIN with status "0". +2017-12-19 17:10:51.009 +05:30 [Debug] Connection id ""0HLA6QGDVS5SU"" stopped. +2017-12-19 17:10:51.037 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500432&profileId=134715397262944 0 +2017-12-19 17:10:51.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:10:51.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:10:54.102 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500432", "134715397262944"]) - ModelState is Valid +2017-12-19 17:11:23.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:11:23.538 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:11:23.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:11:23.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:11:23.539 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 32499.3019ms +2017-12-19 17:11:23.541 +05:30 [Information] Request finished in 32527.3134ms 200 text/plain; charset=utf-8 +2017-12-19 17:11:23.542 +05:30 [Debug] Connection id ""0HLA6QGDVS5T2"" completed keep alive response. +2017-12-19 17:12:49.444 +05:30 [Debug] Connection id ""0HLA6QGDVS5T2"" received FIN. +2017-12-19 17:12:49.445 +05:30 [Debug] Connection id ""0HLA6QGDVS5T2"" disconnecting. +2017-12-19 17:12:49.445 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" started. +2017-12-19 17:12:49.445 +05:30 [Debug] Connection id ""0HLA6QGDVS5T2"" sending FIN. +2017-12-19 17:12:49.446 +05:30 [Debug] Connection id ""0HLA6QGDVS5T2"" sent FIN with status "0". +2017-12-19 17:12:49.447 +05:30 [Debug] Connection id ""0HLA6QGDVS5T2"" stopped. +2017-12-19 17:12:49.448 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:12:49.448 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:12:49.448 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:12:52.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:12:52.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:12:52.994 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:12:52.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:12:52.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3548.0974ms +2017-12-19 17:12:52.999 +05:30 [Information] Request finished in 3551.3698ms 200 application/json; charset=utf-8 +2017-12-19 17:12:53.000 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" completed keep alive response. +2017-12-19 17:12:53.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500432&groupId=1152625 +2017-12-19 17:12:53.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:12:53.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:12:55.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500432", "1152625"]) - ModelState is Valid +2017-12-19 17:12:56.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:12:56.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:12:56.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:12:56.820 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3806.0347ms +2017-12-19 17:12:56.823 +05:30 [Information] Request finished in 3816.2398ms 200 application/json; charset=utf-8 +2017-12-19 17:12:56.824 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" completed keep alive response. +2017-12-19 17:13:00.853 +05:30 [Debug] Connection id ""0HLA6QGDVS5T4"" started. +2017-12-19 17:13:00.853 +05:30 [Debug] Connection id ""0HLA6QGDVS5T5"" started. +2017-12-19 17:13:00.853 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" started. +2017-12-19 17:13:00.866 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500432 +2017-12-19 17:13:00.866 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:13:00.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:13:01.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152625 +2017-12-19 17:13:01.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:13:01.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:13:01.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500432 +2017-12-19 17:13:01.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:13:01.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:13:01.344 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500432 +2017-12-19 17:13:01.345 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:13:01.345 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:13:02.248 +05:30 [Debug] Connection id ""0HLA6QGDVS5T7"" started. +2017-12-19 17:13:02.248 +05:30 [Debug] Connection id ""0HLA6QGDVS5T8"" started. +2017-12-19 17:13:05.107 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152625&userId=500432 +2017-12-19 17:13:05.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:13:05.108 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:13:06.116 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500432 +2017-12-19 17:13:06.120 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:13:06.120 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:13:08.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:13:08.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:13:08.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:13:08.770 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:13:08.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:13:08.771 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:13:08.774 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7902.8117ms +2017-12-19 17:13:08.776 +05:30 [Information] Request finished in 7934.5908ms 200 application/json; charset=utf-8 +2017-12-19 17:13:08.777 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" completed keep alive response. +2017-12-19 17:13:08.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:13:08.854 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:13:08.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:13:08.855 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152625 +2017-12-19 17:13:08.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:13:08.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:13:08.857 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:13:08.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7722.5258ms +2017-12-19 17:13:08.866 +05:30 [Information] Request finished in 7999.5642ms 200 application/json; charset=utf-8 +2017-12-19 17:13:08.866 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" completed keep alive response. +2017-12-19 17:13:09.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:13:09.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:13:09.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:13:09.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:13:09.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:13:09.763 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:13:09.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:13:09.764 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:13:09.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8418.1949ms +2017-12-19 17:13:09.767 +05:30 [Information] Request finished in 8913.7306ms 200 application/json; charset=utf-8 +2017-12-19 17:13:09.768 +05:30 [Debug] Connection id ""0HLA6QGDVS5T4"" completed keep alive response. +2017-12-19 17:13:10.190 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:13:10.190 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:13:10.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:13:10.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:13:10.192 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8939.9081ms +2017-12-19 17:13:10.194 +05:30 [Information] Request finished in 9340.2189ms 200 application/json; charset=utf-8 +2017-12-19 17:13:10.195 +05:30 [Debug] Connection id ""0HLA6QGDVS5T5"" completed keep alive response. +2017-12-19 17:13:10.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:13:10.351 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:13:10.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:13:10.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:13:10.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4233.5807ms +2017-12-19 17:13:10.358 +05:30 [Information] Request finished in 4242.1626ms 200 application/json; charset=utf-8 +2017-12-19 17:13:10.358 +05:30 [Debug] Connection id ""0HLA6QGDVS5T8"" completed keep alive response. +2017-12-19 17:13:10.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:13:10.411 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:13:10.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:13:10.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:13:10.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5304.7143ms +2017-12-19 17:13:10.420 +05:30 [Information] Request finished in 5309.9193ms 200 application/json; charset=utf-8 +2017-12-19 17:13:10.420 +05:30 [Debug] Connection id ""0HLA6QGDVS5T7"" completed keep alive response. +2017-12-19 17:13:11.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:13:13.086 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:13:13.087 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:13:13.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:13:13.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:13:13.096 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4234.8869ms +2017-12-19 17:13:13.101 +05:30 [Information] Request finished in 4285.9587ms 200 application/json; charset=utf-8 +2017-12-19 17:13:13.101 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" completed keep alive response. +2017-12-19 17:13:38.011 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500432&profileId=134715397262944 0 +2017-12-19 17:13:38.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:13:38.017 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:13:41.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500432", "134715397262944"]) - ModelState is Valid +2017-12-19 17:13:53.350 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:13:53.350 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:13:53.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:13:53.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:13:53.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 15334.7822ms +2017-12-19 17:13:53.355 +05:30 [Information] Request finished in 15346.017ms 200 text/plain; charset=utf-8 +2017-12-19 17:13:53.355 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" completed keep alive response. +2017-12-19 17:14:21.994 +05:30 [Debug] Connection id ""0HLA6QGDVS5T4"" received FIN. +2017-12-19 17:14:21.994 +05:30 [Debug] Connection id ""0HLA6QGDVS5T8"" received FIN. +2017-12-19 17:14:21.994 +05:30 [Debug] Connection id ""0HLA6QGDVS5T5"" received FIN. +2017-12-19 17:14:21.995 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" received FIN. +2017-12-19 17:14:21.995 +05:30 [Debug] Connection id ""0HLA6QGDVS5T7"" received FIN. +2017-12-19 17:14:21.995 +05:30 [Debug] Connection id ""0HLA6QGDVS5T8"" disconnecting. +2017-12-19 17:14:21.995 +05:30 [Debug] Connection id ""0HLA6QGDVS5T8"" sending FIN. +2017-12-19 17:14:21.995 +05:30 [Debug] Connection id ""0HLA6QGDVS5T4"" disconnecting. +2017-12-19 17:14:21.996 +05:30 [Debug] Connection id ""0HLA6QGDVS5T8"" sent FIN with status "0". +2017-12-19 17:14:21.996 +05:30 [Debug] Connection id ""0HLA6QGDVS5T4"" sending FIN. +2017-12-19 17:14:21.996 +05:30 [Debug] Connection id ""0HLA6QGDVS5T8"" stopped. +2017-12-19 17:14:21.996 +05:30 [Debug] Connection id ""0HLA6QGDVS5T4"" sent FIN with status "0". +2017-12-19 17:14:21.996 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" disconnecting. +2017-12-19 17:14:21.996 +05:30 [Debug] Connection id ""0HLA6QGDVS5T4"" stopped. +2017-12-19 17:14:21.996 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" sending FIN. +2017-12-19 17:14:21.998 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" sent FIN with status "0". +2017-12-19 17:14:21.998 +05:30 [Debug] Connection id ""0HLA6QGDVS5T3"" stopped. +2017-12-19 17:14:21.995 +05:30 [Debug] Connection id ""0HLA6QGDVS5T5"" disconnecting. +2017-12-19 17:14:22.001 +05:30 [Debug] Connection id ""0HLA6QGDVS5T5"" sending FIN. +2017-12-19 17:14:22.001 +05:30 [Debug] Connection id ""0HLA6QGDVS5T7"" disconnecting. +2017-12-19 17:14:22.001 +05:30 [Debug] Connection id ""0HLA6QGDVS5T5"" sent FIN with status "0". +2017-12-19 17:14:22.002 +05:30 [Debug] Connection id ""0HLA6QGDVS5T5"" stopped. +2017-12-19 17:14:22.002 +05:30 [Debug] Connection id ""0HLA6QGDVS5T7"" sending FIN. +2017-12-19 17:14:22.002 +05:30 [Debug] Connection id ""0HLA6QGDVS5T7"" sent FIN with status "0". +2017-12-19 17:14:22.002 +05:30 [Debug] Connection id ""0HLA6QGDVS5T7"" stopped. +2017-12-19 17:14:22.005 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=1152625&userId=500432&profileId=134715397262944 0 +2017-12-19 17:14:22.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-12-19 17:14:22.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-12-19 17:14:27.286 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["1152625", "500432", "134715397262944"]) - ModelState is Valid +2017-12-19 17:14:58.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:14:58.748 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:14:58.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:14:58.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:14:58.751 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 36734.1198ms +2017-12-19 17:14:58.754 +05:30 [Information] Request finished in 36756.3024ms 200 text/plain; charset=utf-8 +2017-12-19 17:14:58.754 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" completed keep alive response. +2017-12-19 17:15:00.859 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:15:00.860 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:15:00.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:15:03.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:15:04.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:04.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:04.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:04.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3619.7391ms +2017-12-19 17:15:04.484 +05:30 [Information] Request finished in 3630.9003ms 200 application/json; charset=utf-8 +2017-12-19 17:15:04.485 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" completed keep alive response. +2017-12-19 17:15:04.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500432&groupId=1152625 +2017-12-19 17:15:04.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:15:04.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:15:07.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500432", "1152625"]) - ModelState is Valid +2017-12-19 17:15:09.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:09.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:09.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:09.163 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4663.3128ms +2017-12-19 17:15:09.166 +05:30 [Information] Request finished in 4671.0989ms 200 application/json; charset=utf-8 +2017-12-19 17:15:09.167 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" completed keep alive response. +2017-12-19 17:15:10.098 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" started. +2017-12-19 17:15:10.098 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" started. +2017-12-19 17:15:10.099 +05:30 [Debug] Connection id ""0HLA6QGDVS5TB"" started. +2017-12-19 17:15:10.101 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500432 +2017-12-19 17:15:10.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:15:10.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500432 +2017-12-19 17:15:10.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:15:10.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:15:10.105 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152625 +2017-12-19 17:15:10.104 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500432 +2017-12-19 17:15:10.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:15:10.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:15:10.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:15:10.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:15:10.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:15:10.190 +05:30 [Debug] Connection id ""0HLA6QGDVS5TC"" started. +2017-12-19 17:15:10.190 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" started. +2017-12-19 17:15:10.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500432 +2017-12-19 17:15:10.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:15:10.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:15:10.873 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152625&userId=500432 +2017-12-19 17:15:10.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:15:10.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:15:12.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:15:12.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:15:12.937 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:12.937 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:15:12.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:12.938 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:12.941 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 2834.7689ms +2017-12-19 17:15:12.943 +05:30 [Information] Request finished in 2844.3567ms 200 application/json; charset=utf-8 +2017-12-19 17:15:12.944 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" completed keep alive response. +2017-12-19 17:15:12.947 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152625 +2017-12-19 17:15:12.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:15:12.948 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:15:13.022 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:13.022 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:15:13.023 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:13.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:13.025 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2912.1395ms +2017-12-19 17:15:13.027 +05:30 [Information] Request finished in 2927.2367ms 200 application/json; charset=utf-8 +2017-12-19 17:15:13.028 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" completed keep alive response. +2017-12-19 17:15:13.162 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:15:13.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:15:13.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:13.749 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:15:13.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:13.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:13.758 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3640.2184ms +2017-12-19 17:15:13.762 +05:30 [Information] Request finished in 3661.7792ms 200 application/json; charset=utf-8 +2017-12-19 17:15:13.762 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" completed keep alive response. +2017-12-19 17:15:13.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:15:13.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500432"]) - ModelState is Valid +2017-12-19 17:15:14.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:14.245 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:15:14.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:14.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:14.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4138.0374ms +2017-12-19 17:15:14.251 +05:30 [Information] Request finished in 4149.252ms 200 application/json; charset=utf-8 +2017-12-19 17:15:14.251 +05:30 [Debug] Connection id ""0HLA6QGDVS5TB"" completed keep alive response. +2017-12-19 17:15:14.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:14.996 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:15:14.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:14.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:14.999 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4157.416ms +2017-12-19 17:15:15.001 +05:30 [Information] Request finished in 4165.2132ms 200 application/json; charset=utf-8 +2017-12-19 17:15:15.001 +05:30 [Debug] Connection id ""0HLA6QGDVS5TC"" completed keep alive response. +2017-12-19 17:15:15.149 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:15.150 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:15:15.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:15.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:15.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4276.3688ms +2017-12-19 17:15:15.157 +05:30 [Information] Request finished in 4315.6941ms 200 application/json; charset=utf-8 +2017-12-19 17:15:15.157 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" completed keep alive response. +2017-12-19 17:15:16.011 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152625"]) - ModelState is Valid +2017-12-19 17:15:16.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:16.562 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:15:16.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:16.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:16.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3615.8254ms +2017-12-19 17:15:16.567 +05:30 [Information] Request finished in 3620.372ms 200 application/json; charset=utf-8 +2017-12-19 17:15:16.568 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" completed keep alive response. +2017-12-19 17:15:18.704 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:15:18.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:15:18.704 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:15:21.741 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:15:22.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:22.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:22.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:22.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3592.7757ms +2017-12-19 17:15:22.301 +05:30 [Information] Request finished in 3600.8554ms 200 application/json; charset=utf-8 +2017-12-19 17:15:22.301 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" completed keep alive response. +2017-12-19 17:15:23.035 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:15:23.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:15:23.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:15:26.096 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:15:26.649 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:26.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:26.650 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:26.651 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3610.9622ms +2017-12-19 17:15:26.654 +05:30 [Information] Request finished in 3628.9188ms 200 application/json; charset=utf-8 +2017-12-19 17:15:26.655 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" completed keep alive response. +2017-12-19 17:15:26.677 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:15:26.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:15:26.678 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:15:29.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:15:30.227 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:30.227 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:30.228 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:30.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3550.2695ms +2017-12-19 17:15:30.231 +05:30 [Information] Request finished in 3554.2503ms 200 application/json; charset=utf-8 +2017-12-19 17:15:30.232 +05:30 [Debug] Connection id ""0HLA6QGDVS5TB"" completed keep alive response. +2017-12-19 17:15:30.237 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:15:30.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:15:30.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:15:32.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:15:32.744 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:15:32.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:15:32.745 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:15:32.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:32.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:32.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:32.902 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2649.7ms +2017-12-19 17:15:32.912 +05:30 [Information] Request finished in 2671.8801ms 200 application/json; charset=utf-8 +2017-12-19 17:15:32.913 +05:30 [Debug] Connection id ""0HLA6QGDVS5TC"" completed keep alive response. +2017-12-19 17:15:35.772 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:15:36.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:15:36.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:15:36.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:15:36.325 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3578.4109ms +2017-12-19 17:15:36.328 +05:30 [Information] Request finished in 3583.4126ms 200 application/json; charset=utf-8 +2017-12-19 17:15:36.329 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" completed keep alive response. +2017-12-19 17:15:41.332 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 205 +2017-12-19 17:15:41.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 17:15:41.333 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 17:15:44.371 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAPd9UuhH8zHQV6UprXRbDn3e8sXZCGiVPZAmXQ19uH3AWrxJtlZCrv4FizH43azv4IZBBlwcQZBlFTjZBGniv1BWC8lmqZAZCtCUwBUehLRx2O8SZCLZC9eJ5papAUvQoLpZBF4ZAuyztT6YdfJtpNXByHABgf008ecKqwZDZD", "Free"]) - ModelState is Valid +2017-12-19 17:15:53.508 +05:30 [Fatal] PartialEvalException (InvalidOperationException ("Sequence contains no elements"), PartialEvalException (InvalidOperationException ("Sequence contains no elements"), {value(System.Collections.Generic.List`1[Domain.Socioboard.Models.Facebookaccounts]) => First()}).UserId) +2017-12-19 17:15:53.513 +05:30 [Error] at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression) + at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.Visit(Expression expression, VisitorParameters parameters) + at NHibernate.Linq.Visitors.QueryModelVisitor.VisitWhereClause(WhereClause whereClause, QueryModel queryModel, Int32 index) + at Remotion.Linq.Clauses.WhereClause.Accept(IQueryModelVisitor visitor, QueryModel queryModel, Int32 index) + at Remotion.Linq.QueryModelVisitorBase.VisitBodyClauses(ObservableCollection`1 bodyClauses, QueryModel queryModel) + at Remotion.Linq.QueryModelVisitorBase.VisitQueryModel(QueryModel queryModel) + at NHibernate.Linq.Visitors.QueryModelVisitor.Visit() + at NHibernate.Linq.Visitors.QueryModelVisitor.GenerateHqlQuery(QueryModel queryModel, VisitorParameters parameters, Boolean root) + at NHibernate.Linq.NhLinqExpression.Translate(ISessionFactoryImplementor sessionFactory, Boolean filter) + at NHibernate.Hql.Ast.ANTLR.ASTQueryTranslatorFactory.CreateQueryTranslators(IQueryExpression queryExpression, String collectionRole, Boolean shallow, IDictionary`2 filters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryExpressionPlan.CreateTranslators(IQueryExpression queryExpression, String collectionRole, Boolean shallow, IDictionary`2 enabledFilters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryExpressionPlan..ctor(IQueryExpression queryExpression, Boolean shallow, IDictionary`2 enabledFilters, ISessionFactoryImplementor factory) + at NHibernate.Engine.Query.QueryPlanCache.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow, IDictionary`2 enabledFilters) + at NHibernate.Impl.AbstractSessionImpl.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow) + at NHibernate.Impl.AbstractSessionImpl.CreateQuery(IQueryExpression queryExpression) + at NHibernate.Linq.DefaultQueryProvider.PrepareQuery(Expression expression, IQuery& query, NhLinqExpression& nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-12-19 17:16:02.542 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:02.544 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:02.545 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:02.547 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 21213.5419ms +2017-12-19 17:16:02.550 +05:30 [Information] Request finished in 21217.7843ms 200 application/json; charset=utf-8 +2017-12-19 17:16:02.551 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" completed keep alive response. +2017-12-19 17:16:02.615 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:16:02.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:16:02.616 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:16:04.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:16:05.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:05.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:05.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:05.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2618.4043ms +2017-12-19 17:16:05.259 +05:30 [Information] Request finished in 2639.7416ms 200 application/json; charset=utf-8 +2017-12-19 17:16:05.259 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" completed keep alive response. +2017-12-19 17:16:05.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId= +2017-12-19 17:16:05.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:16:05.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:16:10.733 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", ""]) - ModelState is Valid +2017-12-19 17:16:12.567 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:12.568 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:12.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:12.597 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 7237.1918ms +2017-12-19 17:16:12.703 +05:30 [Information] Request finished in 7295.7756ms 200 application/json; charset=utf-8 +2017-12-19 17:16:12.705 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" completed keep alive response. +2017-12-19 17:16:14.983 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:16:15.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:16:15.872 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:16:15.873 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:16:15.874 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:16:15.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:16:16.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:16:15.201 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:16:16.064 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:16:16.064 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:16:16.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:16:16.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:16:16.174 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:16:15.525 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:16:16.247 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:16:16.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:16:16.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:16:16.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:16:20.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:16:20.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:16:20.360 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:16:20.388 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:16:20.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:20.789 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:16:20.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:20.964 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:20.964 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:16:20.965 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:21.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:21.107 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4790.0498ms +2017-12-19 17:16:21.305 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:21.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:21.354 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:16:21.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:21.414 +05:30 [Information] Request finished in 6463.2726ms 200 application/json; charset=utf-8 +2017-12-19 17:16:21.430 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:21.437 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" completed keep alive response. +2017-12-19 17:16:21.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:21.654 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:16:21.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:21.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5426.3331ms +2017-12-19 17:16:21.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5157.791ms +2017-12-19 17:16:21.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:21.937 +05:30 [Information] Request finished in 7045.7273ms 200 application/json; charset=utf-8 +2017-12-19 17:16:22.125 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" completed keep alive response. +2017-12-19 17:16:22.285 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:16:22.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:16:22.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:16:22.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5833.6708ms +2017-12-19 17:16:23.155 +05:30 [Information] Request finished in 7470.7943ms 200 application/json; charset=utf-8 +2017-12-19 17:16:23.163 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" completed keep alive response. +2017-12-19 17:16:23.274 +05:30 [Information] Request finished in 7225.6071ms 200 application/json; charset=utf-8 +2017-12-19 17:16:23.275 +05:30 [Debug] Connection id ""0HLA6QGDVS5TC"" completed keep alive response. +2017-12-19 17:16:23.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:16:23.413 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:16:24.191 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:24.191 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:16:24.191 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:24.192 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:24.195 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7622.2322ms +2017-12-19 17:16:24.198 +05:30 [Information] Request finished in 9471.7846ms 200 application/json; charset=utf-8 +2017-12-19 17:16:24.199 +05:30 [Debug] Connection id ""0HLA6QGDVS5TB"" completed keep alive response. +2017-12-19 17:16:24.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:24.483 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:16:24.483 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:24.484 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:24.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 8610.7747ms +2017-12-19 17:16:24.489 +05:30 [Information] Request finished in 9038.3061ms 200 application/json; charset=utf-8 +2017-12-19 17:16:24.489 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" completed keep alive response. +2017-12-19 17:16:26.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:16:27.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:16:27.289 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:16:27.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:16:27.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:16:27.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5005.2955ms +2017-12-19 17:16:27.295 +05:30 [Information] Request finished in 5670.219ms 200 application/json; charset=utf-8 +2017-12-19 17:16:27.295 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" completed keep alive response. +2017-12-19 17:18:26.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" received FIN. +2017-12-19 17:18:26.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5TB"" received FIN. +2017-12-19 17:18:26.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" disconnecting. +2017-12-19 17:18:26.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" received FIN. +2017-12-19 17:18:26.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5TB"" disconnecting. +2017-12-19 17:18:26.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" received FIN. +2017-12-19 17:18:26.212 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" disconnecting. +2017-12-19 17:18:26.212 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" sending FIN. +2017-12-19 17:18:26.212 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" disconnecting. +2017-12-19 17:18:26.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" received FIN. +2017-12-19 17:18:26.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TC"" received FIN. +2017-12-19 17:18:26.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TC"" disconnecting. +2017-12-19 17:18:26.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" disconnecting. +2017-12-19 17:18:26.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TC"" sending FIN. +2017-12-19 17:18:26.215 +05:30 [Debug] Connection id ""0HLA6QGDVS5TB"" sending FIN. +2017-12-19 17:18:26.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" sending FIN. +2017-12-19 17:18:26.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" sending FIN. +2017-12-19 17:18:26.218 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" sent FIN with status "0". +2017-12-19 17:18:26.218 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" sending FIN. +2017-12-19 17:18:26.218 +05:30 [Debug] Connection id ""0HLA6QGDVS5TA"" stopped. +2017-12-19 17:18:26.219 +05:30 [Debug] Connection id ""0HLA6QGDVS5TC"" sent FIN with status "0". +2017-12-19 17:18:26.220 +05:30 [Debug] Connection id ""0HLA6QGDVS5TC"" stopped. +2017-12-19 17:18:26.219 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" sent FIN with status "0". +2017-12-19 17:18:26.220 +05:30 [Debug] Connection id ""0HLA6QGDVS5TD"" stopped. +2017-12-19 17:18:26.221 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" sent FIN with status "0". +2017-12-19 17:18:26.221 +05:30 [Debug] Connection id ""0HLA6QGDVS5T9"" stopped. +2017-12-19 17:18:26.222 +05:30 [Debug] Connection id ""0HLA6QGDVS5TB"" sent FIN with status "0". +2017-12-19 17:18:26.222 +05:30 [Debug] Connection id ""0HLA6QGDVS5TB"" stopped. +2017-12-19 17:18:26.222 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" sent FIN with status "0". +2017-12-19 17:18:26.223 +05:30 [Debug] Connection id ""0HLA6QGDVS5T6"" stopped. +2017-12-19 17:19:25.897 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" started. +2017-12-19 17:19:25.900 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:19:25.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:19:25.901 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:19:28.964 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:19:29.517 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:19:29.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:19:29.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:19:29.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3617.9278ms +2017-12-19 17:19:29.525 +05:30 [Information] Request finished in 3627.05ms 200 application/json; charset=utf-8 +2017-12-19 17:19:29.526 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" completed keep alive response. +2017-12-19 17:19:29.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:19:29.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:19:29.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:19:32.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:19:34.239 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:19:34.240 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:19:34.241 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:19:34.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4697.9982ms +2017-12-19 17:19:34.246 +05:30 [Information] Request finished in 4707.511ms 200 application/json; charset=utf-8 +2017-12-19 17:19:34.246 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" completed keep alive response. +2017-12-19 17:19:37.164 +05:30 [Debug] Connection id ""0HLA6QGDVS5TG"" started. +2017-12-19 17:19:37.164 +05:30 [Debug] Connection id ""0HLA6QGDVS5TF"" started. +2017-12-19 17:19:37.166 +05:30 [Debug] Connection id ""0HLA6QGDVS5TH"" started. +2017-12-19 17:19:37.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:19:37.170 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:19:37.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:19:37.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:19:37.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:19:37.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:19:37.188 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:19:37.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:19:37.239 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:19:37.237 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:19:37.246 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:19:37.246 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:19:38.940 +05:30 [Debug] Connection id ""0HLA6QGDVS5TI"" started. +2017-12-19 17:19:38.943 +05:30 [Debug] Connection id ""0HLA6QGDVS5TJ"" started. +2017-12-19 17:19:38.949 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:19:38.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:19:38.950 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:19:40.057 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:19:40.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:19:40.058 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:19:42.125 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:19:42.129 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:19:42.132 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:19:42.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:19:42.707 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:19:42.708 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:19:42.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:19:42.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5537.7029ms +2017-12-19 17:19:42.711 +05:30 [Information] Request finished in 5549.4188ms 200 application/json; charset=utf-8 +2017-12-19 17:19:42.712 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" completed keep alive response. +2017-12-19 17:19:42.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:19:42.750 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:19:42.751 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:19:42.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:19:42.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:19:42.810 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:19:42.810 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:19:42.811 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:19:42.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5571.4857ms +2017-12-19 17:19:42.814 +05:30 [Information] Request finished in 5646.6749ms 200 application/json; charset=utf-8 +2017-12-19 17:19:42.815 +05:30 [Debug] Connection id ""0HLA6QGDVS5TG"" completed keep alive response. +2017-12-19 17:19:43.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:19:43.185 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:19:43.185 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:19:43.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:19:43.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6009.5286ms +2017-12-19 17:19:43.194 +05:30 [Information] Request finished in 6024.5195ms 200 application/json; charset=utf-8 +2017-12-19 17:19:43.195 +05:30 [Debug] Connection id ""0HLA6QGDVS5TH"" completed keep alive response. +2017-12-19 17:19:43.307 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:19:43.308 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:19:43.308 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:19:43.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:19:43.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6062.7758ms +2017-12-19 17:19:43.311 +05:30 [Information] Request finished in 6144.6065ms 200 application/json; charset=utf-8 +2017-12-19 17:19:43.312 +05:30 [Debug] Connection id ""0HLA6QGDVS5TF"" completed keep alive response. +2017-12-19 17:19:43.776 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:19:43.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:19:44.911 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:19:44.911 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:19:44.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:19:44.912 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:19:44.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5962.4091ms +2017-12-19 17:19:44.915 +05:30 [Information] Request finished in 5973.16ms 200 application/json; charset=utf-8 +2017-12-19 17:19:44.916 +05:30 [Debug] Connection id ""0HLA6QGDVS5TI"" completed keep alive response. +2017-12-19 17:19:44.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:19:44.934 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:19:44.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:19:44.935 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:19:44.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4877.0939ms +2017-12-19 17:19:44.939 +05:30 [Information] Request finished in 4881.3429ms 200 application/json; charset=utf-8 +2017-12-19 17:19:44.939 +05:30 [Debug] Connection id ""0HLA6QGDVS5TJ"" completed keep alive response. +2017-12-19 17:19:45.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:19:47.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:19:47.038 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:19:47.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:19:47.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:19:47.042 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4287.955ms +2017-12-19 17:19:47.049 +05:30 [Information] Request finished in 4297.3195ms 200 application/json; charset=utf-8 +2017-12-19 17:19:47.050 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" completed keep alive response. +2017-12-19 17:22:06.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5TH"" received FIN. +2017-12-19 17:22:06.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5TG"" received FIN. +2017-12-19 17:22:06.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5TH"" disconnecting. +2017-12-19 17:22:06.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5TG"" disconnecting. +2017-12-19 17:22:06.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5TF"" received FIN. +2017-12-19 17:22:06.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5TI"" received FIN. +2017-12-19 17:22:06.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5TH"" sending FIN. +2017-12-19 17:22:06.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5TJ"" received FIN. +2017-12-19 17:22:06.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5TG"" sending FIN. +2017-12-19 17:22:06.212 +05:30 [Debug] Connection id ""0HLA6QGDVS5TH"" sent FIN with status "0". +2017-12-19 17:22:06.212 +05:30 [Debug] Connection id ""0HLA6QGDVS5TG"" sent FIN with status "0". +2017-12-19 17:22:06.212 +05:30 [Debug] Connection id ""0HLA6QGDVS5TH"" stopped. +2017-12-19 17:22:06.212 +05:30 [Debug] Connection id ""0HLA6QGDVS5TG"" stopped. +2017-12-19 17:22:06.213 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" received FIN. +2017-12-19 17:22:06.214 +05:30 [Debug] Connection id ""0HLA6QGDVS5TF"" disconnecting. +2017-12-19 17:22:06.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TF"" sending FIN. +2017-12-19 17:22:06.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" disconnecting. +2017-12-19 17:22:06.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TF"" sent FIN with status "0". +2017-12-19 17:22:06.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" sending FIN. +2017-12-19 17:22:06.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TF"" stopped. +2017-12-19 17:22:06.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" sent FIN with status "0". +2017-12-19 17:22:06.214 +05:30 [Debug] Connection id ""0HLA6QGDVS5TI"" disconnecting. +2017-12-19 17:22:06.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TE"" stopped. +2017-12-19 17:22:06.214 +05:30 [Debug] Connection id ""0HLA6QGDVS5TJ"" disconnecting. +2017-12-19 17:22:06.218 +05:30 [Debug] Connection id ""0HLA6QGDVS5TJ"" sending FIN. +2017-12-19 17:22:06.218 +05:30 [Debug] Connection id ""0HLA6QGDVS5TI"" sending FIN. +2017-12-19 17:22:06.218 +05:30 [Debug] Connection id ""0HLA6QGDVS5TJ"" sent FIN with status "0". +2017-12-19 17:22:06.219 +05:30 [Debug] Connection id ""0HLA6QGDVS5TJ"" stopped. +2017-12-19 17:22:06.218 +05:30 [Debug] Connection id ""0HLA6QGDVS5TI"" sent FIN with status "0". +2017-12-19 17:22:06.219 +05:30 [Debug] Connection id ""0HLA6QGDVS5TI"" stopped. +2017-12-19 17:31:33.811 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" started. +2017-12-19 17:31:33.813 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:31:33.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:31:33.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:31:36.876 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:31:38.750 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:31:38.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:31:38.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:31:38.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4936.8257ms +2017-12-19 17:31:38.756 +05:30 [Information] Request finished in 4942.3498ms 200 application/json; charset=utf-8 +2017-12-19 17:31:38.757 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:31:39.215 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:31:39.217 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:31:39.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:31:41.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:31:41.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:31:41.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:31:41.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:31:41.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2617.1777ms +2017-12-19 17:31:41.849 +05:30 [Information] Request finished in 2631.9558ms 200 application/json; charset=utf-8 +2017-12-19 17:31:41.850 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:31:42.009 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:31:42.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:31:42.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:31:44.119 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" started. +2017-12-19 17:31:44.121 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:31:44.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:31:44.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:31:45.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:31:45.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:31:45.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:31:45.582 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:31:45.583 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3572.7242ms +2017-12-19 17:31:45.587 +05:30 [Information] Request finished in 3591.0329ms 200 application/json; charset=utf-8 +2017-12-19 17:31:45.587 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:31:45.598 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:31:45.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:31:45.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:31:47.149 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:31:47.647 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:31:47.651 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:31:47.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:31:47.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3530.3448ms +2017-12-19 17:31:47.656 +05:30 [Information] Request finished in 3534.9188ms 200 application/json; charset=utf-8 +2017-12-19 17:31:47.657 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:31:48.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:31:49.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:31:49.138 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:31:49.138 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:31:49.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3538.9261ms +2017-12-19 17:31:49.141 +05:30 [Information] Request finished in 3543.4531ms 200 application/json; charset=utf-8 +2017-12-19 17:31:49.141 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:31:59.312 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 202 +2017-12-19 17:31:59.312 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 17:31:59.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 17:32:02.366 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBANcaz6gmrmLj0pyZCj5Q0zpI4GXFY8hO0YD4eggt1evA8foPAtZAujBC3NFuCpTa5z437aT4LzxFYR9G1jtsZAKozKHJZCxZCfZArMk9olvOBzZBJ4fFNdaRITZCFHZB6RFYEiHWIGFNESAezQevrHHB6uWwebRh1QgZDZD", "Free"]) - ModelState is Valid +2017-12-19 17:32:07.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:07.869 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:07.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:07.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 8557.8076ms +2017-12-19 17:32:07.875 +05:30 [Information] Request finished in 8561.4626ms 200 application/json; charset=utf-8 +2017-12-19 17:32:07.875 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:32:07.899 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:32:07.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:32:07.901 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:32:10.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:32:11.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:11.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:11.449 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:11.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3548.7154ms +2017-12-19 17:32:11.455 +05:30 [Information] Request finished in 3555.3445ms 200 application/json; charset=utf-8 +2017-12-19 17:32:11.456 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:32:11.472 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId= +2017-12-19 17:32:11.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:32:11.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:32:14.535 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", ""]) - ModelState is Valid +2017-12-19 17:32:16.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:16.033 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:16.034 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:16.035 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4561.4141ms +2017-12-19 17:32:16.036 +05:30 [Information] Request finished in 4567.0688ms 200 application/json; charset=utf-8 +2017-12-19 17:32:16.037 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:32:17.062 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" started. +2017-12-19 17:32:17.062 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" started. +2017-12-19 17:32:17.064 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:32:17.080 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:32:17.080 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:32:17.088 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:32:17.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:32:17.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:32:17.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:32:17.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:32:17.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:32:17.129 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:32:17.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:32:17.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:32:17.182 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" started. +2017-12-19 17:32:17.183 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" started. +2017-12-19 17:32:17.917 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:32:17.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:32:17.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:32:18.914 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:32:18.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:32:18.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:32:21.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:32:22.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:32:22.130 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:32:22.131 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:32:22.162 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:32:22.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:32:23.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:23.015 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:23.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:23.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:23.021 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5874.4146ms +2017-12-19 17:32:23.023 +05:30 [Information] Request finished in 5969.9881ms 200 application/json; charset=utf-8 +2017-12-19 17:32:23.024 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:32:23.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:32:23.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:32:23.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:32:24.009 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:24.009 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:24.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:24.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:24.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6903.9556ms +2017-12-19 17:32:24.015 +05:30 [Information] Request finished in 6951.3012ms 200 application/json; charset=utf-8 +2017-12-19 17:32:24.015 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:32:24.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:24.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:24.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:24.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:24.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7054.9739ms +2017-12-19 17:32:24.180 +05:30 [Information] Request finished in 7114.8157ms 200 application/json; charset=utf-8 +2017-12-19 17:32:24.180 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:32:24.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:24.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:24.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:24.472 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:24.472 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7391.4527ms +2017-12-19 17:32:24.474 +05:30 [Information] Request finished in 7433.7736ms 200 application/json; charset=utf-8 +2017-12-19 17:32:24.475 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:32:24.716 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:24.716 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:24.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:24.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:24.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6798.0906ms +2017-12-19 17:32:24.721 +05:30 [Information] Request finished in 6804.6634ms 200 application/json; charset=utf-8 +2017-12-19 17:32:24.721 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:32:24.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:24.797 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:24.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:24.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:24.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5882.2249ms +2017-12-19 17:32:24.802 +05:30 [Information] Request finished in 5886.658ms 200 application/json; charset=utf-8 +2017-12-19 17:32:24.802 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:32:26.071 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:32:27.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:27.242 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:27.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:27.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:27.246 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4213.0094ms +2017-12-19 17:32:27.248 +05:30 [Information] Request finished in 4219.8028ms 200 application/json; charset=utf-8 +2017-12-19 17:32:27.249 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:32:31.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=500433 +2017-12-19 17:32:31.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-12-19 17:32:31.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-12-19 17:32:34.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:32:35.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:35.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:35.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:35.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4197.0423ms +2017-12-19 17:32:35.876 +05:30 [Information] Request finished in 4202.796ms 200 application/json; charset=utf-8 +2017-12-19 17:32:35.876 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:32:35.880 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1152626 +2017-12-19 17:32:35.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-12-19 17:32:35.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-12-19 17:32:38.919 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:32:39.500 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:39.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:39.501 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:39.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3619.0369ms +2017-12-19 17:32:39.507 +05:30 [Information] Request finished in 3626.3935ms 200 application/json; charset=utf-8 +2017-12-19 17:32:39.507 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:32:40.047 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPages application/x-www-form-urlencoded 209 +2017-12-19 17:32:40.048 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPages"'. +2017-12-19 17:32:40.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" +2017-12-19 17:32:43.088 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAFIa4V2NegJlHZBAf1ULyKHBoZBdpdt6iZA3F2RlRKRPQnI6WwXsP0qTjeZA0XtqUvPZBpxhZAjcksbHyYwzGW7jXZAiCZAZA0epyPBMs0vwp7iDWRWUIPSybHuyouo8I1NuaMqtGxZBUTCf8A1JzAlgSTnduYAu0iVwZDZD", "1152626"]) - ModelState is Valid +2017-12-19 17:32:44.891 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:44.891 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:44.892 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:44.899 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" in 4848.2639ms +2017-12-19 17:32:44.902 +05:30 [Information] Request finished in 4854.479ms 200 application/json; charset=utf-8 +2017-12-19 17:32:44.902 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:32:44.986 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:32:44.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:32:44.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:32:48.017 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:32:48.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:48.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:48.550 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:48.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3562.4196ms +2017-12-19 17:32:48.556 +05:30 [Information] Request finished in 3568.0389ms 200 application/json; charset=utf-8 +2017-12-19 17:32:48.556 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:32:48.567 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:32:48.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:32:48.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:32:51.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:32:53.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:53.243 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:53.244 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:53.246 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4676.9094ms +2017-12-19 17:32:53.251 +05:30 [Information] Request finished in 4683.9737ms 200 application/json; charset=utf-8 +2017-12-19 17:32:53.252 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:32:53.949 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:32:53.951 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:32:53.952 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:32:53.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:32:53.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:32:53.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:32:53.957 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:32:53.958 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:32:53.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:32:53.954 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:32:53.976 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:32:53.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:32:54.631 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:32:54.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:32:54.633 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:32:55.630 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:32:55.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:32:55.630 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:32:58.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:32:58.784 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:32:58.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:32:58.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:32:58.888 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:32:58.888 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:32:59.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:59.395 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:59.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:59.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:59.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5440.018ms +2017-12-19 17:32:59.417 +05:30 [Information] Request finished in 5458.3948ms 200 application/json; charset=utf-8 +2017-12-19 17:32:59.417 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:32:59.455 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:32:59.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:32:59.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:59.472 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:32:59.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:59.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:59.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:59.477 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:59.477 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:59.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:59.479 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:59.500 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5524.2167ms +2017-12-19 17:32:59.502 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5520.5854ms +2017-12-19 17:32:59.504 +05:30 [Information] Request finished in 5556.1382ms 200 application/json; charset=utf-8 +2017-12-19 17:32:59.506 +05:30 [Information] Request finished in 5553.2473ms 200 application/json; charset=utf-8 +2017-12-19 17:32:59.506 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:32:59.506 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:32:59.512 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookPages?userId=500433&groupId=1152626 multipart/form-data; boundary=----WebKitFormBoundarynSkEEM7lLfy9CksO 514 +2017-12-19 17:32:59.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookPages"'. +2017-12-19 17:32:59.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" +2017-12-19 17:32:59.666 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:59.666 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:59.666 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:59.667 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:59.670 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5691.2214ms +2017-12-19 17:32:59.672 +05:30 [Information] Request finished in 5718.2037ms 200 application/json; charset=utf-8 +2017-12-19 17:32:59.673 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:32:59.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:32:59.879 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:32:59.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:32:59.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:32:59.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4249.4116ms +2017-12-19 17:32:59.883 +05:30 [Information] Request finished in 4253.4158ms 200 application/json; charset=utf-8 +2017-12-19 17:32:59.883 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:33:00.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:00.037 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:00.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:00.041 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:00.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5404.0777ms +2017-12-19 17:33:00.057 +05:30 [Information] Request finished in 5427.6191ms 200 application/json; charset=utf-8 +2017-12-19 17:33:00.058 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:33:02.498 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:33:02.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:33:03.102 +05:30 [Error] {"id":"1784020258563531","name":"Likes & Comments","fan_count":6} +2017-12-19 17:33:03.636 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:03.637 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:03.637 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:03.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:03.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4166.6028ms +2017-12-19 17:33:03.643 +05:30 [Information] Request finished in 4202.9036ms 200 application/json; charset=utf-8 +2017-12-19 17:33:03.643 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:33:04.187 +05:30 [Error] {"id":"362187157565129","name":"Page one","fan_count":1} +2017-12-19 17:33:04.753 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:04.753 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:04.753 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:33:04.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:04.755 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" in 5240.3473ms +2017-12-19 17:33:04.757 +05:30 [Information] Request finished in 5245.9532ms 200 text/plain; charset=utf-8 +2017-12-19 17:33:04.758 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:33:04.799 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:33:04.800 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:33:04.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:33:07.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:33:08.334 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:08.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:08.336 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:08.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3535.7806ms +2017-12-19 17:33:08.346 +05:30 [Information] Request finished in 3543.8148ms 200 application/json; charset=utf-8 +2017-12-19 17:33:08.348 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:33:08.357 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:33:08.358 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:33:08.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:33:11.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:33:13.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:13.020 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:13.022 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:13.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4663.2699ms +2017-12-19 17:33:13.031 +05:30 [Information] Request finished in 4671.4876ms 200 application/json; charset=utf-8 +2017-12-19 17:33:13.032 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:33:13.451 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:33:13.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:33:13.453 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:33:13.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:33:13.453 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:33:13.454 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:33:13.459 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:33:13.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:33:13.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:33:13.479 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:33:13.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:33:13.481 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:33:13.559 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:33:13.561 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:33:13.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:33:13.563 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:33:13.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:33:13.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:33:15.548 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:33:15.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:33:16.104 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:16.105 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:16.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:16.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:16.107 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2625.0337ms +2017-12-19 17:33:16.110 +05:30 [Information] Request finished in 2662.3235ms 200 application/json; charset=utf-8 +2017-12-19 17:33:16.111 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:33:16.114 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:33:16.114 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:33:16.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:33:16.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:16.256 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:16.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:16.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:16.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2804.503ms +2017-12-19 17:33:16.262 +05:30 [Information] Request finished in 2814.5603ms 200 application/json; charset=utf-8 +2017-12-19 17:33:16.263 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:33:16.553 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:33:16.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:33:16.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:33:16.664 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:33:17.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:17.080 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:17.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:17.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:17.082 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3613.4098ms +2017-12-19 17:33:17.085 +05:30 [Information] Request finished in 3636.0813ms 200 application/json; charset=utf-8 +2017-12-19 17:33:17.085 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:33:17.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:17.585 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:17.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:17.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:17.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4130.0896ms +2017-12-19 17:33:17.590 +05:30 [Information] Request finished in 4141.2719ms 200 application/json; charset=utf-8 +2017-12-19 17:33:17.590 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:33:17.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:17.741 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:17.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:17.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:17.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4175.0998ms +2017-12-19 17:33:17.746 +05:30 [Information] Request finished in 4189.0949ms 200 application/json; charset=utf-8 +2017-12-19 17:33:17.747 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:33:17.771 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:17.771 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:17.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:17.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:17.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4211.8379ms +2017-12-19 17:33:17.777 +05:30 [Information] Request finished in 4220.2715ms 200 application/json; charset=utf-8 +2017-12-19 17:33:17.778 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:33:19.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:33:20.319 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:20.320 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:20.320 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:20.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:20.325 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4207.0823ms +2017-12-19 17:33:20.328 +05:30 [Information] Request finished in 4214.1767ms 200 application/json; charset=utf-8 +2017-12-19 17:33:20.329 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:33:36.256 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:33:36.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:33:36.257 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:33:39.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:33:39.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:39.853 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:39.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:39.855 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3597.2695ms +2017-12-19 17:33:39.858 +05:30 [Information] Request finished in 3601.7104ms 200 application/json; charset=utf-8 +2017-12-19 17:33:39.858 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:33:39.872 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:33:39.872 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:33:39.873 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:33:41.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:33:43.535 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:43.536 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:43.537 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:43.540 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3665.1813ms +2017-12-19 17:33:43.547 +05:30 [Information] Request finished in 3675.7136ms 200 application/json; charset=utf-8 +2017-12-19 17:33:43.548 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:33:44.184 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:33:44.186 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:33:44.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:33:44.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:33:44.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:33:44.187 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:33:44.188 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:33:44.189 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:33:44.189 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:33:44.191 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:33:44.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:33:44.193 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:33:44.328 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:33:44.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:33:44.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:33:44.338 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:33:44.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:33:44.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:33:46.438 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:33:47.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:33:47.289 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:33:47.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:33:47.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:33:47.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:33:47.597 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:47.598 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:47.598 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:47.599 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:47.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3270.1172ms +2017-12-19 17:33:47.603 +05:30 [Information] Request finished in 3305.7683ms 200 application/json; charset=utf-8 +2017-12-19 17:33:47.604 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:33:47.609 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:33:47.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:33:47.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:33:47.867 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:47.867 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:47.867 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:47.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:47.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3680.3573ms +2017-12-19 17:33:47.872 +05:30 [Information] Request finished in 3689.4651ms 200 application/json; charset=utf-8 +2017-12-19 17:33:47.873 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:33:47.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:47.902 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:47.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:47.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:47.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3717.3227ms +2017-12-19 17:33:47.909 +05:30 [Information] Request finished in 3725.3078ms 200 application/json; charset=utf-8 +2017-12-19 17:33:47.910 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:33:47.950 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:47.950 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:47.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:47.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:47.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3765.3453ms +2017-12-19 17:33:47.956 +05:30 [Information] Request finished in 3771.0016ms 200 application/json; charset=utf-8 +2017-12-19 17:33:47.956 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:33:48.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:48.298 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:48.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:48.299 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:48.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4106.4238ms +2017-12-19 17:33:48.303 +05:30 [Information] Request finished in 4120.0341ms 200 application/json; charset=utf-8 +2017-12-19 17:33:48.303 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:33:48.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:48.462 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:48.463 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:48.463 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:48.466 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4125.0106ms +2017-12-19 17:33:48.468 +05:30 [Information] Request finished in 4170.9249ms 200 application/json; charset=utf-8 +2017-12-19 17:33:48.469 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:33:50.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:33:51.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:51.781 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:51.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:51.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:51.786 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4173.1728ms +2017-12-19 17:33:51.788 +05:30 [Information] Request finished in 4180.5956ms 200 application/json; charset=utf-8 +2017-12-19 17:33:51.789 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:33:53.781 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfilesDeatails?groupId=1152626 +2017-12-19 17:33:53.782 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfilesDeatails"'. +2017-12-19 17:33:53.784 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)" +2017-12-19 17:33:53.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1152626&userId=500433 +2017-12-19 17:33:53.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1152626&userId=500433 +2017-12-19 17:33:53.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2017-12-19 17:33:53.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2017-12-19 17:33:53.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2017-12-19 17:33:53.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2017-12-19 17:33:53.801 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetIncommingMessage?groupId=1152626&userId=500433 +2017-12-19 17:33:53.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetIncommingMessage"'. +2017-12-19 17:33:53.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" +2017-12-19 17:33:53.808 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1152626&userId=500433 +2017-12-19 17:33:53.809 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2017-12-19 17:33:53.813 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2017-12-19 17:33:55.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:33:56.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:33:56.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" with arguments (["1152626", "500433"]) - ModelState is Valid +2017-12-19 17:33:56.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1152626", "500433"]) - ModelState is Valid +2017-12-19 17:33:57.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:57.078 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:57.078 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:57.080 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:57.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)" in 3295.3178ms +2017-12-19 17:33:57.085 +05:30 [Information] Request finished in 3304.5445ms 200 application/json; charset=utf-8 +2017-12-19 17:33:57.085 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:33:58.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:58.085 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:58.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:33:58.087 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:58.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 4288.6234ms +2017-12-19 17:33:58.093 +05:30 [Information] Request finished in 4297.7344ms 200 application/json; charset=utf-8 +2017-12-19 17:33:58.094 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:33:58.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:58.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:58.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:33:58.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:58.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 4333.1817ms +2017-12-19 17:33:58.135 +05:30 [Information] Request finished in 4339.9194ms 200 text/plain; charset=utf-8 +2017-12-19 17:33:58.135 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:33:59.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:33:59.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:33:59.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:33:59.182 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:33:59.183 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" in 5375.5571ms +2017-12-19 17:33:59.185 +05:30 [Information] Request finished in 5389.8046ms 200 text/plain; charset=utf-8 +2017-12-19 17:33:59.185 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:34:00.982 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:34:02.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:02.067 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:02.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:34:02.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:02.075 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 8255.132ms +2017-12-19 17:34:02.089 +05:30 [Information] Request finished in 8286.1907ms 200 text/plain; charset=utf-8 +2017-12-19 17:34:02.090 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:34:06.064 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=500433 +2017-12-19 17:34:06.065 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-12-19 17:34:06.065 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-12-19 17:34:09.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:10.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:10.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:10.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:10.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4193.8243ms +2017-12-19 17:34:10.263 +05:30 [Information] Request finished in 4198.6291ms 200 application/json; charset=utf-8 +2017-12-19 17:34:10.264 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:34:10.269 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1152626 +2017-12-19 17:34:10.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-12-19 17:34:10.270 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-12-19 17:34:13.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:34:13.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:13.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:13.930 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:13.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3659.2392ms +2017-12-19 17:34:13.933 +05:30 [Information] Request finished in 3665.4059ms 200 application/json; charset=utf-8 +2017-12-19 17:34:13.940 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:34:14.438 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPages application/x-www-form-urlencoded 207 +2017-12-19 17:34:14.438 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPages"'. +2017-12-19 17:34:14.438 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" +2017-12-19 17:34:16.548 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAPq66viHjQLGEUKTdw5e2tc0AcZCiqcSM67KVbrxv6PMyvaSwzxHpj3c0UIJTJvqZCjOZA0ZBx2rghg7FBeRt1HAZCwrjoBmpzpttFFfszNt4FEHZC5BIU065QH7OXPoHGdGxen9QQmOyHHJGPknZCNqahExbiZB0QZDZD", "1152626"]) - ModelState is Valid +2017-12-19 17:34:18.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:18.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:18.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:18.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" in 3852.8313ms +2017-12-19 17:34:18.294 +05:30 [Information] Request finished in 3857.024ms 200 application/json; charset=utf-8 +2017-12-19 17:34:18.295 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:34:18.310 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:34:18.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:34:18.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:34:21.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:34:21.928 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:21.928 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:21.929 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:21.930 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3618.2703ms +2017-12-19 17:34:21.932 +05:30 [Information] Request finished in 3623.1655ms 200 application/json; charset=utf-8 +2017-12-19 17:34:21.932 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:34:21.937 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:34:21.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:34:21.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:34:24.047 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:34:25.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:25.608 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:25.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:25.610 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3671.7554ms +2017-12-19 17:34:25.613 +05:30 [Information] Request finished in 3675.5631ms 200 application/json; charset=utf-8 +2017-12-19 17:34:25.613 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:34:26.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:34:26.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:34:26.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:34:26.296 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:34:26.296 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:34:26.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:34:26.300 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:34:26.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:34:26.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:34:26.300 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:34:26.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:34:26.305 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:34:26.396 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:34:26.396 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:34:26.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:34:26.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:34:26.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:34:26.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:34:28.511 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:28.512 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:34:29.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:29.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:29.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:29.517 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:34:29.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:29.598 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:29.598 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:29.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:29.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3203.5931ms +2017-12-19 17:34:29.610 +05:30 [Information] Request finished in 3213.3341ms 200 application/json; charset=utf-8 +2017-12-19 17:34:29.611 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:34:29.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:29.629 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:29.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:29.630 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:34:29.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:34:29.633 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:34:29.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:29.642 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3243.1271ms +2017-12-19 17:34:29.646 +05:30 [Information] Request finished in 3251.0618ms 200 application/json; charset=utf-8 +2017-12-19 17:34:29.647 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:34:30.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:30.015 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:30.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:30.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:30.019 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3721.6155ms +2017-12-19 17:34:30.024 +05:30 [Information] Request finished in 3731.9381ms 200 application/json; charset=utf-8 +2017-12-19 17:34:30.025 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:34:30.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:30.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:30.143 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:30.143 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:30.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:30.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:30.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:30.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:30.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3843.0368ms +2017-12-19 17:34:30.148 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3840.4259ms +2017-12-19 17:34:30.150 +05:30 [Information] Request finished in 3856.0434ms 200 application/json; charset=utf-8 +2017-12-19 17:34:30.150 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:34:30.156 +05:30 [Information] Request finished in 3859.1102ms 200 application/json; charset=utf-8 +2017-12-19 17:34:30.156 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:34:30.521 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:30.521 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:30.522 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:30.523 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:30.524 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4217.8525ms +2017-12-19 17:34:30.526 +05:30 [Information] Request finished in 4233.582ms 200 application/json; charset=utf-8 +2017-12-19 17:34:30.526 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:34:30.744 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookPages?userId=500433&groupId=1152626 multipart/form-data; boundary=----WebKitFormBoundary14qu26IcCB91tIJ8 332 +2017-12-19 17:34:30.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookPages"'. +2017-12-19 17:34:30.745 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" +2017-12-19 17:34:32.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:34:33.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:33.799 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:33.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:33.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:33.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:34:33.827 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4192.4618ms +2017-12-19 17:34:33.829 +05:30 [Information] Request finished in 4209.3433ms 200 application/json; charset=utf-8 +2017-12-19 17:34:33.829 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:34:34.295 +05:30 [Error] {"id":"362187157565129","name":"Page one","fan_count":1} +2017-12-19 17:34:34.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:34.924 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:34.924 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:34:34.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:34.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" in 4179.9114ms +2017-12-19 17:34:34.928 +05:30 [Information] Request finished in 4185.4309ms 200 text/plain; charset=utf-8 +2017-12-19 17:34:34.928 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:34:34.993 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:34:34.994 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:34:34.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:34:38.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:34:38.530 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:38.531 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:38.532 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:38.533 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3537.2358ms +2017-12-19 17:34:38.534 +05:30 [Information] Request finished in 3547.3534ms 200 application/json; charset=utf-8 +2017-12-19 17:34:38.535 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:34:38.539 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:34:38.540 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:34:38.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:34:41.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:34:43.210 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:43.211 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:43.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:43.214 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4672.9587ms +2017-12-19 17:34:43.216 +05:30 [Information] Request finished in 4677.7597ms 200 application/json; charset=utf-8 +2017-12-19 17:34:43.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:34:43.638 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:34:43.639 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:34:43.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:34:43.641 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:34:43.642 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:34:43.642 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:34:43.643 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:34:43.645 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:34:43.651 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:34:43.652 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:34:43.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:34:43.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:34:44.617 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:34:44.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:34:44.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:34:45.618 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:34:45.619 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:34:45.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:34:48.313 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" started. +2017-12-19 17:34:48.621 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=500433 +2017-12-19 17:34:48.622 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-12-19 17:34:48.622 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-12-19 17:34:49.728 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:34:49.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:34:49.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:49.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:49.818 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:49.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:50.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:50.329 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:50.329 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:50.331 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:50.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6680.5859ms +2017-12-19 17:34:50.343 +05:30 [Information] Request finished in 6723.7135ms 200 application/json; charset=utf-8 +2017-12-19 17:34:50.344 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:34:50.351 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:34:50.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:34:50.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:34:50.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:50.395 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:50.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:50.396 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:50.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6741.3197ms +2017-12-19 17:34:50.401 +05:30 [Information] Request finished in 6783.7009ms 200 application/json; charset=utf-8 +2017-12-19 17:34:50.401 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:34:50.467 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:50.467 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:50.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:50.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:50.469 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6826.0934ms +2017-12-19 17:34:50.471 +05:30 [Information] Request finished in 6853.7998ms 200 application/json; charset=utf-8 +2017-12-19 17:34:50.471 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:34:50.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:50.809 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:50.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:50.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:50.811 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7171.1581ms +2017-12-19 17:34:50.814 +05:30 [Information] Request finished in 7197.2908ms 200 application/json; charset=utf-8 +2017-12-19 17:34:50.814 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:34:50.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:50.869 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:50.869 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:50.871 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:50.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6253.3611ms +2017-12-19 17:34:50.875 +05:30 [Information] Request finished in 6258.0775ms 200 application/json; charset=utf-8 +2017-12-19 17:34:50.876 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:34:50.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:50.920 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:50.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:50.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:50.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5301.7579ms +2017-12-19 17:34:50.924 +05:30 [Information] Request finished in 5306.8245ms 200 application/json; charset=utf-8 +2017-12-19 17:34:50.925 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:34:51.765 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:34:52.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:52.881 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:52.882 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:52.883 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4259.9348ms +2017-12-19 17:34:52.886 +05:30 [Information] Request finished in 4265.4929ms 200 application/json; charset=utf-8 +2017-12-19 17:34:52.887 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:34:52.890 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1152626 +2017-12-19 17:34:52.891 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-12-19 17:34:52.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-12-19 17:34:53.413 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:34:54.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:54.525 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:34:54.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:54.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:54.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4174.6293ms +2017-12-19 17:34:54.532 +05:30 [Information] Request finished in 4182.6125ms 200 application/json; charset=utf-8 +2017-12-19 17:34:54.532 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:34:55.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:34:56.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:34:56.551 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:34:56.552 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:34:56.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3660.8857ms +2017-12-19 17:34:56.557 +05:30 [Information] Request finished in 3666.7274ms 200 application/json; charset=utf-8 +2017-12-19 17:34:56.558 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:34:57.163 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPages application/x-www-form-urlencoded 204 +2017-12-19 17:34:57.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPages"'. +2017-12-19 17:34:57.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" +2017-12-19 17:34:57.431 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:34:57.431 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:34:57.432 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:00.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAPL2iOW0guZAunixRgiEPEjm2FBFfxZCyWslxujRG3izKFzhHxAneOLljRmRDBa6ApVriQZA8kx1WfKjUJy8N8n8662IPhlScvxlZABAInlSI7mBeVeDJsEqX3j1tjSeGgSYdUhpwQmIZBnPknOy45RVOjrYy8QZDZD", "1152626"]) - ModelState is Valid +2017-12-19 17:35:00.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:00.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:00.995 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:00.996 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:00.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3563.5597ms +2017-12-19 17:35:00.999 +05:30 [Information] Request finished in 3567.5621ms 200 application/json; charset=utf-8 +2017-12-19 17:35:00.999 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:35:01.556 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:35:01.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:35:01.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:02.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:02.033 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:02.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:02.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" in 4871.1891ms +2017-12-19 17:35:02.047 +05:30 [Information] Request finished in 4883.8873ms 200 application/json; charset=utf-8 +2017-12-19 17:35:02.047 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:35:04.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:05.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:05.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:05.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:05.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3601.9725ms +2017-12-19 17:35:05.167 +05:30 [Information] Request finished in 3611.5046ms 200 application/json; charset=utf-8 +2017-12-19 17:35:05.168 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:35:05.197 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:35:05.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:35:05.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:08.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:09.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:09.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:09.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:09.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3931.1302ms +2017-12-19 17:35:09.134 +05:30 [Information] Request finished in 3937.0375ms 200 application/json; charset=utf-8 +2017-12-19 17:35:09.135 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:35:09.183 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:35:09.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:35:09.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:10.861 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:35:10.861 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:35:10.862 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:12.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:12.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:12.742 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:12.743 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:12.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3558.2328ms +2017-12-19 17:35:12.746 +05:30 [Information] Request finished in 3563.5796ms 200 application/json; charset=utf-8 +2017-12-19 17:35:12.746 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:35:12.751 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:35:12.751 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:35:12.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:35:13.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:14.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:14.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:14.429 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:14.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3566.402ms +2017-12-19 17:35:14.433 +05:30 [Information] Request finished in 3573.5017ms 200 application/json; charset=utf-8 +2017-12-19 17:35:14.434 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:35:14.470 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:35:14.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:35:14.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:15.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:35:17.380 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:17.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:17.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:17.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4630.1762ms +2017-12-19 17:35:17.385 +05:30 [Information] Request finished in 4635.0388ms 200 application/json; charset=utf-8 +2017-12-19 17:35:17.386 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:35:17.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:18.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:18.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:18.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:18.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3588.2761ms +2017-12-19 17:35:18.064 +05:30 [Information] Request finished in 3594.0552ms 200 application/json; charset=utf-8 +2017-12-19 17:35:18.064 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:35:18.070 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:35:18.070 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:35:18.071 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:35:21.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:35:22.672 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:22.673 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:22.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:22.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4604.1844ms +2017-12-19 17:35:22.682 +05:30 [Information] Request finished in 4610.7377ms 200 application/json; charset=utf-8 +2017-12-19 17:35:22.682 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:35:23.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:35:23.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:35:23.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:35:23.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:35:23.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:35:23.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:35:23.707 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:35:23.719 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:35:23.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:35:23.713 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:35:23.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:35:23.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:35:24.241 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:35:24.242 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:35:24.242 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:35:26.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:35:26.241 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:35:26.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:35:29.519 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:35:29.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:35:29.543 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:35:29.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:35:29.553 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:35:29.554 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:35:30.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:30.052 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:35:30.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:30.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:30.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6335.5137ms +2017-12-19 17:35:30.061 +05:30 [Information] Request finished in 6377.9179ms 200 application/json; charset=utf-8 +2017-12-19 17:35:30.062 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:35:30.078 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:35:30.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:35:30.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:35:30.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:30.127 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:35:30.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:30.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:30.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6422.4595ms +2017-12-19 17:35:30.133 +05:30 [Information] Request finished in 6449.9939ms 200 application/json; charset=utf-8 +2017-12-19 17:35:30.134 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:35:30.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:30.225 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:35:30.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:30.226 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:30.228 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6499.1175ms +2017-12-19 17:35:30.230 +05:30 [Information] Request finished in 6547.9297ms 200 application/json; charset=utf-8 +2017-12-19 17:35:30.231 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:35:30.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:30.561 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:35:30.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:30.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:30.566 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6851.6324ms +2017-12-19 17:35:30.568 +05:30 [Information] Request finished in 6885.2062ms 200 application/json; charset=utf-8 +2017-12-19 17:35:30.569 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:35:30.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:30.608 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:35:30.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:30.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:30.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4368.9357ms +2017-12-19 17:35:30.626 +05:30 [Information] Request finished in 4379.2155ms 200 application/json; charset=utf-8 +2017-12-19 17:35:30.626 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:35:30.908 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:30.908 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:35:30.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:30.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:30.912 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6667.5668ms +2017-12-19 17:35:30.915 +05:30 [Information] Request finished in 6674.0077ms 200 application/json; charset=utf-8 +2017-12-19 17:35:30.916 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:35:33.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:35:34.273 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:34.273 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:35:34.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:34.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:34.276 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4196.1585ms +2017-12-19 17:35:34.280 +05:30 [Information] Request finished in 4201.844ms 200 application/json; charset=utf-8 +2017-12-19 17:35:34.280 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:35:42.379 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:35:42.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:35:42.380 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:45.407 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:45.938 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:45.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:45.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:45.942 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3560.5277ms +2017-12-19 17:35:45.946 +05:30 [Information] Request finished in 3565.7296ms 200 application/json; charset=utf-8 +2017-12-19 17:35:45.946 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:35:46.454 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:35:46.455 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:35:46.455 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:48.570 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:35:48.571 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:35:48.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:48.573 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:49.074 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:49.074 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:49.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:49.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2620.0125ms +2017-12-19 17:35:49.079 +05:30 [Information] Request finished in 2624.9995ms 200 application/json; charset=utf-8 +2017-12-19 17:35:49.080 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:35:49.104 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:35:49.105 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:35:49.105 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:35:50.686 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:51.188 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:51.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:51.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:51.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2616.1427ms +2017-12-19 17:35:51.195 +05:30 [Information] Request finished in 2623.9101ms 200 application/json; charset=utf-8 +2017-12-19 17:35:51.195 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:35:52.185 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:35:52.744 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:52.744 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:52.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:52.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3639.4934ms +2017-12-19 17:35:52.750 +05:30 [Information] Request finished in 3646.2158ms 200 application/json; charset=utf-8 +2017-12-19 17:35:52.751 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:35:52.763 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:35:52.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:35:52.764 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:35:55.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:35:57.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:35:57.401 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:35:57.401 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:35:57.403 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4637.7639ms +2017-12-19 17:35:57.404 +05:30 [Information] Request finished in 4642.5571ms 200 application/json; charset=utf-8 +2017-12-19 17:35:57.405 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:35:58.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:35:58.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:35:58.035 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:35:58.035 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:35:58.036 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:35:58.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:35:58.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:35:58.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:35:58.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:35:58.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:35:58.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:35:58.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:35:58.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:35:58.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:35:58.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:35:59.975 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:35:59.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:35:59.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:36:03.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:36:03.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:03.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:03.142 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:03.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:03.659 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:03.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:03.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:03.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5622.522ms +2017-12-19 17:36:03.664 +05:30 [Information] Request finished in 5663.571ms 200 application/json; charset=utf-8 +2017-12-19 17:36:03.664 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:36:03.668 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:36:03.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:36:03.671 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:36:03.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:03.692 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:03.692 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:03.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:03.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5658.5242ms +2017-12-19 17:36:03.699 +05:30 [Information] Request finished in 5698.3574ms 200 application/json; charset=utf-8 +2017-12-19 17:36:03.700 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:36:03.743 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:03.744 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:03.744 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:03.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:03.753 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5707.362ms +2017-12-19 17:36:03.755 +05:30 [Information] Request finished in 5754.8889ms 200 application/json; charset=utf-8 +2017-12-19 17:36:03.756 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:36:03.999 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:36:04.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:04.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:04.209 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:04.209 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:04.210 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:04.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5230.1064ms +2017-12-19 17:36:04.228 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:36:04.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:36:04.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:36:04.238 +05:30 [Information] Request finished in 5255.8883ms 200 application/json; charset=utf-8 +2017-12-19 17:36:04.239 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:36:05.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:05.080 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:05.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:05.082 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:05.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6976.3637ms +2017-12-19 17:36:05.088 +05:30 [Information] Request finished in 7059.6418ms 200 application/json; charset=utf-8 +2017-12-19 17:36:05.089 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:36:05.198 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:05.199 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:05.199 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:05.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:05.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5224.7369ms +2017-12-19 17:36:05.204 +05:30 [Information] Request finished in 5229.5454ms 200 application/json; charset=utf-8 +2017-12-19 17:36:05.205 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:36:05.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:36:06.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:06.881 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:06.881 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:06.882 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:06.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3210.9646ms +2017-12-19 17:36:06.886 +05:30 [Information] Request finished in 3218.174ms 200 application/json; charset=utf-8 +2017-12-19 17:36:06.886 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:36:07.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:36:07.778 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:07.778 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:07.779 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:07.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3549.4621ms +2017-12-19 17:36:07.782 +05:30 [Information] Request finished in 3562.9785ms 200 application/json; charset=utf-8 +2017-12-19 17:36:07.782 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:36:08.200 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:36:08.200 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:36:08.201 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:36:11.256 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:36:11.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:11.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:11.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:11.793 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3589.652ms +2017-12-19 17:36:11.795 +05:30 [Information] Request finished in 3598.0514ms 200 application/json; charset=utf-8 +2017-12-19 17:36:11.795 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:36:11.832 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:36:11.832 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:36:11.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:36:14.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:36:15.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:15.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:15.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:15.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3589.15ms +2017-12-19 17:36:15.427 +05:30 [Information] Request finished in 3594.8262ms 200 application/json; charset=utf-8 +2017-12-19 17:36:15.428 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:36:15.435 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:36:15.436 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:36:15.437 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:36:18.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:36:20.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:20.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:20.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:20.067 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4628.6685ms +2017-12-19 17:36:20.070 +05:30 [Information] Request finished in 4634.7269ms 200 application/json; charset=utf-8 +2017-12-19 17:36:20.070 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:36:20.948 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:36:20.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:36:20.948 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:36:20.949 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:36:20.949 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:36:20.949 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:36:20.950 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:36:20.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:36:20.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:36:20.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:36:20.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:36:20.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:36:21.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:36:21.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:36:21.040 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:36:21.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:36:21.041 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:36:21.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:36:24.035 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:24.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:24.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:24.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:36:24.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:24.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:36:24.693 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:24.693 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:24.693 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:24.695 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:24.736 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3736.1345ms +2017-12-19 17:36:24.810 +05:30 [Information] Request finished in 3872.5448ms 200 application/json; charset=utf-8 +2017-12-19 17:36:24.810 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:36:24.833 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:24.833 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:24.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:24.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:24.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:24.881 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:24.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:24.882 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:36:24.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:36:24.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:36:24.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:24.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3930.9402ms +2017-12-19 17:36:24.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3954.2281ms +2017-12-19 17:36:24.913 +05:30 [Information] Request finished in 3984.1827ms 200 application/json; charset=utf-8 +2017-12-19 17:36:24.913 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:36:24.924 +05:30 [Information] Request finished in 3987.0502ms 200 application/json; charset=utf-8 +2017-12-19 17:36:24.927 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:36:25.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:25.238 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:25.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:25.244 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:25.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4200.8124ms +2017-12-19 17:36:25.252 +05:30 [Information] Request finished in 4212.5731ms 200 application/json; charset=utf-8 +2017-12-19 17:36:25.252 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:36:25.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:25.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:25.290 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:25.290 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:25.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:25.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:25.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:25.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:25.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4342.061ms +2017-12-19 17:36:25.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4272.0476ms +2017-12-19 17:36:25.315 +05:30 [Information] Request finished in 4387.3458ms 200 application/json; charset=utf-8 +2017-12-19 17:36:25.316 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:36:25.316 +05:30 [Information] Request finished in 4278.1801ms 200 application/json; charset=utf-8 +2017-12-19 17:36:25.317 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:36:27.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:36:29.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:29.101 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:29.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:29.102 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:29.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4219.4261ms +2017-12-19 17:36:29.107 +05:30 [Information] Request finished in 4253.738ms 200 application/json; charset=utf-8 +2017-12-19 17:36:29.108 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:36:33.637 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:36:33.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:36:33.638 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:36:36.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:36:37.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:37.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:37.217 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:37.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3579.4485ms +2017-12-19 17:36:37.222 +05:30 [Information] Request finished in 3584.2215ms 200 application/json; charset=utf-8 +2017-12-19 17:36:37.222 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:36:37.840 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:36:37.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:36:37.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:36:40.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:36:41.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:41.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:41.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:41.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3551.2933ms +2017-12-19 17:36:41.397 +05:30 [Information] Request finished in 3556.7823ms 200 application/json; charset=utf-8 +2017-12-19 17:36:41.398 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:36:41.433 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:36:41.433 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:36:41.434 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:36:44.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:36:45.001 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:45.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:45.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:45.003 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3569.1616ms +2017-12-19 17:36:45.005 +05:30 [Information] Request finished in 3573.6976ms 200 application/json; charset=utf-8 +2017-12-19 17:36:45.006 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:36:45.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 17:36:45.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:36:45.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:36:48.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 17:36:49.663 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:49.663 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:49.664 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:49.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4650.8206ms +2017-12-19 17:36:49.667 +05:30 [Information] Request finished in 4655.017ms 200 application/json; charset=utf-8 +2017-12-19 17:36:49.667 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:36:51.168 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 17:36:51.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:36:51.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:36:51.268 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 17:36:51.269 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:36:51.272 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:36:51.280 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 17:36:51.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:36:51.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:36:51.317 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 17:36:51.318 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:36:51.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:36:53.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 17:36:53.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:36:53.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:36:54.101 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 17:36:54.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:36:54.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:36:57.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:57.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:57.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:57.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:36:57.435 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 17:36:57.466 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:36:57.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:57.811 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:57.811 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:57.813 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:57.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6540.7865ms +2017-12-19 17:36:57.818 +05:30 [Information] Request finished in 6674.176ms 200 application/json; charset=utf-8 +2017-12-19 17:36:57.819 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:36:57.823 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 17:36:57.824 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:36:57.825 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:36:57.982 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:57.982 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:57.983 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:57.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:57.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6672.7006ms +2017-12-19 17:36:57.996 +05:30 [Information] Request finished in 6802.5536ms 200 application/json; charset=utf-8 +2017-12-19 17:36:57.996 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:36:58.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:58.139 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:58.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:58.140 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:58.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6859.0574ms +2017-12-19 17:36:58.145 +05:30 [Information] Request finished in 7001.4614ms 200 application/json; charset=utf-8 +2017-12-19 17:36:58.145 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:36:58.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:58.322 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:58.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:58.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:58.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5221.5911ms +2017-12-19 17:36:58.327 +05:30 [Information] Request finished in 5225.6802ms 200 application/json; charset=utf-8 +2017-12-19 17:36:58.327 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:36:58.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:58.448 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:58.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:58.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:58.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7281.9629ms +2017-12-19 17:36:58.456 +05:30 [Information] Request finished in 7320.265ms 200 application/json; charset=utf-8 +2017-12-19 17:36:58.456 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:36:58.595 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:36:58.595 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:36:58.595 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:36:58.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:36:58.597 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4493.4332ms +2017-12-19 17:36:58.599 +05:30 [Information] Request finished in 4497.2604ms 200 application/json; charset=utf-8 +2017-12-19 17:36:58.599 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" completed keep alive response. +2017-12-19 17:37:00.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 17:37:02.030 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:37:02.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:37:02.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:37:02.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:37:02.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4206.2124ms +2017-12-19 17:37:02.037 +05:30 [Information] Request finished in 4214.0442ms 200 application/json; charset=utf-8 +2017-12-19 17:37:02.038 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:37:39.083 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:37:39.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:37:39.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:37:42.144 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:37:42.698 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:37:42.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:37:42.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:37:42.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3615.2261ms +2017-12-19 17:37:42.702 +05:30 [Information] Request finished in 3618.5023ms 200 application/json; charset=utf-8 +2017-12-19 17:37:42.702 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:37:45.467 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:37:45.469 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:37:45.469 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:37:48.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:37:49.207 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:37:49.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:37:49.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:37:49.209 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3739.3886ms +2017-12-19 17:37:49.211 +05:30 [Information] Request finished in 3782.7953ms 200 application/json; charset=utf-8 +2017-12-19 17:37:49.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:37:49.244 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:37:49.245 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:37:49.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:37:51.426 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:37:51.427 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:37:51.427 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:37:52.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:37:52.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:37:52.931 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:37:52.932 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:37:52.932 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3686.3469ms +2017-12-19 17:37:52.934 +05:30 [Information] Request finished in 3690.8189ms 200 application/json; charset=utf-8 +2017-12-19 17:37:52.934 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:37:52.940 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:37:52.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:37:52.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:37:53.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:37:54.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:37:54.041 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:37:54.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:37:54.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2615.4777ms +2017-12-19 17:37:54.047 +05:30 [Information] Request finished in 2620.6255ms 200 application/json; charset=utf-8 +2017-12-19 17:37:54.049 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:37:56.024 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:37:56.535 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:37:56.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:37:56.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:37:56.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3601.1207ms +2017-12-19 17:37:56.549 +05:30 [Information] Request finished in 3607.8008ms 200 application/json; charset=utf-8 +2017-12-19 17:37:56.550 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:38:01.300 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" received FIN. +2017-12-19 17:38:01.300 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" disconnecting. +2017-12-19 17:38:01.301 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" sending FIN. +2017-12-19 17:38:01.302 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" sent FIN with status "0". +2017-12-19 17:38:01.302 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:38:01.302 +05:30 [Debug] Connection id ""0HLA6QGDVS5TK"" stopped. +2017-12-19 17:38:01.303 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:38:01.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:38:04.332 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:38:04.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:04.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:04.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:04.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3580.9836ms +2017-12-19 17:38:04.890 +05:30 [Information] Request finished in 3590.3331ms 200 application/json; charset=utf-8 +2017-12-19 17:38:04.891 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:38:04.917 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-19 17:38:04.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-19 17:38:04.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-19 17:38:08.015 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-19 17:38:09.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:09.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:09.721 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:09.723 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4799.0299ms +2017-12-19 17:38:09.726 +05:30 [Information] Request finished in 4812.0309ms 200 application/json; charset=utf-8 +2017-12-19 17:38:09.727 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:38:09.771 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:38:09.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:38:09.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:38:12.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:38:13.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:13.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:13.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:13.357 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3584.2392ms +2017-12-19 17:38:13.360 +05:30 [Information] Request finished in 3589.9359ms 200 application/json; charset=utf-8 +2017-12-19 17:38:13.361 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:38:13.375 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-19 17:38:13.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:38:13.376 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:38:16.412 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-19 17:38:17.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:17.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:17.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:18.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4610.3128ms +2017-12-19 17:38:18.005 +05:30 [Information] Request finished in 4629.9109ms 200 application/json; charset=utf-8 +2017-12-19 17:38:18.006 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:38:21.670 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:38:21.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:38:21.671 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:38:21.916 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 17:38:21.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:38:21.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:38:21.922 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 17:38:21.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:38:21.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:38:22.114 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" started. +2017-12-19 17:38:22.118 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 17:38:22.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:38:22.118 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:38:22.125 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 17:38:22.155 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:38:22.156 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 17:38:22.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 17:38:22.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:38:22.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:38:22.203 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:38:22.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:38:22.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:38:24.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:38:25.021 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:25.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:25.160 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:25.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:25.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:25.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:25.564 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:25.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:25.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:25.566 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3895.002ms +2017-12-19 17:38:25.568 +05:30 [Information] Request finished in 3898.7207ms 200 application/json; charset=utf-8 +2017-12-19 17:38:25.569 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:38:25.578 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-19 17:38:25.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:38:25.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:38:25.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:25.966 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:25.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:25.967 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:25.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3764.8107ms +2017-12-19 17:38:25.971 +05:30 [Information] Request finished in 3815.3826ms 200 application/json; charset=utf-8 +2017-12-19 17:38:25.971 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:38:25.974 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 17:38:25.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:38:25.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:38:26.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:26.036 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:26.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:26.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:26.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4120.719ms +2017-12-19 17:38:26.040 +05:30 [Information] Request finished in 4125.7029ms 200 application/json; charset=utf-8 +2017-12-19 17:38:26.040 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:38:26.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:26.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:26.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:26.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:26.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4246.2406ms +2017-12-19 17:38:26.172 +05:30 [Information] Request finished in 4250.4752ms 200 application/json; charset=utf-8 +2017-12-19 17:38:26.172 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:38:26.200 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:26.200 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:26.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:26.201 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:26.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4083.9035ms +2017-12-19 17:38:26.205 +05:30 [Information] Request finished in 4093.1712ms 200 application/json; charset=utf-8 +2017-12-19 17:38:26.206 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:38:27.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:27.228 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:27.228 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:27.229 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:27.233 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5023.5264ms +2017-12-19 17:38:27.237 +05:30 [Information] Request finished in 5114.8391ms 200 application/json; charset=utf-8 +2017-12-19 17:38:27.237 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" completed keep alive response. +2017-12-19 17:38:28.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-19 17:38:29.016 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:30.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:30.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:30.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:30.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4672.3401ms +2017-12-19 17:38:30.256 +05:30 [Information] Request finished in 4678.5173ms 200 application/json; charset=utf-8 +2017-12-19 17:38:30.256 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:38:31.325 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 17:38:31.325 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:38:31.326 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:38:31.333 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 17:38:31.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:38:31.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:38:31.340 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 17:38:31.341 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:38:31.341 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:38:31.348 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 17:38:31.349 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:38:31.349 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:38:31.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:31.396 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:31.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:31.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:31.482 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" received FIN. +2017-12-19 17:38:31.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5451.3719ms +2017-12-19 17:38:31.526 +05:30 [Information] Request finished in 5547.4446ms 200 application/json; charset=utf-8 +2017-12-19 17:38:31.526 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" completed keep alive response. +2017-12-19 17:38:31.527 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" disconnecting. +2017-12-19 17:38:31.528 +05:30 [Information] Connection id ""0HLA6QGDVS5TQ"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-19 17:38:31.531 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" sending FIN. +2017-12-19 17:38:31.532 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" sent FIN with status "0". +2017-12-19 17:38:31.533 +05:30 [Debug] Connection id ""0HLA6QGDVS5TQ"" stopped. +2017-12-19 17:38:31.592 +05:30 [Debug] Connection id ""0HLA6QGDVS5TS"" started. +2017-12-19 17:38:31.593 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 17:38:31.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:38:31.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:38:31.594 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 17:38:31.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:38:31.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:38:32.651 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:38:32.654 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:38:33.224 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:38:33.225 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:38:33.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:33.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:33.826 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:33.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:33.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:33.876 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:34.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:34.407 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:34.407 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:34.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:34.409 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3082.1037ms +2017-12-19 17:38:34.411 +05:30 [Information] Request finished in 3086.8938ms 200 application/json; charset=utf-8 +2017-12-19 17:38:34.411 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:38:34.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 17:38:34.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:38:34.415 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:38:34.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:34.473 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:34.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:34.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:34.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3124.4203ms +2017-12-19 17:38:34.477 +05:30 [Information] Request finished in 3128.7377ms 200 application/json; charset=utf-8 +2017-12-19 17:38:34.477 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" completed keep alive response. +2017-12-19 17:38:34.841 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:34.842 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:34.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:34.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:34.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3249.2975ms +2017-12-19 17:38:34.847 +05:30 [Information] Request finished in 3253.9623ms 200 application/json; charset=utf-8 +2017-12-19 17:38:34.847 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" completed keep alive response. +2017-12-19 17:38:34.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:34.909 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:34.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:34.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:34.912 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3569.6356ms +2017-12-19 17:38:34.914 +05:30 [Information] Request finished in 3574.2008ms 200 application/json; charset=utf-8 +2017-12-19 17:38:34.915 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" completed keep alive response. +2017-12-19 17:38:35.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:35.049 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:35.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:35.050 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:35.052 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3453.0834ms +2017-12-19 17:38:35.054 +05:30 [Information] Request finished in 3460.2997ms 200 application/json; charset=utf-8 +2017-12-19 17:38:35.055 +05:30 [Debug] Connection id ""0HLA6QGDVS5TS"" completed keep alive response. +2017-12-19 17:38:37.459 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:38:39.680 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:39.680 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:39.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:39.681 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:39.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5266.0838ms +2017-12-19 17:38:39.685 +05:30 [Information] Request finished in 5269.9701ms 200 application/json; charset=utf-8 +2017-12-19 17:38:39.685 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" completed keep alive response. +2017-12-19 17:38:40.673 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:38:40.674 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:38:41.201 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:38:41.202 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:38:48.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:48.492 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:48.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:48.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:48.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26332.4931ms +2017-12-19 17:38:48.513 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" received FIN. +2017-12-19 17:38:48.515 +05:30 [Information] Request finished in 26401.2351ms 200 application/json; charset=utf-8 +2017-12-19 17:38:48.515 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" completed keep alive response. +2017-12-19 17:38:48.516 +05:30 [Information] Connection id ""0HLA6QGDVS5TL"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-19 17:38:48.516 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" disconnecting. +2017-12-19 17:38:48.517 +05:30 [Debug] Connection id ""0HLA6QGDVS5TL"" stopped. +2017-12-19 17:38:53.598 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=48&profileId=144407316157061 0 +2017-12-19 17:38:53.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:38:53.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:38:56.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:56.382 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:56.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:38:56.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:56.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 25053.5243ms +2017-12-19 17:38:56.393 +05:30 [Information] Request finished in 25059.5522ms 200 application/json; charset=utf-8 +2017-12-19 17:38:56.394 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:38:56.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["48", "144407316157061"]) - ModelState is Valid +2017-12-19 17:38:59.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:38:59.911 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:38:59.911 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:38:59.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:38:59.920 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 6315.89ms +2017-12-19 17:38:59.923 +05:30 [Information] Request finished in 6323.2771ms 200 text/plain; charset=utf-8 +2017-12-19 17:38:59.924 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" completed keep alive response. +2017-12-19 17:39:43.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" received FIN. +2017-12-19 17:39:43.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TS"" received FIN. +2017-12-19 17:39:43.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" received FIN. +2017-12-19 17:39:43.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" received FIN. +2017-12-19 17:39:43.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" disconnecting. +2017-12-19 17:39:43.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" disconnecting. +2017-12-19 17:39:43.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" disconnecting. +2017-12-19 17:39:43.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" sending FIN. +2017-12-19 17:39:43.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TS"" disconnecting. +2017-12-19 17:39:43.217 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" sending FIN. +2017-12-19 17:39:43.218 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" sent FIN with status "0". +2017-12-19 17:39:43.220 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:39:43.220 +05:30 [Debug] Connection id ""0HLA6QGDVS5TM"" stopped. +2017-12-19 17:39:43.221 +05:30 [Debug] Connection id ""0HLA6QGDVS5TS"" sending FIN. +2017-12-19 17:39:43.221 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:39:43.221 +05:30 [Debug] Connection id ""0HLA6QGDVS5TS"" sent FIN with status "0". +2017-12-19 17:39:43.221 +05:30 [Debug] Connection id ""0HLA6QGDVS5TS"" stopped. +2017-12-19 17:39:43.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:39:43.219 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" sending FIN. +2017-12-19 17:39:43.225 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" sent FIN with status "0". +2017-12-19 17:39:43.226 +05:30 [Debug] Connection id ""0HLA6QGDVS5TP"" stopped. +2017-12-19 17:39:43.226 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" sent FIN with status "0". +2017-12-19 17:39:43.226 +05:30 [Debug] Connection id ""0HLA6QGDVS5TN"" stopped. +2017-12-19 17:39:46.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:39:46.787 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:39:46.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:39:46.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:39:46.789 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3567.14ms +2017-12-19 17:39:46.792 +05:30 [Information] Request finished in 3573.4168ms 200 application/json; charset=utf-8 +2017-12-19 17:39:46.793 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:39:46.798 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-19 17:39:46.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:39:46.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:39:49.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-19 17:39:51.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:39:51.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:39:51.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:39:51.396 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4596.5828ms +2017-12-19 17:39:51.400 +05:30 [Information] Request finished in 4602.6456ms 200 application/json; charset=utf-8 +2017-12-19 17:39:51.401 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" completed keep alive response. +2017-12-19 17:39:55.943 +05:30 [Debug] Connection id ""0HLA6QGDVS5TT"" started. +2017-12-19 17:39:55.943 +05:30 [Debug] Connection id ""0HLA6QGDVS5TU"" started. +2017-12-19 17:39:55.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 17:39:55.994 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:39:55.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:39:56.016 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 17:39:56.016 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:39:56.017 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:39:56.032 +05:30 [Debug] Connection id ""0HLA6QGDVS5TV"" started. +2017-12-19 17:39:56.046 +05:30 [Debug] Connection id ""0HLA6QGDVS5U0"" started. +2017-12-19 17:39:56.062 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 17:39:56.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:39:56.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:39:56.082 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 17:39:56.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:39:56.090 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:39:56.149 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 17:39:56.150 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:39:56.150 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:39:56.374 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 17:39:56.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:39:56.375 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:39:58.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:39:58.262 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:39:58.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:39:58.933 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:39:58.936 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:39:58.936 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:39:58.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:39:58.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2923.601ms +2017-12-19 17:39:58.970 +05:30 [Information] Request finished in 3034.9326ms 200 application/json; charset=utf-8 +2017-12-19 17:39:58.971 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" completed keep alive response. +2017-12-19 17:39:59.011 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 17:39:59.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:39:59.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:39:59.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:39:59.399 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:39:59.537 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:40:00.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:40:00.070 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:40:00.070 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:40:00.071 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:40:00.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4009.119ms +2017-12-19 17:40:00.077 +05:30 [Information] Request finished in 4131.4145ms 200 application/json; charset=utf-8 +2017-12-19 17:40:00.077 +05:30 [Debug] Connection id ""0HLA6QGDVS5TT"" completed keep alive response. +2017-12-19 17:40:00.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:40:00.159 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:40:00.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:40:00.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:40:00.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3784.3786ms +2017-12-19 17:40:00.171 +05:30 [Information] Request finished in 3848.2324ms 200 application/json; charset=utf-8 +2017-12-19 17:40:00.173 +05:30 [Debug] Connection id ""0HLA6QGDVS5U0"" completed keep alive response. +2017-12-19 17:40:00.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:40:00.368 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:40:00.372 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:40:00.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:40:00.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4225.4877ms +2017-12-19 17:40:00.382 +05:30 [Information] Request finished in 4312.9893ms 200 application/json; charset=utf-8 +2017-12-19 17:40:00.382 +05:30 [Debug] Connection id ""0HLA6QGDVS5TV"" completed keep alive response. +2017-12-19 17:40:00.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:40:00.459 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:40:00.460 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:40:00.460 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:40:00.462 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4371.2922ms +2017-12-19 17:40:00.464 +05:30 [Information] Request finished in 4430.1895ms 200 application/json; charset=utf-8 +2017-12-19 17:40:00.465 +05:30 [Debug] Connection id ""0HLA6QGDVS5TU"" completed keep alive response. +2017-12-19 17:40:02.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:40:04.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:40:04.630 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:40:04.630 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:40:04.631 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:40:04.632 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5617.9515ms +2017-12-19 17:40:04.638 +05:30 [Information] Request finished in 5660.2752ms 200 application/json; charset=utf-8 +2017-12-19 17:40:04.639 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" completed keep alive response. +2017-12-19 17:40:05.187 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:40:05.188 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:40:05.743 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:40:05.744 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:40:20.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:40:20.892 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:40:20.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:40:20.893 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:40:20.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 24900.4779ms +2017-12-19 17:40:20.898 +05:30 [Information] Request finished in 24966.139ms 200 application/json; charset=utf-8 +2017-12-19 17:40:20.899 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" completed keep alive response. +2017-12-19 17:42:15.615 +05:30 [Debug] Connection id ""0HLA6QGDVS5U0"" received FIN. +2017-12-19 17:42:15.615 +05:30 [Debug] Connection id ""0HLA6QGDVS5TT"" received FIN. +2017-12-19 17:42:15.615 +05:30 [Debug] Connection id ""0HLA6QGDVS5TU"" received FIN. +2017-12-19 17:42:15.615 +05:30 [Debug] Connection id ""0HLA6QGDVS5TV"" received FIN. +2017-12-19 17:42:15.615 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" received FIN. +2017-12-19 17:42:15.615 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" received FIN. +2017-12-19 17:42:15.616 +05:30 [Debug] Connection id ""0HLA6QGDVS5U0"" disconnecting. +2017-12-19 17:42:15.616 +05:30 [Debug] Connection id ""0HLA6QGDVS5TU"" disconnecting. +2017-12-19 17:42:15.616 +05:30 [Debug] Connection id ""0HLA6QGDVS5TV"" disconnecting. +2017-12-19 17:42:15.616 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" disconnecting. +2017-12-19 17:42:15.616 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" disconnecting. +2017-12-19 17:42:15.616 +05:30 [Debug] Connection id ""0HLA6QGDVS5U0"" sending FIN. +2017-12-19 17:42:15.617 +05:30 [Debug] Connection id ""0HLA6QGDVS5TU"" sending FIN. +2017-12-19 17:42:15.617 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" sending FIN. +2017-12-19 17:42:15.618 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" sent FIN with status "0". +2017-12-19 17:42:15.618 +05:30 [Debug] Connection id ""0HLA6QGDVS5TO"" stopped. +2017-12-19 17:42:15.618 +05:30 [Debug] Connection id ""0HLA6QGDVS5TU"" sent FIN with status "0". +2017-12-19 17:42:15.619 +05:30 [Debug] Connection id ""0HLA6QGDVS5TU"" stopped. +2017-12-19 17:42:15.619 +05:30 [Debug] Connection id ""0HLA6QGDVS5U0"" sent FIN with status "0". +2017-12-19 17:42:15.616 +05:30 [Debug] Connection id ""0HLA6QGDVS5TT"" disconnecting. +2017-12-19 17:42:15.620 +05:30 [Debug] Connection id ""0HLA6QGDVS5U0"" stopped. +2017-12-19 17:42:15.616 +05:30 [Debug] Connection id ""0HLA6QGDVS5U1"" started. +2017-12-19 17:42:15.621 +05:30 [Debug] Connection id ""0HLA6QGDVS5TV"" sending FIN. +2017-12-19 17:42:15.622 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" sending FIN. +2017-12-19 17:42:15.622 +05:30 [Debug] Connection id ""0HLA6QGDVS5TT"" sending FIN. +2017-12-19 17:42:15.622 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=48&profileId=144407316157061 0 +2017-12-19 17:42:15.622 +05:30 [Debug] Connection id ""0HLA6QGDVS5TT"" sent FIN with status "0". +2017-12-19 17:42:15.623 +05:30 [Debug] Connection id ""0HLA6QGDVS5TT"" stopped. +2017-12-19 17:42:15.623 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" sent FIN with status "0". +2017-12-19 17:42:15.623 +05:30 [Debug] Connection id ""0HLA6QGDVS5TR"" stopped. +2017-12-19 17:42:15.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:42:15.623 +05:30 [Debug] Connection id ""0HLA6QGDVS5TV"" sent FIN with status "0". +2017-12-19 17:42:15.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:42:15.624 +05:30 [Debug] Connection id ""0HLA6QGDVS5TV"" stopped. +2017-12-19 17:42:17.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["48", "144407316157061"]) - ModelState is Valid +2017-12-19 17:42:21.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:42:21.343 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:42:21.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:42:21.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:42:21.346 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 5721.1362ms +2017-12-19 17:42:21.351 +05:30 [Information] Request finished in 5726.8578ms 200 text/plain; charset=utf-8 +2017-12-19 17:42:21.352 +05:30 [Debug] Connection id ""0HLA6QGDVS5U1"" completed keep alive response. +2017-12-19 17:44:06.209 +05:30 [Debug] Connection id ""0HLA6QGDVS5U1"" received FIN. +2017-12-19 17:44:06.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5U1"" disconnecting. +2017-12-19 17:44:06.210 +05:30 [Debug] Connection id ""0HLA6QGDVS5U1"" sending FIN. +2017-12-19 17:44:06.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5U1"" sent FIN with status "0". +2017-12-19 17:44:06.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5U1"" stopped. +2017-12-19 17:46:08.565 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" started. +2017-12-19 17:46:08.566 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:46:08.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:46:08.567 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:46:11.615 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:46:12.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:46:12.169 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:46:12.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:46:12.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3602.8076ms +2017-12-19 17:46:12.172 +05:30 [Information] Request finished in 3606.2536ms 200 application/json; charset=utf-8 +2017-12-19 17:46:12.172 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" completed keep alive response. +2017-12-19 17:46:12.178 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-19 17:46:12.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:46:12.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:46:14.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-19 17:46:15.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:46:15.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:46:15.935 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:46:15.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3756.2129ms +2017-12-19 17:46:15.939 +05:30 [Information] Request finished in 3760.4273ms 200 application/json; charset=utf-8 +2017-12-19 17:46:15.940 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" completed keep alive response. +2017-12-19 17:46:18.903 +05:30 [Debug] Connection id ""0HLA6QGDVS5U3"" started. +2017-12-19 17:46:18.918 +05:30 [Debug] Connection id ""0HLA6QGDVS5U4"" started. +2017-12-19 17:46:18.919 +05:30 [Debug] Connection id ""0HLA6QGDVS5U5"" started. +2017-12-19 17:46:18.928 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 17:46:18.933 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 17:46:18.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:46:18.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:46:18.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:46:18.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:46:18.991 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 17:46:18.994 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:46:18.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:46:19.025 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 17:46:19.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:46:19.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:46:19.417 +05:30 [Debug] Connection id ""0HLA6QGDVS5U6"" started. +2017-12-19 17:46:19.915 +05:30 [Debug] Connection id ""0HLA6QGDVS5U7"" started. +2017-12-19 17:46:19.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 17:46:19.979 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:46:19.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:46:20.935 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 17:46:20.936 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:46:20.937 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:46:23.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:46:24.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:46:24.102 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:46:24.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:46:24.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:46:24.540 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:46:24.540 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:46:24.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:46:24.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5607.2982ms +2017-12-19 17:46:24.545 +05:30 [Information] Request finished in 5649.8838ms 200 application/json; charset=utf-8 +2017-12-19 17:46:24.545 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" completed keep alive response. +2017-12-19 17:46:24.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:46:24.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 17:46:24.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:46:24.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:46:24.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:46:25.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:46:25.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:46:25.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:46:25.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:46:25.249 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6252.5413ms +2017-12-19 17:46:25.251 +05:30 [Information] Request finished in 6331.2569ms 200 application/json; charset=utf-8 +2017-12-19 17:46:25.251 +05:30 [Debug] Connection id ""0HLA6QGDVS5U4"" completed keep alive response. +2017-12-19 17:46:26.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:46:26.141 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:46:26.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:46:26.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:46:26.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7117.9081ms +2017-12-19 17:46:26.148 +05:30 [Information] Request finished in 7226.6011ms 200 application/json; charset=utf-8 +2017-12-19 17:46:26.148 +05:30 [Debug] Connection id ""0HLA6QGDVS5U5"" completed keep alive response. +2017-12-19 17:46:26.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:46:26.608 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:46:26.608 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:46:26.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:46:26.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5672.3706ms +2017-12-19 17:46:26.615 +05:30 [Information] Request finished in 5679.4672ms 200 application/json; charset=utf-8 +2017-12-19 17:46:26.616 +05:30 [Debug] Connection id ""0HLA6QGDVS5U7"" completed keep alive response. +2017-12-19 17:46:26.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:46:26.999 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:46:26.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:46:27.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:46:27.001 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 7019.5831ms +2017-12-19 17:46:27.003 +05:30 [Information] Request finished in 7025.1433ms 200 application/json; charset=utf-8 +2017-12-19 17:46:27.004 +05:30 [Debug] Connection id ""0HLA6QGDVS5U6"" completed keep alive response. +2017-12-19 17:46:27.724 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:46:28.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:46:28.836 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:46:28.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:46:28.837 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:46:28.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4155.9654ms +2017-12-19 17:46:28.841 +05:30 [Information] Request finished in 4241.8476ms 200 application/json; charset=utf-8 +2017-12-19 17:46:28.841 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" completed keep alive response. +2017-12-19 17:46:33.046 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:46:33.048 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:46:33.614 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:46:33.615 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:46:48.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:46:48.901 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:46:48.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:46:48.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:46:48.915 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 29946.8858ms +2017-12-19 17:46:48.921 +05:30 [Information] Request finished in 29999.4314ms 200 application/json; charset=utf-8 +2017-12-19 17:46:48.921 +05:30 [Debug] Connection id ""0HLA6QGDVS5U3"" completed keep alive response. +2017-12-19 17:47:27.448 +05:30 [Debug] Connection id ""0HLA6QGDVS5U4"" received FIN. +2017-12-19 17:47:27.448 +05:30 [Debug] Connection id ""0HLA6QGDVS5U5"" received FIN. +2017-12-19 17:47:27.448 +05:30 [Debug] Connection id ""0HLA6QGDVS5U6"" received FIN. +2017-12-19 17:47:27.448 +05:30 [Debug] Connection id ""0HLA6QGDVS5U7"" received FIN. +2017-12-19 17:47:27.449 +05:30 [Debug] Connection id ""0HLA6QGDVS5U4"" disconnecting. +2017-12-19 17:47:27.449 +05:30 [Debug] Connection id ""0HLA6QGDVS5U5"" disconnecting. +2017-12-19 17:47:27.449 +05:30 [Debug] Connection id ""0HLA6QGDVS5U4"" sending FIN. +2017-12-19 17:47:27.449 +05:30 [Debug] Connection id ""0HLA6QGDVS5U5"" sending FIN. +2017-12-19 17:47:27.449 +05:30 [Debug] Connection id ""0HLA6QGDVS5U7"" disconnecting. +2017-12-19 17:47:27.450 +05:30 [Debug] Connection id ""0HLA6QGDVS5U4"" sent FIN with status "0". +2017-12-19 17:47:27.450 +05:30 [Debug] Connection id ""0HLA6QGDVS5U5"" sent FIN with status "0". +2017-12-19 17:47:27.450 +05:30 [Debug] Connection id ""0HLA6QGDVS5U4"" stopped. +2017-12-19 17:47:27.450 +05:30 [Debug] Connection id ""0HLA6QGDVS5U5"" stopped. +2017-12-19 17:47:27.452 +05:30 [Debug] Connection id ""0HLA6QGDVS5U7"" sending FIN. +2017-12-19 17:47:27.453 +05:30 [Debug] Connection id ""0HLA6QGDVS5U7"" sent FIN with status "0". +2017-12-19 17:47:27.449 +05:30 [Debug] Connection id ""0HLA6QGDVS5U6"" disconnecting. +2017-12-19 17:47:27.465 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=48&profileId=144407316157061 0 +2017-12-19 17:47:27.465 +05:30 [Debug] Connection id ""0HLA6QGDVS5U6"" sending FIN. +2017-12-19 17:47:27.465 +05:30 [Debug] Connection id ""0HLA6QGDVS5U6"" sent FIN with status "0". +2017-12-19 17:47:27.466 +05:30 [Debug] Connection id ""0HLA6QGDVS5U6"" stopped. +2017-12-19 17:47:27.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:47:27.464 +05:30 [Debug] Connection id ""0HLA6QGDVS5U7"" stopped. +2017-12-19 17:47:27.466 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:47:30.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["48", "144407316157061"]) - ModelState is Valid +2017-12-19 17:47:37.667 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:47:37.667 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:47:37.667 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:47:37.668 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:47:37.669 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 10201.5967ms +2017-12-19 17:47:37.671 +05:30 [Information] Request finished in 10220.134ms 200 text/plain; charset=utf-8 +2017-12-19 17:47:37.671 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" completed keep alive response. +2017-12-19 17:48:51.258 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" received FIN. +2017-12-19 17:48:51.258 +05:30 [Debug] Connection id ""0HLA6QGDVS5U3"" received FIN. +2017-12-19 17:48:51.259 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" started. +2017-12-19 17:48:51.259 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" disconnecting. +2017-12-19 17:48:51.259 +05:30 [Debug] Connection id ""0HLA6QGDVS5U3"" disconnecting. +2017-12-19 17:48:51.259 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" sending FIN. +2017-12-19 17:48:51.260 +05:30 [Debug] Connection id ""0HLA6QGDVS5U3"" sending FIN. +2017-12-19 17:48:51.260 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" sent FIN with status "0". +2017-12-19 17:48:51.261 +05:30 [Debug] Connection id ""0HLA6QGDVS5U3"" sent FIN with status "0". +2017-12-19 17:48:51.261 +05:30 [Debug] Connection id ""0HLA6QGDVS5U3"" stopped. +2017-12-19 17:48:51.261 +05:30 [Debug] Connection id ""0HLA6QGDVS5U2"" stopped. +2017-12-19 17:48:51.265 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=48&profileId=144407316157061 0 +2017-12-19 17:48:51.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:48:51.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:48:51.296 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" started. +2017-12-19 17:48:51.299 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=48&userId=48&profileId=144407316157061 0 +2017-12-19 17:48:51.299 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-12-19 17:48:51.300 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-12-19 17:48:53.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["48", "144407316157061"]) - ModelState is Valid +2017-12-19 17:49:00.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["48", "48", "144407316157061"]) - ModelState is Valid +2017-12-19 17:49:07.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:07.885 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:49:07.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:49:07.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:07.895 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 16623.3229ms +2017-12-19 17:49:07.899 +05:30 [Information] Request finished in 16635.4456ms 200 text/plain; charset=utf-8 +2017-12-19 17:49:07.900 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" completed keep alive response. +2017-12-19 17:49:14.114 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:14.114 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:49:14.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:49:14.115 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:14.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 22816.4534ms +2017-12-19 17:49:14.120 +05:30 [Information] Request finished in 22821.0706ms 200 text/plain; charset=utf-8 +2017-12-19 17:49:14.120 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" completed keep alive response. +2017-12-19 17:49:14.203 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:49:14.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:49:14.204 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:49:16.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:49:16.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:16.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:49:16.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:16.826 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2620.4464ms +2017-12-19 17:49:16.829 +05:30 [Information] Request finished in 2625.1258ms 200 application/json; charset=utf-8 +2017-12-19 17:49:16.830 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" completed keep alive response. +2017-12-19 17:49:16.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-19 17:49:16.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:49:16.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:49:18.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-19 17:49:20.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:20.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:49:20.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:20.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3688.5019ms +2017-12-19 17:49:20.535 +05:30 [Information] Request finished in 3696.0784ms 200 application/json; charset=utf-8 +2017-12-19 17:49:20.535 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" completed keep alive response. +2017-12-19 17:49:21.527 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" started. +2017-12-19 17:49:21.527 +05:30 [Debug] Connection id ""0HLA6QGDVS5UB"" started. +2017-12-19 17:49:21.529 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 17:49:21.529 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:49:21.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:49:21.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 17:49:21.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 17:49:21.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:49:21.538 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 17:49:21.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:49:21.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:49:21.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:49:21.573 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:49:21.587 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:49:21.615 +05:30 [Debug] Connection id ""0HLA6QGDVS5UC"" started. +2017-12-19 17:49:21.615 +05:30 [Debug] Connection id ""0HLA6QGDVS5UD"" started. +2017-12-19 17:49:21.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 17:49:21.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:49:21.618 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 17:49:21.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:49:21.620 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:49:21.620 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:49:24.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:49:24.888 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:49:24.941 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:49:24.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:49:24.945 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:49:24.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:49:25.262 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:25.262 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:49:25.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:49:25.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:25.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3721.2905ms +2017-12-19 17:49:25.269 +05:30 [Information] Request finished in 3743.6659ms 200 application/json; charset=utf-8 +2017-12-19 17:49:25.270 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" completed keep alive response. +2017-12-19 17:49:25.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 17:49:25.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:49:25.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:49:25.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:25.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:49:25.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:49:25.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:25.599 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4010.6355ms +2017-12-19 17:49:25.601 +05:30 [Information] Request finished in 4073.5874ms 200 application/json; charset=utf-8 +2017-12-19 17:49:25.602 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" completed keep alive response. +2017-12-19 17:49:25.990 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:25.990 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:49:25.990 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:49:25.992 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:25.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4414.4433ms +2017-12-19 17:49:25.994 +05:30 [Information] Request finished in 4466.3301ms 200 application/json; charset=utf-8 +2017-12-19 17:49:25.995 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" completed keep alive response. +2017-12-19 17:49:26.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:26.029 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:49:26.029 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:49:26.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:26.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4410.937ms +2017-12-19 17:49:26.033 +05:30 [Information] Request finished in 4417.3779ms 200 application/json; charset=utf-8 +2017-12-19 17:49:26.034 +05:30 [Debug] Connection id ""0HLA6QGDVS5UC"" completed keep alive response. +2017-12-19 17:49:26.092 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:26.092 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:49:26.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:49:26.093 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:26.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4472.7882ms +2017-12-19 17:49:26.096 +05:30 [Information] Request finished in 4479.1079ms 200 application/json; charset=utf-8 +2017-12-19 17:49:26.096 +05:30 [Debug] Connection id ""0HLA6QGDVS5UD"" completed keep alive response. +2017-12-19 17:49:28.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:49:30.693 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:30.694 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:49:30.694 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:49:30.695 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:30.696 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5419.2744ms +2017-12-19 17:49:30.700 +05:30 [Information] Request finished in 5425.5447ms 200 application/json; charset=utf-8 +2017-12-19 17:49:30.700 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" completed keep alive response. +2017-12-19 17:49:33.557 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:49:33.558 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:49:34.144 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:49:34.145 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:49:49.632 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:49:49.633 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:49:49.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:49:49.634 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:49:49.636 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 28053.0239ms +2017-12-19 17:49:49.640 +05:30 [Information] Request finished in 28110.5571ms 200 application/json; charset=utf-8 +2017-12-19 17:49:49.640 +05:30 [Debug] Connection id ""0HLA6QGDVS5UB"" completed keep alive response. +2017-12-19 17:50:19.651 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:50:19.651 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:50:19.651 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:50:21.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:50:22.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:50:22.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:50:22.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:50:22.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2672.2356ms +2017-12-19 17:50:22.326 +05:30 [Information] Request finished in 2676.4939ms 200 application/json; charset=utf-8 +2017-12-19 17:50:22.327 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" completed keep alive response. +2017-12-19 17:50:22.332 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-19 17:50:22.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:50:22.333 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:50:25.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-19 17:50:26.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:50:26.978 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:50:26.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:50:26.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4646.2525ms +2017-12-19 17:50:26.982 +05:30 [Information] Request finished in 4650.7985ms 200 application/json; charset=utf-8 +2017-12-19 17:50:26.983 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" completed keep alive response. +2017-12-19 17:50:31.628 +05:30 [Debug] Connection id ""0HLA6QGDVS5UC"" received FIN. +2017-12-19 17:50:31.628 +05:30 [Debug] Connection id ""0HLA6QGDVS5UD"" received FIN. +2017-12-19 17:50:31.628 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" received FIN. +2017-12-19 17:50:31.628 +05:30 [Debug] Connection id ""0HLA6QGDVS5UC"" disconnecting. +2017-12-19 17:50:31.629 +05:30 [Debug] Connection id ""0HLA6QGDVS5UC"" sending FIN. +2017-12-19 17:50:31.629 +05:30 [Debug] Connection id ""0HLA6QGDVS5UC"" sent FIN with status "0". +2017-12-19 17:50:31.629 +05:30 [Debug] Connection id ""0HLA6QGDVS5UC"" stopped. +2017-12-19 17:50:31.630 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" disconnecting. +2017-12-19 17:50:31.630 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" sending FIN. +2017-12-19 17:50:31.637 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" sent FIN with status "0". +2017-12-19 17:50:31.637 +05:30 [Debug] Connection id ""0HLA6QGDVS5U8"" stopped. +2017-12-19 17:50:31.629 +05:30 [Debug] Connection id ""0HLA6QGDVS5UD"" disconnecting. +2017-12-19 17:50:31.641 +05:30 [Debug] Connection id ""0HLA6QGDVS5UD"" sending FIN. +2017-12-19 17:50:31.641 +05:30 [Debug] Connection id ""0HLA6QGDVS5UD"" sent FIN with status "0". +2017-12-19 17:50:31.642 +05:30 [Debug] Connection id ""0HLA6QGDVS5UD"" stopped. +2017-12-19 17:50:31.642 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 17:50:31.645 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:50:31.646 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:50:31.659 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 17:50:31.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:50:31.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:50:31.916 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 17:50:31.917 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:50:31.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:50:31.944 +05:30 [Debug] Connection id ""0HLA6QGDVS5UE"" started. +2017-12-19 17:50:31.945 +05:30 [Debug] Connection id ""0HLA6QGDVS5UF"" started. +2017-12-19 17:50:31.945 +05:30 [Debug] Connection id ""0HLA6QGDVS5UG"" started. +2017-12-19 17:50:31.974 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 17:50:31.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:50:31.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:50:32.006 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 17:50:32.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:50:32.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:50:32.046 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 17:50:32.046 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:50:32.046 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:50:33.872 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:50:34.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:50:34.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:50:34.741 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:50:34.742 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:50:34.743 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:50:34.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2825.0783ms +2017-12-19 17:50:34.752 +05:30 [Information] Request finished in 2875.7578ms 200 application/json; charset=utf-8 +2017-12-19 17:50:34.753 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" completed keep alive response. +2017-12-19 17:50:34.788 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 17:50:34.788 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:50:34.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:50:34.909 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:50:34.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:50:34.966 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:50:34.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:50:34.967 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:50:34.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3320.7476ms +2017-12-19 17:50:34.970 +05:30 [Information] Request finished in 3339.8572ms 200 application/json; charset=utf-8 +2017-12-19 17:50:34.970 +05:30 [Debug] Connection id ""0HLA6QGDVS5UB"" completed keep alive response. +2017-12-19 17:50:35.232 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:50:35.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:50:35.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:50:35.938 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:50:35.938 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:50:35.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:50:35.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:50:35.940 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3965.1021ms +2017-12-19 17:50:35.942 +05:30 [Information] Request finished in 3997.7203ms 200 application/json; charset=utf-8 +2017-12-19 17:50:35.943 +05:30 [Debug] Connection id ""0HLA6QGDVS5UE"" completed keep alive response. +2017-12-19 17:50:36.112 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:50:36.112 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:50:36.112 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:50:36.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:50:36.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4455.5917ms +2017-12-19 17:50:36.119 +05:30 [Information] Request finished in 4489.1575ms 200 application/json; charset=utf-8 +2017-12-19 17:50:36.119 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" completed keep alive response. +2017-12-19 17:50:36.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:50:36.387 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:50:36.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:50:36.405 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:50:36.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4398.2317ms +2017-12-19 17:50:36.579 +05:30 [Information] Request finished in 4549.941ms 200 application/json; charset=utf-8 +2017-12-19 17:50:36.579 +05:30 [Debug] Connection id ""0HLA6QGDVS5UG"" completed keep alive response. +2017-12-19 17:50:38.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:50:40.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:50:40.664 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:50:40.664 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:50:40.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:50:40.668 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5878.6309ms +2017-12-19 17:50:40.671 +05:30 [Information] Request finished in 5896.8948ms 200 application/json; charset=utf-8 +2017-12-19 17:50:40.672 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" completed keep alive response. +2017-12-19 17:50:42.286 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:50:42.287 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:50:42.844 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:50:42.845 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:50:58.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:50:58.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:50:58.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:50:58.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:50:58.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 26321.2148ms +2017-12-19 17:50:58.372 +05:30 [Information] Request finished in 26409.1278ms 200 application/json; charset=utf-8 +2017-12-19 17:50:58.372 +05:30 [Debug] Connection id ""0HLA6QGDVS5UF"" completed keep alive response. +2017-12-19 17:53:16.198 +05:30 [Debug] Connection id ""0HLA6QGDVS5UE"" received FIN. +2017-12-19 17:53:16.198 +05:30 [Debug] Connection id ""0HLA6QGDVS5UB"" received FIN. +2017-12-19 17:53:16.199 +05:30 [Debug] Connection id ""0HLA6QGDVS5UE"" disconnecting. +2017-12-19 17:53:16.199 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" received FIN. +2017-12-19 17:53:16.199 +05:30 [Debug] Connection id ""0HLA6QGDVS5UB"" disconnecting. +2017-12-19 17:53:16.199 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" received FIN. +2017-12-19 17:53:16.200 +05:30 [Debug] Connection id ""0HLA6QGDVS5UG"" received FIN. +2017-12-19 17:53:16.200 +05:30 [Debug] Connection id ""0HLA6QGDVS5UF"" received FIN. +2017-12-19 17:53:16.201 +05:30 [Debug] Connection id ""0HLA6QGDVS5UB"" sending FIN. +2017-12-19 17:53:16.201 +05:30 [Debug] Connection id ""0HLA6QGDVS5UE"" sending FIN. +2017-12-19 17:53:16.201 +05:30 [Debug] Connection id ""0HLA6QGDVS5UB"" sent FIN with status "0". +2017-12-19 17:53:16.203 +05:30 [Debug] Connection id ""0HLA6QGDVS5UB"" stopped. +2017-12-19 17:53:16.202 +05:30 [Debug] Connection id ""0HLA6QGDVS5UE"" sent FIN with status "0". +2017-12-19 17:53:16.203 +05:30 [Debug] Connection id ""0HLA6QGDVS5UE"" stopped. +2017-12-19 17:53:16.202 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" disconnecting. +2017-12-19 17:53:16.211 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" sending FIN. +2017-12-19 17:53:16.205 +05:30 [Debug] Connection id ""0HLA6QGDVS5UG"" disconnecting. +2017-12-19 17:53:16.205 +05:30 [Debug] Connection id ""0HLA6QGDVS5UF"" disconnecting. +2017-12-19 17:53:16.213 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" sent FIN with status "0". +2017-12-19 17:53:16.200 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" disconnecting. +2017-12-19 17:53:16.213 +05:30 [Debug] Connection id ""0HLA6QGDVS5UG"" sending FIN. +2017-12-19 17:53:16.214 +05:30 [Debug] Connection id ""0HLA6QGDVS5UA"" stopped. +2017-12-19 17:53:16.214 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" sending FIN. +2017-12-19 17:53:16.214 +05:30 [Debug] Connection id ""0HLA6QGDVS5UF"" sending FIN. +2017-12-19 17:53:16.215 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" sent FIN with status "0". +2017-12-19 17:53:16.215 +05:30 [Debug] Connection id ""0HLA6QGDVS5UF"" sent FIN with status "0". +2017-12-19 17:53:16.215 +05:30 [Debug] Connection id ""0HLA6QGDVS5U9"" stopped. +2017-12-19 17:53:16.215 +05:30 [Debug] Connection id ""0HLA6QGDVS5UF"" stopped. +2017-12-19 17:53:16.215 +05:30 [Debug] Connection id ""0HLA6QGDVS5UG"" sent FIN with status "0". +2017-12-19 17:53:16.216 +05:30 [Debug] Connection id ""0HLA6QGDVS5UG"" stopped. +2017-12-19 17:53:41.206 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" started. +2017-12-19 17:53:41.207 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=48&profileId=135374370505951 0 +2017-12-19 17:53:41.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:53:41.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:53:44.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["48", "135374370505951"]) - ModelState is Valid +2017-12-19 17:54:16.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:54:16.691 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:54:16.691 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:54:16.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:54:16.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 35483.7985ms +2017-12-19 17:54:16.697 +05:30 [Information] Request finished in 35489.0458ms 200 text/plain; charset=utf-8 +2017-12-19 17:54:16.697 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" completed keep alive response. +2017-12-19 17:54:22.704 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=48&userId=48&profileId=135374370505951 0 +2017-12-19 17:54:22.705 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-12-19 17:54:22.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-12-19 17:54:25.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["48", "48", "135374370505951"]) - ModelState is Valid +2017-12-19 17:54:41.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:54:41.550 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:54:41.550 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:54:41.551 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:54:41.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 18845.1398ms +2017-12-19 17:54:41.554 +05:30 [Information] Request finished in 18849.0887ms 200 text/plain; charset=utf-8 +2017-12-19 17:54:41.555 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" completed keep alive response. +2017-12-19 17:54:41.603 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:54:41.604 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:54:41.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:54:44.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:54:45.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:54:45.220 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:54:45.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:54:45.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3617.405ms +2017-12-19 17:54:45.224 +05:30 [Information] Request finished in 3622.6999ms 200 application/json; charset=utf-8 +2017-12-19 17:54:45.224 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" completed keep alive response. +2017-12-19 17:54:45.230 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-19 17:54:45.230 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:54:45.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:54:48.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-19 17:54:49.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:54:49.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:54:49.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:54:49.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4628.419ms +2017-12-19 17:54:49.864 +05:30 [Information] Request finished in 4635.0003ms 200 application/json; charset=utf-8 +2017-12-19 17:54:49.865 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" completed keep alive response. +2017-12-19 17:54:50.676 +05:30 [Debug] Connection id ""0HLA6QGDVS5UI"" started. +2017-12-19 17:54:50.679 +05:30 [Debug] Connection id ""0HLA6QGDVS5UK"" started. +2017-12-19 17:54:50.679 +05:30 [Debug] Connection id ""0HLA6QGDVS5UJ"" started. +2017-12-19 17:54:50.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 17:54:50.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:54:50.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:54:50.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 17:54:50.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:54:50.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:54:50.718 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 17:54:50.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:54:50.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:54:50.723 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 17:54:50.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:54:50.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:54:50.785 +05:30 [Debug] Connection id ""0HLA6QGDVS5UL"" started. +2017-12-19 17:54:50.785 +05:30 [Debug] Connection id ""0HLA6QGDVS5UM"" started. +2017-12-19 17:54:50.810 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 17:54:50.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:54:50.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 17:54:50.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:54:50.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:54:50.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:54:53.795 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:54:53.824 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:54:53.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:54:53.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:54:53.901 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:54:53.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:54:54.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:54:54.536 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:54:54.537 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:54:54.538 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:54:54.539 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3818.9987ms +2017-12-19 17:54:54.541 +05:30 [Information] Request finished in 3857.3723ms 200 application/json; charset=utf-8 +2017-12-19 17:54:54.541 +05:30 [Debug] Connection id ""0HLA6QGDVS5UI"" completed keep alive response. +2017-12-19 17:54:54.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 17:54:54.547 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:54:54.548 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:54:54.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:54:54.647 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:54:54.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:54:54.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:54:54.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3968.5092ms +2017-12-19 17:54:54.659 +05:30 [Information] Request finished in 3982.3755ms 200 application/json; charset=utf-8 +2017-12-19 17:54:54.659 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" completed keep alive response. +2017-12-19 17:54:54.990 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:54:54.990 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:54:54.991 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:54:54.992 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:54:54.993 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4180.7306ms +2017-12-19 17:54:54.996 +05:30 [Information] Request finished in 4208.7191ms 200 application/json; charset=utf-8 +2017-12-19 17:54:54.996 +05:30 [Debug] Connection id ""0HLA6QGDVS5UL"" completed keep alive response. +2017-12-19 17:54:55.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:54:55.013 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:54:55.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:54:55.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:54:55.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4203.4932ms +2017-12-19 17:54:55.028 +05:30 [Information] Request finished in 4216.3024ms 200 application/json; charset=utf-8 +2017-12-19 17:54:55.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:54:55.029 +05:30 [Debug] Connection id ""0HLA6QGDVS5UM"" completed keep alive response. +2017-12-19 17:54:55.029 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:54:55.029 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:54:55.034 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:54:55.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4309.4774ms +2017-12-19 17:54:55.049 +05:30 [Information] Request finished in 4360.9771ms 200 application/json; charset=utf-8 +2017-12-19 17:54:55.051 +05:30 [Debug] Connection id ""0HLA6QGDVS5UJ"" completed keep alive response. +2017-12-19 17:54:57.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:55:00.171 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:55:00.171 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:55:00.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:55:00.173 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:55:00.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5625.9755ms +2017-12-19 17:55:00.179 +05:30 [Information] Request finished in 5632.1835ms 200 application/json; charset=utf-8 +2017-12-19 17:55:00.180 +05:30 [Debug] Connection id ""0HLA6QGDVS5UI"" completed keep alive response. +2017-12-19 17:55:00.954 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:55:00.955 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:55:01.526 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:55:01.528 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:55:18.532 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:55:18.533 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:55:18.533 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:55:18.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:55:18.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27852.9495ms +2017-12-19 17:55:18.545 +05:30 [Information] Request finished in 27864.4356ms 200 application/json; charset=utf-8 +2017-12-19 17:55:18.546 +05:30 [Debug] Connection id ""0HLA6QGDVS5UK"" completed keep alive response. +2017-12-19 17:56:09.437 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" received FIN. +2017-12-19 17:56:09.437 +05:30 [Debug] Connection id ""0HLA6QGDVS5UL"" received FIN. +2017-12-19 17:56:09.438 +05:30 [Debug] Connection id ""0HLA6QGDVS5UM"" received FIN. +2017-12-19 17:56:09.438 +05:30 [Debug] Connection id ""0HLA6QGDVS5UJ"" received FIN. +2017-12-19 17:56:09.438 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" disconnecting. +2017-12-19 17:56:09.438 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" sending FIN. +2017-12-19 17:56:09.438 +05:30 [Debug] Connection id ""0HLA6QGDVS5UI"" received FIN. +2017-12-19 17:56:09.439 +05:30 [Debug] Connection id ""0HLA6QGDVS5UL"" disconnecting. +2017-12-19 17:56:09.439 +05:30 [Debug] Connection id ""0HLA6QGDVS5UL"" sending FIN. +2017-12-19 17:56:09.439 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" sent FIN with status "0". +2017-12-19 17:56:09.439 +05:30 [Debug] Connection id ""0HLA6QGDVS5UL"" sent FIN with status "0". +2017-12-19 17:56:09.439 +05:30 [Debug] Connection id ""0HLA6QGDVS5UH"" stopped. +2017-12-19 17:56:09.439 +05:30 [Debug] Connection id ""0HLA6QGDVS5UL"" stopped. +2017-12-19 17:56:09.439 +05:30 [Debug] Connection id ""0HLA6QGDVS5UM"" disconnecting. +2017-12-19 17:56:09.440 +05:30 [Debug] Connection id ""0HLA6QGDVS5UM"" sending FIN. +2017-12-19 17:56:09.440 +05:30 [Debug] Connection id ""0HLA6QGDVS5UJ"" disconnecting. +2017-12-19 17:56:09.440 +05:30 [Debug] Connection id ""0HLA6QGDVS5UM"" sent FIN with status "0". +2017-12-19 17:56:09.442 +05:30 [Debug] Connection id ""0HLA6QGDVS5UJ"" sending FIN. +2017-12-19 17:56:09.442 +05:30 [Debug] Connection id ""0HLA6QGDVS5UM"" stopped. +2017-12-19 17:56:09.442 +05:30 [Debug] Connection id ""0HLA6QGDVS5UJ"" sent FIN with status "0". +2017-12-19 17:56:09.446 +05:30 [Debug] Connection id ""0HLA6QGDVS5UJ"" stopped. +2017-12-19 17:56:09.441 +05:30 [Debug] Connection id ""0HLA6QGDVS5UI"" disconnecting. +2017-12-19 17:56:09.450 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=48&profileId=127471161024815 0 +2017-12-19 17:56:09.451 +05:30 [Debug] Connection id ""0HLA6QGDVS5UI"" sending FIN. +2017-12-19 17:56:09.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 17:56:09.452 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 17:56:09.452 +05:30 [Debug] Connection id ""0HLA6QGDVS5UI"" sent FIN with status "0". +2017-12-19 17:56:09.452 +05:30 [Debug] Connection id ""0HLA6QGDVS5UI"" stopped. +2017-12-19 17:56:12.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["48", "127471161024815"]) - ModelState is Valid +2017-12-19 17:56:15.587 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:56:15.587 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:56:15.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 17:56:15.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:56:15.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 6137.2838ms +2017-12-19 17:56:15.593 +05:30 [Information] Request finished in 6152.2131ms 200 text/plain; charset=utf-8 +2017-12-19 17:56:15.594 +05:30 [Debug] Connection id ""0HLA6QGDVS5UK"" completed keep alive response. +2017-12-19 17:56:21.567 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=48&userId=48&profileId=127471161024815 0 +2017-12-19 17:56:21.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-12-19 17:56:21.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-12-19 17:56:24.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["48", "48", "127471161024815"]) - ModelState is Valid +2017-12-19 17:57:38.860 +05:30 [Debug] Hosting starting +2017-12-19 17:57:39.213 +05:30 [Debug] Hosting started +2017-12-19 17:57:39.384 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" started. +2017-12-19 17:57:39.413 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" started. +2017-12-19 17:57:39.609 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 17:57:39.608 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 17:57:39.698 +05:30 [Information] Request finished in 112.2674ms 200 +2017-12-19 17:57:39.756 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" completed keep alive response. +2017-12-19 17:57:40.434 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:57:40.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 17:57:40.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:57:40.755 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"6f3679c0-b520-4393-9c2e-116745889b79"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 17:57:40.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:57:40.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 17:57:41.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 17:57:41.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 17:57:41.061 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:57:41.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:57:41.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:57:41.285 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 399.2157ms +2017-12-19 17:57:41.351 +05:30 [Information] Request finished in 1808.8819ms 200 application/json; charset=utf-8 +2017-12-19 17:57:41.354 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" completed keep alive response. +2017-12-19 17:57:41.367 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-19 17:57:41.370 +05:30 [Debug] Request did not match any routes. +2017-12-19 17:57:41.388 +05:30 [Debug] The request path "" does not match the path filter +2017-12-19 17:57:41.390 +05:30 [Information] Request finished in 23.3442ms 404 +2017-12-19 17:57:41.391 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" completed keep alive response. +2017-12-19 17:57:44.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:57:50.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:57:50.618 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:57:50.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:57:50.623 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9742.49ms +2017-12-19 17:57:50.626 +05:30 [Information] Request finished in 10192.0277ms 200 application/json; charset=utf-8 +2017-12-19 17:57:50.626 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" completed keep alive response. +2017-12-19 17:58:00.257 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:58:00.258 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:58:00.264 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:58:03.338 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:58:03.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:03.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:03.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:03.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3638.2453ms +2017-12-19 17:58:03.906 +05:30 [Information] Request finished in 3648.9023ms 200 application/json; charset=utf-8 +2017-12-19 17:58:03.907 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" completed keep alive response. +2017-12-19 17:58:03.969 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:58:03.970 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:58:03.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:58:07.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:58:07.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:07.587 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:07.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:07.590 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3616.3694ms +2017-12-19 17:58:07.593 +05:30 [Information] Request finished in 3625.3255ms 200 application/json; charset=utf-8 +2017-12-19 17:58:07.594 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" completed keep alive response. +2017-12-19 17:58:07.635 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:58:07.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:58:07.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:58:09.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:58:10.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:10.320 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:10.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:10.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2685.993ms +2017-12-19 17:58:10.326 +05:30 [Information] Request finished in 2690.4544ms 200 application/json; charset=utf-8 +2017-12-19 17:58:10.327 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" completed keep alive response. +2017-12-19 17:58:19.006 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:58:19.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:58:19.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:58:22.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:58:22.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:22.620 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:22.621 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:22.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3613.9606ms +2017-12-19 17:58:22.625 +05:30 [Information] Request finished in 3618.1359ms 200 application/json; charset=utf-8 +2017-12-19 17:58:22.626 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" completed keep alive response. +2017-12-19 17:58:25.056 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:58:25.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:58:25.058 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:58:28.086 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:58:28.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:28.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:28.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:28.649 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3590.2211ms +2017-12-19 17:58:28.652 +05:30 [Information] Request finished in 3596.3054ms 200 application/json; charset=utf-8 +2017-12-19 17:58:28.653 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" completed keep alive response. +2017-12-19 17:58:28.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-19 17:58:28.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-19 17:58:28.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-19 17:58:31.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-19 17:58:33.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:33.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:33.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:34.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5351.9059ms +2017-12-19 17:58:34.040 +05:30 [Information] Request finished in 5358.9011ms 200 application/json; charset=utf-8 +2017-12-19 17:58:34.041 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" completed keep alive response. +2017-12-19 17:58:34.474 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 17:58:34.475 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 17:58:34.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 17:58:37.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 17:58:38.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:38.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:38.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:38.083 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3606.0421ms +2017-12-19 17:58:38.086 +05:30 [Information] Request finished in 3611.0459ms 200 application/json; charset=utf-8 +2017-12-19 17:58:38.086 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" completed keep alive response. +2017-12-19 17:58:38.142 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-19 17:58:38.143 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 17:58:38.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 17:58:41.193 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-19 17:58:43.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:43.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:43.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:43.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4927.7872ms +2017-12-19 17:58:43.074 +05:30 [Information] Request finished in 4933.1735ms 200 application/json; charset=utf-8 +2017-12-19 17:58:43.075 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" completed keep alive response. +2017-12-19 17:58:44.568 +05:30 [Debug] Connection id ""0HLA6RFID7DUF"" started. +2017-12-19 17:58:44.568 +05:30 [Debug] Connection id ""0HLA6RFID7DUG"" started. +2017-12-19 17:58:44.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 17:58:44.589 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 17:58:44.590 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 17:58:44.592 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 17:58:44.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 17:58:44.592 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 17:58:44.594 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 17:58:44.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 17:58:44.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 17:58:44.596 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 17:58:44.596 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 17:58:44.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 17:58:44.702 +05:30 [Debug] Connection id ""0HLA6RFID7DUH"" started. +2017-12-19 17:58:44.702 +05:30 [Debug] Connection id ""0HLA6RFID7DUI"" started. +2017-12-19 17:58:45.209 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 17:58:45.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 17:58:45.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 17:58:46.211 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 17:58:46.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 17:58:46.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 17:58:48.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:58:49.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:58:49.375 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:58:49.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:58:49.398 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:58:49.401 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:58:49.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:49.487 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:58:49.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:49.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:49.489 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3275.112ms +2017-12-19 17:58:49.491 +05:30 [Information] Request finished in 3280.1133ms 200 application/json; charset=utf-8 +2017-12-19 17:58:49.491 +05:30 [Debug] Connection id ""0HLA6RFID7DUI"" completed keep alive response. +2017-12-19 17:58:49.494 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 17:58:49.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 17:58:49.496 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 17:58:51.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:51.413 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:58:51.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:51.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:51.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6834.0194ms +2017-12-19 17:58:51.432 +05:30 [Information] Request finished in 6863.8509ms 200 application/json; charset=utf-8 +2017-12-19 17:58:51.433 +05:30 [Debug] Connection id ""0HLA6RFID7DUG"" completed keep alive response. +2017-12-19 17:58:51.486 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:51.487 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:58:51.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:51.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:51.492 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6893.5562ms +2017-12-19 17:58:51.494 +05:30 [Information] Request finished in 6925.4335ms 200 application/json; charset=utf-8 +2017-12-19 17:58:51.494 +05:30 [Debug] Connection id ""0HLA6RFID7DUF"" completed keep alive response. +2017-12-19 17:58:51.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:51.996 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:58:51.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:51.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:52.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6787.5005ms +2017-12-19 17:58:52.009 +05:30 [Information] Request finished in 6793.6784ms 200 application/json; charset=utf-8 +2017-12-19 17:58:52.010 +05:30 [Debug] Connection id ""0HLA6RFID7DUH"" completed keep alive response. +2017-12-19 17:58:52.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:52.109 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:58:52.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:52.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:52.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7515.5651ms +2017-12-19 17:58:52.114 +05:30 [Information] Request finished in 7547.183ms 200 application/json; charset=utf-8 +2017-12-19 17:58:52.115 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" completed keep alive response. +2017-12-19 17:58:52.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 17:58:55.090 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:58:55.091 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:58:55.091 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:58:55.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:58:55.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5700.9721ms +2017-12-19 17:58:55.200 +05:30 [Information] Request finished in 5705.8244ms 200 application/json; charset=utf-8 +2017-12-19 17:58:55.200 +05:30 [Debug] Connection id ""0HLA6RFID7DUI"" completed keep alive response. +2017-12-19 17:58:59.194 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:58:59.316 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:58:59.852 +05:30 [Fatal] Sequence contains no elements +2017-12-19 17:58:59.853 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 17:59:15.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 17:59:15.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 17:59:15.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 17:59:15.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 17:59:15.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 31277.3124ms +2017-12-19 17:59:15.890 +05:30 [Information] Request finished in 31319.6035ms 200 application/json; charset=utf-8 +2017-12-19 17:59:15.890 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" completed keep alive response. +2017-12-19 18:01:00.132 +05:30 [Debug] Connection id ""0HLA6RFID7DUG"" received FIN. +2017-12-19 18:01:00.133 +05:30 [Debug] Connection id ""0HLA6RFID7DUH"" received FIN. +2017-12-19 18:01:00.133 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" received FIN. +2017-12-19 18:01:00.134 +05:30 [Debug] Connection id ""0HLA6RFID7DUH"" disconnecting. +2017-12-19 18:01:00.134 +05:30 [Debug] Connection id ""0HLA6RFID7DUG"" disconnecting. +2017-12-19 18:01:00.134 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" disconnecting. +2017-12-19 18:01:00.135 +05:30 [Debug] Connection id ""0HLA6RFID7DUH"" sending FIN. +2017-12-19 18:01:00.137 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" sending FIN. +2017-12-19 18:01:00.138 +05:30 [Debug] Connection id ""0HLA6RFID7DUF"" received FIN. +2017-12-19 18:01:00.138 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" received FIN. +2017-12-19 18:01:00.138 +05:30 [Debug] Connection id ""0HLA6RFID7DUI"" received FIN. +2017-12-19 18:01:00.139 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" started. +2017-12-19 18:01:00.140 +05:30 [Debug] Connection id ""0HLA6RFID7DUF"" disconnecting. +2017-12-19 18:01:00.140 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" disconnecting. +2017-12-19 18:01:00.145 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" sent FIN with status "0". +2017-12-19 18:01:00.148 +05:30 [Debug] Connection id ""0HLA6RFID7DUD"" stopped. +2017-12-19 18:01:00.149 +05:30 [Debug] Connection id ""0HLA6RFID7DUH"" sent FIN with status "0". +2017-12-19 18:01:00.149 +05:30 [Debug] Connection id ""0HLA6RFID7DUI"" disconnecting. +2017-12-19 18:01:00.149 +05:30 [Debug] Connection id ""0HLA6RFID7DUH"" stopped. +2017-12-19 18:01:00.154 +05:30 [Debug] Connection id ""0HLA6RFID7DUF"" sending FIN. +2017-12-19 18:01:00.165 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" sending FIN. +2017-12-19 18:01:00.165 +05:30 [Debug] Connection id ""0HLA6RFID7DUI"" sending FIN. +2017-12-19 18:01:00.166 +05:30 [Debug] Connection id ""0HLA6RFID7DUI"" sent FIN with status "0". +2017-12-19 18:01:00.166 +05:30 [Debug] Connection id ""0HLA6RFID7DUI"" stopped. +2017-12-19 18:01:00.154 +05:30 [Debug] Connection id ""0HLA6RFID7DUG"" sending FIN. +2017-12-19 18:01:00.172 +05:30 [Debug] Connection id ""0HLA6RFID7DUG"" sent FIN with status "0". +2017-12-19 18:01:00.172 +05:30 [Debug] Connection id ""0HLA6RFID7DUG"" stopped. +2017-12-19 18:01:00.173 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=48&profileId=127471161024815 0 +2017-12-19 18:01:00.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 18:01:00.170 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" sent FIN with status "0". +2017-12-19 18:01:00.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 18:01:00.176 +05:30 [Debug] Connection id ""0HLA6RFID7DUE"" stopped. +2017-12-19 18:01:00.178 +05:30 [Debug] Connection id ""0HLA6RFID7DUF"" sent FIN with status "0". +2017-12-19 18:01:00.182 +05:30 [Debug] Connection id ""0HLA6RFID7DUF"" stopped. +2017-12-19 18:01:03.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["48", "127471161024815"]) - ModelState is Valid +2017-12-19 18:01:29.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:01:29.504 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:01:29.505 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 18:01:29.506 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:01:29.508 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 29329.7466ms +2017-12-19 18:01:29.513 +05:30 [Information] Request finished in 29362.2768ms 200 text/plain; charset=utf-8 +2017-12-19 18:01:29.514 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" completed keep alive response. +2017-12-19 18:01:53.033 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=48&userId=48&profileId=127471161024815 0 +2017-12-19 18:01:53.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-12-19 18:01:53.035 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-12-19 18:01:56.089 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["48", "48", "127471161024815"]) - ModelState is Valid +2017-12-19 18:02:10.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:10.959 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:02:10.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 18:02:10.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:10.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 17929.7322ms +2017-12-19 18:02:10.968 +05:30 [Information] Request finished in 17936.4123ms 200 text/plain; charset=utf-8 +2017-12-19 18:02:10.969 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" completed keep alive response. +2017-12-19 18:02:11.090 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:02:11.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:02:11.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:02:14.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:02:14.666 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:14.666 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:14.668 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:14.669 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3576.4566ms +2017-12-19 18:02:14.673 +05:30 [Information] Request finished in 3583.1323ms 200 application/json; charset=utf-8 +2017-12-19 18:02:14.674 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" completed keep alive response. +2017-12-19 18:02:14.690 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-19 18:02:14.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 18:02:14.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 18:02:16.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-19 18:02:18.547 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:18.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:18.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:18.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3859.4331ms +2017-12-19 18:02:18.559 +05:30 [Information] Request finished in 3867.2437ms 200 application/json; charset=utf-8 +2017-12-19 18:02:18.560 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" completed keep alive response. +2017-12-19 18:02:19.468 +05:30 [Debug] Connection id ""0HLA6RFID7DUK"" started. +2017-12-19 18:02:19.469 +05:30 [Debug] Connection id ""0HLA6RFID7DUM"" started. +2017-12-19 18:02:19.469 +05:30 [Debug] Connection id ""0HLA6RFID7DUL"" started. +2017-12-19 18:02:19.472 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 18:02:19.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 18:02:19.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 18:02:19.483 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 18:02:19.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 18:02:19.484 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 18:02:19.514 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 18:02:19.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 18:02:19.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 18:02:19.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 18:02:19.519 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 18:02:19.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 18:02:19.590 +05:30 [Debug] Connection id ""0HLA6RFID7DUN"" started. +2017-12-19 18:02:19.590 +05:30 [Debug] Connection id ""0HLA6RFID7DUO"" started. +2017-12-19 18:02:19.610 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 18:02:19.611 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 18:02:19.611 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 18:02:19.612 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 18:02:19.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 18:02:19.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 18:02:22.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 18:02:22.617 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 18:02:23.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:23.182 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:02:23.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:23.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:23.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3699.185ms +2017-12-19 18:02:23.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:23.245 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:02:23.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:23.246 +05:30 [Information] Request finished in 3773.6131ms 200 application/json; charset=utf-8 +2017-12-19 18:02:23.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:23.247 +05:30 [Debug] Connection id ""0HLA6RFID7DUK"" completed keep alive response. +2017-12-19 18:02:23.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3772.946ms +2017-12-19 18:02:23.259 +05:30 [Information] Request finished in 3786.5423ms 200 application/json; charset=utf-8 +2017-12-19 18:02:23.259 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" completed keep alive response. +2017-12-19 18:02:23.266 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 18:02:23.266 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 18:02:23.267 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 18:02:23.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 18:02:23.621 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 18:02:23.628 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 18:02:23.629 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 18:02:24.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:24.677 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:02:24.678 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:24.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:24.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5066.7521ms +2017-12-19 18:02:24.683 +05:30 [Information] Request finished in 5091.6955ms 200 application/json; charset=utf-8 +2017-12-19 18:02:24.683 +05:30 [Debug] Connection id ""0HLA6RFID7DUN"" completed keep alive response. +2017-12-19 18:02:24.712 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:24.712 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:02:24.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:24.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:24.715 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5197.5633ms +2017-12-19 18:02:24.717 +05:30 [Information] Request finished in 5241.8476ms 200 application/json; charset=utf-8 +2017-12-19 18:02:24.717 +05:30 [Debug] Connection id ""0HLA6RFID7DUL"" completed keep alive response. +2017-12-19 18:02:24.834 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:24.835 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:02:24.835 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:24.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:24.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5218.8651ms +2017-12-19 18:02:24.838 +05:30 [Information] Request finished in 5247.6277ms 200 application/json; charset=utf-8 +2017-12-19 18:02:24.839 +05:30 [Debug] Connection id ""0HLA6RFID7DUO"" completed keep alive response. +2017-12-19 18:02:26.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 18:02:28.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:28.712 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:02:28.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:28.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:28.715 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5445.9184ms +2017-12-19 18:02:28.718 +05:30 [Information] Request finished in 5459.4152ms 200 application/json; charset=utf-8 +2017-12-19 18:02:28.719 +05:30 [Debug] Connection id ""0HLA6RFID7DUK"" completed keep alive response. +2017-12-19 18:02:30.754 +05:30 [Fatal] Sequence contains no elements +2017-12-19 18:02:30.755 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 18:02:31.314 +05:30 [Fatal] Sequence contains no elements +2017-12-19 18:02:31.318 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 18:02:37.357 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:02:37.358 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:02:37.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:02:40.391 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:02:40.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:40.911 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:40.911 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:40.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3553.758ms +2017-12-19 18:02:40.917 +05:30 [Information] Request finished in 3560.05ms 200 application/json; charset=utf-8 +2017-12-19 18:02:40.917 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" completed keep alive response. +2017-12-19 18:02:41.577 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:02:41.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:02:41.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:02:47.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:47.271 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:02:47.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:47.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:47.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 27757.2407ms +2017-12-19 18:02:47.305 +05:30 [Debug] Connection id ""0HLA6RFID7DUM"" received FIN. +2017-12-19 18:02:47.313 +05:30 [Information] Request finished in 27811.6689ms 200 application/json; charset=utf-8 +2017-12-19 18:02:47.320 +05:30 [Debug] Connection id ""0HLA6RFID7DUM"" disconnecting. +2017-12-19 18:02:47.321 +05:30 [Information] Connection id ""0HLA6RFID7DUM"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-19 18:02:47.324 +05:30 [Debug] Connection id ""0HLA6RFID7DUM"" stopped. +2017-12-19 18:02:48.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:02:49.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:49.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:49.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:49.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7813.2628ms +2017-12-19 18:02:49.395 +05:30 [Information] Request finished in 7825.1019ms 200 application/json; charset=utf-8 +2017-12-19 18:02:49.395 +05:30 [Debug] Connection id ""0HLA6RFID7DUN"" completed keep alive response. +2017-12-19 18:02:49.444 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:02:49.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:02:49.449 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:02:52.490 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:02:53.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:53.045 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:53.046 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:53.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3597.9285ms +2017-12-19 18:02:53.050 +05:30 [Information] Request finished in 3608.2966ms 200 application/json; charset=utf-8 +2017-12-19 18:02:53.051 +05:30 [Debug] Connection id ""0HLA6RFID7DUL"" completed keep alive response. +2017-12-19 18:02:53.063 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:02:53.064 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:02:53.064 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:02:56.101 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:02:56.665 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:02:56.665 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:02:56.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:02:56.667 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3601.8133ms +2017-12-19 18:02:56.669 +05:30 [Information] Request finished in 3606.6622ms 200 application/json; charset=utf-8 +2017-12-19 18:02:56.670 +05:30 [Debug] Connection id ""0HLA6RFID7DUO"" completed keep alive response. +2017-12-19 18:04:59.433 +05:30 [Debug] Connection id ""0HLA6RFID7DUK"" received FIN. +2017-12-19 18:04:59.433 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" received FIN. +2017-12-19 18:04:59.434 +05:30 [Debug] Connection id ""0HLA6RFID7DUK"" disconnecting. +2017-12-19 18:04:59.435 +05:30 [Debug] Connection id ""0HLA6RFID7DUO"" received FIN. +2017-12-19 18:04:59.435 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" disconnecting. +2017-12-19 18:04:59.435 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" sending FIN. +2017-12-19 18:04:59.435 +05:30 [Debug] Connection id ""0HLA6RFID7DUO"" disconnecting. +2017-12-19 18:04:59.436 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" sent FIN with status "0". +2017-12-19 18:04:59.436 +05:30 [Debug] Connection id ""0HLA6RFID7DUJ"" stopped. +2017-12-19 18:04:59.436 +05:30 [Debug] Connection id ""0HLA6RFID7DUO"" sending FIN. +2017-12-19 18:04:59.433 +05:30 [Debug] Connection id ""0HLA6RFID7DUN"" received FIN. +2017-12-19 18:04:59.437 +05:30 [Debug] Connection id ""0HLA6RFID7DUO"" sent FIN with status "0". +2017-12-19 18:04:59.437 +05:30 [Debug] Connection id ""0HLA6RFID7DUL"" received FIN. +2017-12-19 18:04:59.459 +05:30 [Debug] Connection id ""0HLA6RFID7DUK"" sending FIN. +2017-12-19 18:04:59.459 +05:30 [Debug] Connection id ""0HLA6RFID7DUK"" sent FIN with status "0". +2017-12-19 18:04:59.459 +05:30 [Debug] Connection id ""0HLA6RFID7DUL"" disconnecting. +2017-12-19 18:04:59.458 +05:30 [Debug] Connection id ""0HLA6RFID7DUO"" stopped. +2017-12-19 18:04:59.458 +05:30 [Debug] Connection id ""0HLA6RFID7DUN"" disconnecting. +2017-12-19 18:04:59.459 +05:30 [Debug] Connection id ""0HLA6RFID7DUK"" stopped. +2017-12-19 18:04:59.462 +05:30 [Debug] Connection id ""0HLA6RFID7DUL"" sending FIN. +2017-12-19 18:04:59.463 +05:30 [Debug] Connection id ""0HLA6RFID7DUN"" sending FIN. +2017-12-19 18:04:59.463 +05:30 [Debug] Connection id ""0HLA6RFID7DUN"" sent FIN with status "0". +2017-12-19 18:04:59.464 +05:30 [Debug] Connection id ""0HLA6RFID7DUN"" stopped. +2017-12-19 18:04:59.464 +05:30 [Debug] Connection id ""0HLA6RFID7DUL"" sent FIN with status "0". +2017-12-19 18:04:59.464 +05:30 [Debug] Connection id ""0HLA6RFID7DUL"" stopped. +2017-12-19 18:44:05.858 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" started. +2017-12-19 18:44:05.859 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:44:05.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:44:05.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:44:08.924 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:44:10.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:44:10.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:44:10.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:44:10.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5026.9043ms +2017-12-19 18:44:10.890 +05:30 [Information] Request finished in 5030.8155ms 200 application/json; charset=utf-8 +2017-12-19 18:44:10.891 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" completed keep alive response. +2017-12-19 18:44:39.709 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 200 +2017-12-19 18:44:39.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 18:44:39.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 18:44:42.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAFTZCd3g9I8s5v9fQZBZB8HMbXtNNel7hbd22eZAi6S5ckCIRjGwpDaRPsW0c6ZAqffVs23yNFe2ZBTkJqXWrVIyTXxYdzMu9Ykle7lpG9d2lFhz6VKmB0BgRYmlnvAPTCiCaDZCsOwzbR8GcIIpeyI99ic9T96EQZDZD", "Free"]) - ModelState is Valid +2017-12-19 18:44:49.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:44:49.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:44:49.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:44:49.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 10175.4591ms +2017-12-19 18:44:49.891 +05:30 [Information] Request finished in 10180.8112ms 200 application/json; charset=utf-8 +2017-12-19 18:44:49.892 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" completed keep alive response. +2017-12-19 18:44:49.962 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:44:49.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:44:49.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:44:53.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:44:53.573 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:44:53.573 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:44:53.574 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:44:53.574 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3610.6189ms +2017-12-19 18:44:53.576 +05:30 [Information] Request finished in 3614.7469ms 200 application/json; charset=utf-8 +2017-12-19 18:44:53.577 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" completed keep alive response. +2017-12-19 18:44:53.591 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId= +2017-12-19 18:44:53.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 18:44:53.592 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 18:44:55.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", ""]) - ModelState is Valid +2017-12-19 18:44:57.239 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:44:57.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:44:57.241 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:44:57.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3649.4456ms +2017-12-19 18:44:57.247 +05:30 [Information] Request finished in 3655.3146ms 200 application/json; charset=utf-8 +2017-12-19 18:44:57.248 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" completed keep alive response. +2017-12-19 18:44:57.994 +05:30 [Debug] Connection id ""0HLA6RFID7DUQ"" started. +2017-12-19 18:44:57.995 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 18:44:57.996 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 18:44:57.997 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 18:44:58.002 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 18:44:58.003 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 18:44:58.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 18:44:58.111 +05:30 [Debug] Connection id ""0HLA6RFID7DUS"" started. +2017-12-19 18:44:58.111 +05:30 [Debug] Connection id ""0HLA6RFID7DUR"" started. +2017-12-19 18:44:58.112 +05:30 [Debug] Connection id ""0HLA6RFID7DUT"" started. +2017-12-19 18:44:58.112 +05:30 [Debug] Connection id ""0HLA6RFID7DUU"" started. +2017-12-19 18:44:58.115 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 18:44:58.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 18:44:58.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 18:44:58.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 18:44:58.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 18:44:58.145 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 18:44:58.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 18:44:58.125 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 18:44:58.148 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 18:44:58.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 18:44:58.146 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 18:44:58.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 18:45:01.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:45:01.082 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:45:01.175 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:45:01.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:45:01.294 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:45:01.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:45:02.202 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:45:02.203 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:45:02.203 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:45:02.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:45:02.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4202.2184ms +2017-12-19 18:45:02.210 +05:30 [Information] Request finished in 4214.111ms 200 application/json; charset=utf-8 +2017-12-19 18:45:02.210 +05:30 [Debug] Connection id ""0HLA6RFID7DUQ"" completed keep alive response. +2017-12-19 18:45:02.217 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 18:45:02.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 18:45:02.218 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 18:45:03.086 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:45:03.086 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:45:03.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:45:03.087 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:45:03.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4963.8391ms +2017-12-19 18:45:03.091 +05:30 [Information] Request finished in 4978.1691ms 200 application/json; charset=utf-8 +2017-12-19 18:45:03.091 +05:30 [Debug] Connection id ""0HLA6RFID7DUS"" completed keep alive response. +2017-12-19 18:45:03.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:45:03.219 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:45:03.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:45:03.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:45:03.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5045.8259ms +2017-12-19 18:45:03.222 +05:30 [Information] Request finished in 5107.4862ms 200 application/json; charset=utf-8 +2017-12-19 18:45:03.222 +05:30 [Debug] Connection id ""0HLA6RFID7DUR"" completed keep alive response. +2017-12-19 18:45:03.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:45:03.355 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:45:03.356 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:45:03.357 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:45:03.358 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5203.3586ms +2017-12-19 18:45:03.360 +05:30 [Information] Request finished in 5244.9039ms 200 application/json; charset=utf-8 +2017-12-19 18:45:03.360 +05:30 [Debug] Connection id ""0HLA6RFID7DUT"" completed keep alive response. +2017-12-19 18:45:03.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:45:03.477 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:45:03.477 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:45:03.479 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:45:03.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5482.1318ms +2017-12-19 18:45:03.481 +05:30 [Information] Request finished in 5489.8364ms 200 application/json; charset=utf-8 +2017-12-19 18:45:03.482 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" completed keep alive response. +2017-12-19 18:45:03.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:45:03.892 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:45:03.893 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:45:03.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:45:03.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5747.0111ms +2017-12-19 18:45:03.900 +05:30 [Information] Request finished in 5777.129ms 200 application/json; charset=utf-8 +2017-12-19 18:45:03.901 +05:30 [Debug] Connection id ""0HLA6RFID7DUU"" completed keep alive response. +2017-12-19 18:45:05.266 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:45:06.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:45:06.333 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:45:06.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:45:06.334 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:45:06.335 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4115.5276ms +2017-12-19 18:45:06.339 +05:30 [Information] Request finished in 4122.3185ms 200 application/json; charset=utf-8 +2017-12-19 18:45:06.339 +05:30 [Debug] Connection id ""0HLA6RFID7DUQ"" completed keep alive response. +2017-12-19 18:45:29.270 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500433&profileId=134715397262944 0 +2017-12-19 18:45:29.271 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 18:45:29.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 18:45:32.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500433", "134715397262944"]) - ModelState is Valid +2017-12-19 18:45:35.567 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:45:35.567 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:45:35.568 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 18:45:35.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:45:35.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 6296.8834ms +2017-12-19 18:45:35.571 +05:30 [Information] Request finished in 6301.0811ms 200 text/plain; charset=utf-8 +2017-12-19 18:45:35.572 +05:30 [Debug] Connection id ""0HLA6RFID7DUS"" completed keep alive response. +2017-12-19 18:47:09.433 +05:30 [Debug] Connection id ""0HLA6RFID7DUR"" received FIN. +2017-12-19 18:47:09.433 +05:30 [Debug] Connection id ""0HLA6RFID7DUR"" disconnecting. +2017-12-19 18:47:09.433 +05:30 [Debug] Connection id ""0HLA6RFID7DUT"" received FIN. +2017-12-19 18:47:09.434 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" received FIN. +2017-12-19 18:47:09.435 +05:30 [Debug] Connection id ""0HLA6RFID7DUT"" disconnecting. +2017-12-19 18:47:09.433 +05:30 [Debug] Connection id ""0HLA6RFID7DUU"" received FIN. +2017-12-19 18:47:09.436 +05:30 [Debug] Connection id ""0HLA6RFID7DUQ"" received FIN. +2017-12-19 18:47:09.435 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" disconnecting. +2017-12-19 18:47:09.437 +05:30 [Debug] Connection id ""0HLA6RFID7DUR"" sending FIN. +2017-12-19 18:47:09.435 +05:30 [Debug] Connection id ""0HLA6RFID7DUS"" received FIN. +2017-12-19 18:47:09.437 +05:30 [Debug] Connection id ""0HLA6RFID7DUQ"" disconnecting. +2017-12-19 18:47:09.438 +05:30 [Debug] Connection id ""0HLA6RFID7DUT"" sending FIN. +2017-12-19 18:47:09.437 +05:30 [Debug] Connection id ""0HLA6RFID7DUU"" disconnecting. +2017-12-19 18:47:09.438 +05:30 [Debug] Connection id ""0HLA6RFID7DUR"" sent FIN with status "0". +2017-12-19 18:47:09.439 +05:30 [Debug] Connection id ""0HLA6RFID7DUR"" stopped. +2017-12-19 18:47:09.438 +05:30 [Debug] Connection id ""0HLA6RFID7DUS"" disconnecting. +2017-12-19 18:47:09.438 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" sending FIN. +2017-12-19 18:47:09.440 +05:30 [Debug] Connection id ""0HLA6RFID7DUQ"" sending FIN. +2017-12-19 18:47:09.442 +05:30 [Debug] Connection id ""0HLA6RFID7DUU"" sending FIN. +2017-12-19 18:47:09.441 +05:30 [Debug] Connection id ""0HLA6RFID7DUS"" sending FIN. +2017-12-19 18:47:09.442 +05:30 [Debug] Connection id ""0HLA6RFID7DUU"" sent FIN with status "0". +2017-12-19 18:47:09.443 +05:30 [Debug] Connection id ""0HLA6RFID7DUU"" stopped. +2017-12-19 18:47:09.443 +05:30 [Debug] Connection id ""0HLA6RFID7DUS"" sent FIN with status "0". +2017-12-19 18:47:09.444 +05:30 [Debug] Connection id ""0HLA6RFID7DUQ"" sent FIN with status "0". +2017-12-19 18:47:09.444 +05:30 [Debug] Connection id ""0HLA6RFID7DUS"" stopped. +2017-12-19 18:47:09.445 +05:30 [Debug] Connection id ""0HLA6RFID7DUQ"" stopped. +2017-12-19 18:47:09.445 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" sent FIN with status "0". +2017-12-19 18:47:09.446 +05:30 [Debug] Connection id ""0HLA6RFID7DUP"" stopped. +2017-12-19 18:47:09.447 +05:30 [Debug] Connection id ""0HLA6RFID7DUT"" sent FIN with status "0". +2017-12-19 18:47:09.449 +05:30 [Debug] Connection id ""0HLA6RFID7DUT"" stopped. +2017-12-19 18:48:13.700 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" started. +2017-12-19 18:48:13.702 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:48:13.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:48:13.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:48:16.767 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:48:17.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:17.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:48:17.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:17.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3590.6513ms +2017-12-19 18:48:17.297 +05:30 [Information] Request finished in 3595.5163ms 200 application/json; charset=utf-8 +2017-12-19 18:48:17.298 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" completed keep alive response. +2017-12-19 18:48:17.305 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 18:48:17.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 18:48:17.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 18:48:19.429 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 18:48:19.801 +05:30 [Debug] Connection id ""0HLA6RFID7DV0"" started. +2017-12-19 18:48:19.802 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500433&profileId=134715397262944 0 +2017-12-19 18:48:19.803 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 18:48:19.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 18:48:20.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:20.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:48:20.949 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:20.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3641.5065ms +2017-12-19 18:48:20.954 +05:30 [Information] Request finished in 3647.5084ms 200 application/json; charset=utf-8 +2017-12-19 18:48:20.957 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" completed keep alive response. +2017-12-19 18:48:21.941 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500433", "134715397262944"]) - ModelState is Valid +2017-12-19 18:48:24.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:24.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:48:24.499 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 18:48:24.504 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:24.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 4699.7703ms +2017-12-19 18:48:24.538 +05:30 [Information] Request finished in 4728.7979ms 200 text/plain; charset=utf-8 +2017-12-19 18:48:24.539 +05:30 [Debug] Connection id ""0HLA6RFID7DV0"" completed keep alive response. +2017-12-19 18:48:25.341 +05:30 [Debug] Connection id ""0HLA6RFID7DV1"" started. +2017-12-19 18:48:25.341 +05:30 [Debug] Connection id ""0HLA6RFID7DV2"" started. +2017-12-19 18:48:25.370 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 18:48:25.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 18:48:25.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 18:48:25.403 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 18:48:25.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 18:48:25.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 18:48:25.423 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 18:48:25.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 18:48:25.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 18:48:25.459 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 18:48:25.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 18:48:25.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 18:48:25.553 +05:30 [Debug] Connection id ""0HLA6RFID7DV3"" started. +2017-12-19 18:48:25.566 +05:30 [Debug] Connection id ""0HLA6RFID7DV4"" started. +2017-12-19 18:48:25.684 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 18:48:25.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 18:48:25.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 18:48:25.698 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 18:48:25.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 18:48:25.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 18:48:28.569 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:48:28.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:48:28.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:48:28.670 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:48:28.719 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:48:28.807 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:48:29.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:29.179 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:48:29.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:48:29.180 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:29.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3784.2234ms +2017-12-19 18:48:29.185 +05:30 [Information] Request finished in 3856.522ms 200 application/json; charset=utf-8 +2017-12-19 18:48:29.185 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" completed keep alive response. +2017-12-19 18:48:29.195 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:29.195 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:48:29.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:48:29.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:29.212 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3747.5883ms +2017-12-19 18:48:29.216 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 18:48:29.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 18:48:29.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 18:48:29.217 +05:30 [Information] Request finished in 3871.0647ms 200 application/json; charset=utf-8 +2017-12-19 18:48:29.220 +05:30 [Debug] Connection id ""0HLA6RFID7DV0"" completed keep alive response. +2017-12-19 18:48:29.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:29.280 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:48:29.280 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:48:29.281 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:29.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3820.3388ms +2017-12-19 18:48:29.287 +05:30 [Information] Request finished in 3941.4771ms 200 application/json; charset=utf-8 +2017-12-19 18:48:29.287 +05:30 [Debug] Connection id ""0HLA6RFID7DV1"" completed keep alive response. +2017-12-19 18:48:29.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:29.661 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:48:29.665 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:48:29.667 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:29.669 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4263.4107ms +2017-12-19 18:48:29.674 +05:30 [Information] Request finished in 4303.6926ms 200 application/json; charset=utf-8 +2017-12-19 18:48:29.675 +05:30 [Debug] Connection id ""0HLA6RFID7DV2"" completed keep alive response. +2017-12-19 18:48:29.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:29.745 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:48:29.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:48:29.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:29.748 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4059.4418ms +2017-12-19 18:48:29.751 +05:30 [Information] Request finished in 4079.2095ms 200 application/json; charset=utf-8 +2017-12-19 18:48:29.751 +05:30 [Debug] Connection id ""0HLA6RFID7DV3"" completed keep alive response. +2017-12-19 18:48:29.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:29.948 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:48:29.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:48:29.949 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:29.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4248.7666ms +2017-12-19 18:48:29.952 +05:30 [Information] Request finished in 4267.9007ms 200 application/json; charset=utf-8 +2017-12-19 18:48:29.952 +05:30 [Debug] Connection id ""0HLA6RFID7DV4"" completed keep alive response. +2017-12-19 18:48:32.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:48:33.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:48:33.395 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:48:33.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:48:33.396 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:48:33.397 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4179.1286ms +2017-12-19 18:48:33.399 +05:30 [Information] Request finished in 4188.1883ms 200 application/json; charset=utf-8 +2017-12-19 18:48:33.399 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" completed keep alive response. +2017-12-19 18:50:49.434 +05:30 [Debug] Connection id ""0HLA6RFID7DV0"" received FIN. +2017-12-19 18:50:49.434 +05:30 [Debug] Connection id ""0HLA6RFID7DV2"" received FIN. +2017-12-19 18:50:49.435 +05:30 [Debug] Connection id ""0HLA6RFID7DV1"" received FIN. +2017-12-19 18:50:49.435 +05:30 [Debug] Connection id ""0HLA6RFID7DV3"" received FIN. +2017-12-19 18:50:49.435 +05:30 [Debug] Connection id ""0HLA6RFID7DV0"" disconnecting. +2017-12-19 18:50:49.436 +05:30 [Debug] Connection id ""0HLA6RFID7DV2"" disconnecting. +2017-12-19 18:50:49.435 +05:30 [Debug] Connection id ""0HLA6RFID7DV4"" received FIN. +2017-12-19 18:50:49.435 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" received FIN. +2017-12-19 18:50:49.436 +05:30 [Debug] Connection id ""0HLA6RFID7DV0"" sending FIN. +2017-12-19 18:50:49.436 +05:30 [Debug] Connection id ""0HLA6RFID7DV3"" disconnecting. +2017-12-19 18:50:49.437 +05:30 [Debug] Connection id ""0HLA6RFID7DV0"" sent FIN with status "0". +2017-12-19 18:50:49.437 +05:30 [Debug] Connection id ""0HLA6RFID7DV0"" stopped. +2017-12-19 18:50:49.436 +05:30 [Debug] Connection id ""0HLA6RFID7DV2"" sending FIN. +2017-12-19 18:50:49.438 +05:30 [Debug] Connection id ""0HLA6RFID7DV3"" sending FIN. +2017-12-19 18:50:49.437 +05:30 [Debug] Connection id ""0HLA6RFID7DV4"" disconnecting. +2017-12-19 18:50:49.439 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" disconnecting. +2017-12-19 18:50:49.462 +05:30 [Debug] Connection id ""0HLA6RFID7DV4"" sending FIN. +2017-12-19 18:50:49.439 +05:30 [Debug] Connection id ""0HLA6RFID7DV3"" sent FIN with status "0". +2017-12-19 18:50:49.462 +05:30 [Debug] Connection id ""0HLA6RFID7DV4"" sent FIN with status "0". +2017-12-19 18:50:49.463 +05:30 [Debug] Connection id ""0HLA6RFID7DV3"" stopped. +2017-12-19 18:50:49.463 +05:30 [Debug] Connection id ""0HLA6RFID7DV4"" stopped. +2017-12-19 18:50:49.464 +05:30 [Debug] Connection id ""0HLA6RFID7DV2"" sent FIN with status "0". +2017-12-19 18:50:49.464 +05:30 [Debug] Connection id ""0HLA6RFID7DV2"" stopped. +2017-12-19 18:50:49.436 +05:30 [Debug] Connection id ""0HLA6RFID7DV1"" disconnecting. +2017-12-19 18:50:49.465 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" sending FIN. +2017-12-19 18:50:49.465 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" sent FIN with status "0". +2017-12-19 18:50:49.465 +05:30 [Debug] Connection id ""0HLA6RFID7DV1"" sending FIN. +2017-12-19 18:50:49.466 +05:30 [Debug] Connection id ""0HLA6RFID7DUV"" stopped. +2017-12-19 18:50:49.466 +05:30 [Debug] Connection id ""0HLA6RFID7DV1"" sent FIN with status "0". +2017-12-19 18:50:49.467 +05:30 [Debug] Connection id ""0HLA6RFID7DV1"" stopped. +2017-12-19 18:50:51.503 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" started. +2017-12-19 18:50:51.504 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500433&profileId=134715397262944 0 +2017-12-19 18:50:51.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 18:50:51.506 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 18:50:54.564 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500433", "134715397262944"]) - ModelState is Valid +2017-12-19 18:50:59.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:50:59.995 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:50:59.995 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 18:50:59.996 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:50:59.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 8491.471ms +2017-12-19 18:51:00.001 +05:30 [Information] Request finished in 8495.6796ms 200 text/plain; charset=utf-8 +2017-12-19 18:51:00.001 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" completed keep alive response. +2017-12-19 18:51:28.723 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=500433 +2017-12-19 18:51:28.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-12-19 18:51:28.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-12-19 18:51:31.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:51:32.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:32.915 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:32.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:32.917 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4192.8549ms +2017-12-19 18:51:32.920 +05:30 [Information] Request finished in 4197.8948ms 200 application/json; charset=utf-8 +2017-12-19 18:51:32.921 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" completed keep alive response. +2017-12-19 18:51:32.926 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1152626 +2017-12-19 18:51:32.926 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-12-19 18:51:32.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-12-19 18:51:35.999 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:51:36.572 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:36.573 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:36.573 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:36.574 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3645.5941ms +2017-12-19 18:51:36.576 +05:30 [Information] Request finished in 3650.8924ms 200 application/json; charset=utf-8 +2017-12-19 18:51:36.576 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" completed keep alive response. +2017-12-19 18:51:37.182 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPages application/x-www-form-urlencoded 204 +2017-12-19 18:51:37.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPages"'. +2017-12-19 18:51:37.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" +2017-12-19 18:51:40.263 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAFEZCt52hcgUeRZCchItfVFfVZA1uu6jRe9NzCrHoADv2BTMdoTZC6d8Q46oGSOhSJD1FxkN1YSqN6Of63CmY2fdgpotsPh8eQAlZCAvY7McWEunsgvkBevRvcfJefs5QVslA5YrwKL1nWyxC3KBCBawemsi9ugZDZD", "1152626"]) - ModelState is Valid +2017-12-19 18:51:42.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:42.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:42.448 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:42.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPages (Api.Socioboard)" in 5270.9215ms +2017-12-19 18:51:42.459 +05:30 [Information] Request finished in 5276.9084ms 200 application/json; charset=utf-8 +2017-12-19 18:51:42.459 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" completed keep alive response. +2017-12-19 18:51:42.532 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:51:42.532 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:51:42.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:51:45.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:51:46.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:46.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:46.149 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:46.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3616.5532ms +2017-12-19 18:51:46.154 +05:30 [Information] Request finished in 3622.7488ms 200 application/json; charset=utf-8 +2017-12-19 18:51:46.155 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" completed keep alive response. +2017-12-19 18:51:46.162 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 18:51:46.163 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 18:51:46.163 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 18:51:49.214 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 18:51:50.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:50.736 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:50.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:50.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4573.6923ms +2017-12-19 18:51:50.742 +05:30 [Information] Request finished in 4580.123ms 200 application/json; charset=utf-8 +2017-12-19 18:51:50.743 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" completed keep alive response. +2017-12-19 18:51:51.641 +05:30 [Debug] Connection id ""0HLA6RFID7DV6"" started. +2017-12-19 18:51:51.642 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 18:51:51.642 +05:30 [Debug] Connection id ""0HLA6RFID7DV7"" started. +2017-12-19 18:51:51.643 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 18:51:51.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 18:51:51.642 +05:30 [Debug] Connection id ""0HLA6RFID7DV8"" started. +2017-12-19 18:51:51.645 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 18:51:51.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 18:51:51.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 18:51:51.646 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 18:51:51.649 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 18:51:51.649 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 18:51:51.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 18:51:51.650 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 18:51:51.650 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 18:51:51.750 +05:30 [Debug] Connection id ""0HLA6RFID7DV9"" started. +2017-12-19 18:51:51.750 +05:30 [Debug] Connection id ""0HLA6RFID7DVA"" started. +2017-12-19 18:51:51.751 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 18:51:51.752 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 18:51:51.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 18:51:51.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 18:51:51.753 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 18:51:51.753 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 18:51:54.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:51:54.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:51:54.733 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:51:54.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:51:54.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:51:55.486 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:55.486 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:51:55.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:55.489 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:55.490 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:51:55.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:55.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:55.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:55.502 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3852.6665ms +2017-12-19 18:51:55.523 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3858.8686ms +2017-12-19 18:51:55.527 +05:30 [Information] Request finished in 3882.0377ms 200 application/json; charset=utf-8 +2017-12-19 18:51:55.527 +05:30 [Debug] Connection id ""0HLA6RFID7DV6"" completed keep alive response. +2017-12-19 18:51:55.528 +05:30 [Information] Request finished in 3885.4908ms 200 application/json; charset=utf-8 +2017-12-19 18:51:55.528 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" completed keep alive response. +2017-12-19 18:51:55.535 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 18:51:55.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 18:51:55.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 18:51:55.875 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:55.876 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:51:55.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:55.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:55.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4226.9488ms +2017-12-19 18:51:55.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:55.884 +05:30 [Information] Request finished in 4235.0819ms 200 application/json; charset=utf-8 +2017-12-19 18:51:55.884 +05:30 [Debug] Connection id ""0HLA6RFID7DV8"" completed keep alive response. +2017-12-19 18:51:55.884 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:51:55.885 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:55.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:55.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4135.0256ms +2017-12-19 18:51:55.894 +05:30 [Information] Request finished in 4142.6854ms 200 application/json; charset=utf-8 +2017-12-19 18:51:55.895 +05:30 [Debug] Connection id ""0HLA6RFID7DV9"" completed keep alive response. +2017-12-19 18:51:56.001 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:56.002 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:51:56.002 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:56.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:56.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4249.898ms +2017-12-19 18:51:56.006 +05:30 [Information] Request finished in 4255.0324ms 200 application/json; charset=utf-8 +2017-12-19 18:51:56.007 +05:30 [Debug] Connection id ""0HLA6RFID7DVA"" completed keep alive response. +2017-12-19 18:51:58.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:51:58.835 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:51:59.366 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:59.366 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:51:59.366 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:59.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:59.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7718.3431ms +2017-12-19 18:51:59.373 +05:30 [Information] Request finished in 7727.3094ms 200 application/json; charset=utf-8 +2017-12-19 18:51:59.374 +05:30 [Debug] Connection id ""0HLA6RFID7DV7"" completed keep alive response. +2017-12-19 18:51:59.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:51:59.796 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:51:59.796 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:51:59.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:51:59.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4262.7653ms +2017-12-19 18:51:59.801 +05:30 [Information] Request finished in 4268.6863ms 200 application/json; charset=utf-8 +2017-12-19 18:51:59.801 +05:30 [Debug] Connection id ""0HLA6RFID7DV6"" completed keep alive response. +2017-12-19 18:52:43.402 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookPages?userId=500433&groupId=1152626 multipart/form-data; boundary=----WebKitFormBoundaryy9KBue0LeyoNky9h 331 +2017-12-19 18:52:43.402 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookPages"'. +2017-12-19 18:52:43.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" +2017-12-19 18:52:46.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 18:52:47.218 +05:30 [Error] {"id":"140174883350217","name":"Photo click","fan_count":0,"cover":{"cover_id":"140175263350179","offset_x":0,"offset_y":-96,"source":"https://scontent.xx.fbcdn.net/v/t1.0-9/s720x720/25550322_140175263350179_6226493862736141726_n.jpg?oh=39095d88a88737686156de2349d2c7fc&oe=5ACD700A","id":"140175263350179"} +2017-12-19 18:52:51.742 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:52:51.743 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:52:51.743 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 18:52:51.745 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:52:51.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookPages (Api.Socioboard)" in 8341.7957ms +2017-12-19 18:52:51.752 +05:30 [Information] Request finished in 8349.5541ms 200 text/plain; charset=utf-8 +2017-12-19 18:52:51.753 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" completed keep alive response. +2017-12-19 18:52:51.810 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 18:52:51.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 18:52:51.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 18:52:54.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 18:52:55.390 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:52:55.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:52:55.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:52:55.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3581.2694ms +2017-12-19 18:52:55.396 +05:30 [Information] Request finished in 3586.7347ms 200 application/json; charset=utf-8 +2017-12-19 18:52:55.397 +05:30 [Debug] Connection id ""0HLA6RFID7DV8"" completed keep alive response. +2017-12-19 18:52:55.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId=1152626 +2017-12-19 18:52:55.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 18:52:55.407 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 18:52:57.238 +05:30 [Error] Facebook.asmx = > FacebookPagePromotionDetails = > The given key was not present in the dictionary. +2017-12-19 18:52:57.274 +05:30 [Error] Facebook.asmx = > FacebookPagePromotionDetails = > The given key was not present in the dictionary. +2017-12-19 18:52:57.494 +05:30 [Error] Facebook.asmx = > FacebookPagePromotionDetails = > The given key was not present in the dictionary. +2017-12-19 18:52:57.506 +05:30 [Error] Facebook.asmx = > FacebookPagePromotionDetails = > The given key was not present in the dictionary. +2017-12-19 18:52:58.441 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", "1152626"]) - ModelState is Valid +2017-12-19 18:52:59.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:52:59.965 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:52:59.966 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:52:59.967 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4559.2097ms +2017-12-19 18:52:59.970 +05:30 [Information] Request finished in 4565.1863ms 200 application/json; charset=utf-8 +2017-12-19 18:52:59.970 +05:30 [Debug] Connection id ""0HLA6RFID7DV9"" completed keep alive response. +2017-12-19 18:53:01.054 +05:30 [Debug] Connection id ""0HLA6RFID7DVA"" received FIN. +2017-12-19 18:53:01.054 +05:30 [Debug] Connection id ""0HLA6RFID7DV6"" received FIN. +2017-12-19 18:53:01.054 +05:30 [Debug] Connection id ""0HLA6RFID7DV7"" received FIN. +2017-12-19 18:53:01.055 +05:30 [Debug] Connection id ""0HLA6RFID7DVA"" disconnecting. +2017-12-19 18:53:01.055 +05:30 [Debug] Connection id ""0HLA6RFID7DV7"" disconnecting. +2017-12-19 18:53:01.055 +05:30 [Debug] Connection id ""0HLA6RFID7DVB"" started. +2017-12-19 18:53:01.057 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 18:53:01.055 +05:30 [Debug] Connection id ""0HLA6RFID7DV6"" disconnecting. +2017-12-19 18:53:01.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 18:53:01.059 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 18:53:01.061 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 18:53:01.061 +05:30 [Debug] Connection id ""0HLA6RFID7DV6"" sending FIN. +2017-12-19 18:53:01.062 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 18:53:01.063 +05:30 [Debug] Connection id ""0HLA6RFID7DV6"" sent FIN with status "0". +2017-12-19 18:53:01.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 18:53:01.063 +05:30 [Debug] Connection id ""0HLA6RFID7DV6"" stopped. +2017-12-19 18:53:01.066 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 18:53:01.067 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 18:53:01.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 18:53:01.071 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 18:53:01.073 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 18:53:01.059 +05:30 [Debug] Connection id ""0HLA6RFID7DVA"" sending FIN. +2017-12-19 18:53:01.074 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 18:53:01.075 +05:30 [Debug] Connection id ""0HLA6RFID7DV7"" sending FIN. +2017-12-19 18:53:01.075 +05:30 [Debug] Connection id ""0HLA6RFID7DV7"" sent FIN with status "0". +2017-12-19 18:53:01.094 +05:30 [Debug] Connection id ""0HLA6RFID7DV7"" stopped. +2017-12-19 18:53:01.094 +05:30 [Debug] Connection id ""0HLA6RFID7DVA"" sent FIN with status "0". +2017-12-19 18:53:01.094 +05:30 [Debug] Connection id ""0HLA6RFID7DVA"" stopped. +2017-12-19 18:53:01.166 +05:30 [Debug] Connection id ""0HLA6RFID7DVC"" started. +2017-12-19 18:53:01.169 +05:30 [Debug] Connection id ""0HLA6RFID7DVD"" started. +2017-12-19 18:53:01.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 18:53:01.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 18:53:01.171 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 18:53:01.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 18:53:01.172 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 18:53:01.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 18:53:03.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:53:04.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:53:04.190 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:53:04.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:53:04.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:53:04.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:53:04.296 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:53:04.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:53:04.314 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 18:53:04.316 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:53:04.317 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3241.4818ms +2017-12-19 18:53:04.320 +05:30 [Information] Request finished in 3257.3983ms 200 application/json; charset=utf-8 +2017-12-19 18:53:04.320 +05:30 [Debug] Connection id ""0HLA6RFID7DVB"" completed keep alive response. +2017-12-19 18:53:04.327 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 18:53:04.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 18:53:04.328 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 18:53:04.692 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:53:04.693 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:53:04.693 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:53:04.694 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:53:04.695 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3630.6913ms +2017-12-19 18:53:04.697 +05:30 [Information] Request finished in 3640.6251ms 200 application/json; charset=utf-8 +2017-12-19 18:53:04.698 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" completed keep alive response. +2017-12-19 18:53:04.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:53:04.813 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:53:04.813 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:53:04.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:53:04.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3752.0874ms +2017-12-19 18:53:04.818 +05:30 [Information] Request finished in 3762.6149ms 200 application/json; charset=utf-8 +2017-12-19 18:53:04.818 +05:30 [Debug] Connection id ""0HLA6RFID7DV8"" completed keep alive response. +2017-12-19 18:53:04.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:53:04.918 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:53:04.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:53:04.923 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:53:04.929 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3856.8903ms +2017-12-19 18:53:04.932 +05:30 [Information] Request finished in 3874.7023ms 200 application/json; charset=utf-8 +2017-12-19 18:53:04.933 +05:30 [Debug] Connection id ""0HLA6RFID7DV9"" completed keep alive response. +2017-12-19 18:53:05.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:53:05.384 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:53:05.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:53:05.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:53:05.387 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4214.1978ms +2017-12-19 18:53:05.389 +05:30 [Information] Request finished in 4222.0137ms 200 application/json; charset=utf-8 +2017-12-19 18:53:05.390 +05:30 [Debug] Connection id ""0HLA6RFID7DVC"" completed keep alive response. +2017-12-19 18:53:05.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:53:05.431 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:53:05.431 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:53:05.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:53:05.434 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4259.6413ms +2017-12-19 18:53:05.437 +05:30 [Information] Request finished in 4266.2844ms 200 application/json; charset=utf-8 +2017-12-19 18:53:05.437 +05:30 [Debug] Connection id ""0HLA6RFID7DVD"" completed keep alive response. +2017-12-19 18:53:07.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 18:53:09.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 18:53:09.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 18:53:09.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 18:53:09.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 18:53:09.021 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4692.4567ms +2017-12-19 18:53:09.025 +05:30 [Information] Request finished in 4699.1023ms 200 application/json; charset=utf-8 +2017-12-19 18:53:09.026 +05:30 [Debug] Connection id ""0HLA6RFID7DVB"" completed keep alive response. +2017-12-19 18:54:29.433 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" received FIN. +2017-12-19 18:54:29.433 +05:30 [Debug] Connection id ""0HLA6RFID7DVD"" received FIN. +2017-12-19 18:54:29.434 +05:30 [Debug] Connection id ""0HLA6RFID7DVB"" received FIN. +2017-12-19 18:54:29.433 +05:30 [Debug] Connection id ""0HLA6RFID7DV8"" received FIN. +2017-12-19 18:54:29.434 +05:30 [Debug] Connection id ""0HLA6RFID7DVD"" disconnecting. +2017-12-19 18:54:29.435 +05:30 [Debug] Connection id ""0HLA6RFID7DVB"" disconnecting. +2017-12-19 18:54:29.433 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" disconnecting. +2017-12-19 18:54:29.435 +05:30 [Debug] Connection id ""0HLA6RFID7DV8"" disconnecting. +2017-12-19 18:54:29.437 +05:30 [Debug] Connection id ""0HLA6RFID7DVD"" sending FIN. +2017-12-19 18:54:29.434 +05:30 [Debug] Connection id ""0HLA6RFID7DV9"" received FIN. +2017-12-19 18:54:29.441 +05:30 [Debug] Connection id ""0HLA6RFID7DVB"" sending FIN. +2017-12-19 18:54:29.441 +05:30 [Debug] Connection id ""0HLA6RFID7DVC"" received FIN. +2017-12-19 18:54:29.441 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" sending FIN. +2017-12-19 18:54:29.442 +05:30 [Debug] Connection id ""0HLA6RFID7DV8"" sending FIN. +2017-12-19 18:54:29.441 +05:30 [Debug] Connection id ""0HLA6RFID7DV9"" disconnecting. +2017-12-19 18:54:29.442 +05:30 [Debug] Connection id ""0HLA6RFID7DVC"" disconnecting. +2017-12-19 18:54:29.442 +05:30 [Debug] Connection id ""0HLA6RFID7DV8"" sent FIN with status "0". +2017-12-19 18:54:29.442 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" sent FIN with status "0". +2017-12-19 18:54:29.444 +05:30 [Debug] Connection id ""0HLA6RFID7DV5"" stopped. +2017-12-19 18:54:29.445 +05:30 [Debug] Connection id ""0HLA6RFID7DVB"" sent FIN with status "0". +2017-12-19 18:54:29.446 +05:30 [Debug] Connection id ""0HLA6RFID7DVB"" stopped. +2017-12-19 18:54:29.444 +05:30 [Debug] Connection id ""0HLA6RFID7DV8"" stopped. +2017-12-19 18:54:29.447 +05:30 [Debug] Connection id ""0HLA6RFID7DVD"" sent FIN with status "0". +2017-12-19 18:54:29.448 +05:30 [Debug] Connection id ""0HLA6RFID7DV9"" sending FIN. +2017-12-19 18:54:29.449 +05:30 [Debug] Connection id ""0HLA6RFID7DVD"" stopped. +2017-12-19 18:54:29.449 +05:30 [Debug] Connection id ""0HLA6RFID7DVC"" sending FIN. +2017-12-19 18:54:29.450 +05:30 [Debug] Connection id ""0HLA6RFID7DVC"" sent FIN with status "0". +2017-12-19 18:54:29.451 +05:30 [Debug] Connection id ""0HLA6RFID7DVC"" stopped. +2017-12-19 18:54:29.452 +05:30 [Debug] Connection id ""0HLA6RFID7DV9"" sent FIN with status "0". +2017-12-19 18:54:29.453 +05:30 [Debug] Connection id ""0HLA6RFID7DV9"" stopped. +2017-12-19 19:14:17.249 +05:30 [Debug] Connection id ""0HLA6RFID7DVE"" started. +2017-12-19 19:14:17.250 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500433&profileId=140174883350217 0 +2017-12-19 19:14:17.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 19:14:17.252 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 19:14:20.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500433", "140174883350217"]) - ModelState is Valid +2017-12-19 19:14:24.680 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:14:24.680 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:14:24.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 19:14:24.681 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:14:24.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 7429.5607ms +2017-12-19 19:14:24.685 +05:30 [Information] Request finished in 7434.4774ms 200 text/plain; charset=utf-8 +2017-12-19 19:14:24.686 +05:30 [Debug] Connection id ""0HLA6RFID7DVE"" completed keep alive response. +2017-12-19 19:14:38.292 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500433&profileId=140174883350217 0 +2017-12-19 19:14:38.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 19:14:38.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 19:14:39.837 +05:30 [Debug] Connection id ""0HLA6RFID7DVF"" started. +2017-12-19 19:14:39.839 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=1152626&userId=500433&profileId=140174883350217 0 +2017-12-19 19:14:39.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-12-19 19:14:39.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-12-19 19:14:41.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500433", "140174883350217"]) - ModelState is Valid +2017-12-19 19:14:46.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["1152626", "500433", "140174883350217"]) - ModelState is Valid +2017-12-19 19:15:12.403 +05:30 [Debug] Hosting starting +2017-12-19 19:15:12.832 +05:30 [Debug] Hosting started +2017-12-19 19:15:13.071 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" started. +2017-12-19 19:15:13.071 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" started. +2017-12-19 19:15:13.344 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 19:15:13.344 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 19:15:13.427 +05:30 [Information] Request finished in 123.4023ms 200 +2017-12-19 19:15:13.492 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" completed keep alive response. +2017-12-19 19:15:14.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 19:15:14.743 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3d98ef68-242a-4200-a8bb-b947b26ab2bd"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 19:15:14.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 19:15:15.011 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 19:15:15.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 19:15:15.081 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:15:15.089 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:15:15.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:15:15.114 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:15:15.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:15:15.118 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:15:15.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 727.4363ms +2017-12-19 19:15:15.685 +05:30 [Information] Request finished in 2402.8931ms 200 application/json; charset=utf-8 +2017-12-19 19:15:15.688 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" completed keep alive response. +2017-12-19 19:15:15.699 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-19 19:15:15.705 +05:30 [Debug] Request did not match any routes. +2017-12-19 19:15:15.733 +05:30 [Debug] The request path "" does not match the path filter +2017-12-19 19:15:15.735 +05:30 [Information] Request finished in 36.2494ms 404 +2017-12-19 19:15:15.736 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" completed keep alive response. +2017-12-19 19:15:18.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:15:24.377 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:15:24.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:15:24.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:15:24.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9265.1392ms +2017-12-19 19:15:24.388 +05:30 [Information] Request finished in 9273.1884ms 200 application/json; charset=utf-8 +2017-12-19 19:15:24.388 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" completed keep alive response. +2017-12-19 19:15:35.082 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:15:35.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:15:35.085 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:15:36.990 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:15:36.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:15:36.991 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:15:38.124 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:15:38.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:15:38.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:15:38.630 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:15:38.630 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3544.8775ms +2017-12-19 19:15:38.632 +05:30 [Information] Request finished in 3550.08ms 200 application/json; charset=utf-8 +2017-12-19 19:15:38.632 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" completed keep alive response. +2017-12-19 19:15:38.677 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:15:38.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:15:38.678 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:15:40.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:15:40.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:15:40.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:15:40.572 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:15:40.572 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3579.5977ms +2017-12-19 19:15:40.574 +05:30 [Information] Request finished in 3583.1893ms 200 application/json; charset=utf-8 +2017-12-19 19:15:40.575 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" completed keep alive response. +2017-12-19 19:15:41.719 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:15:42.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:15:42.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:15:42.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:15:42.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3554.5455ms +2017-12-19 19:15:42.236 +05:30 [Information] Request finished in 3558.7637ms 200 application/json; charset=utf-8 +2017-12-19 19:15:42.237 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" completed keep alive response. +2017-12-19 19:15:42.276 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:15:42.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:15:42.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:15:45.338 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:15:45.399 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 197 +2017-12-19 19:15:45.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-19 19:15:45.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-19 19:15:45.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:15:45.850 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:15:45.852 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:15:45.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3576.1558ms +2017-12-19 19:15:45.857 +05:30 [Information] Request finished in 3586.4132ms 200 application/json; charset=utf-8 +2017-12-19 19:15:45.858 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" completed keep alive response. +2017-12-19 19:15:48.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAIttqWyeH4r9zl3QkHoZAnZBJQq8qE1mv5j3uOtTrUtkifzo2crVOT5ef1S4hbbw18XdVHrChhxccSr4q55VwOYUPelR8PAyNoryhEnCWtKdiNg07edqZCcUvMNo3qWZBA2W3RYMj92NDz4KsMFMwcL2t2asQwZDZD", "Free"]) - ModelState is Valid +2017-12-19 19:15:55.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:15:55.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:15:55.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:15:55.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 10212.5911ms +2017-12-19 19:15:55.620 +05:30 [Information] Request finished in 10223.6552ms 200 application/json; charset=utf-8 +2017-12-19 19:15:55.620 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" completed keep alive response. +2017-12-19 19:15:55.876 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:15:55.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:15:55.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:15:57.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:15:58.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:15:58.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:15:58.479 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:15:58.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2602.0323ms +2017-12-19 19:15:58.481 +05:30 [Information] Request finished in 2605.1137ms 200 application/json; charset=utf-8 +2017-12-19 19:15:58.482 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" completed keep alive response. +2017-12-19 19:15:58.513 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500433&groupId= +2017-12-19 19:15:58.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 19:15:58.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 19:16:00.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500433", ""]) - ModelState is Valid +2017-12-19 19:16:02.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:16:02.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:16:02.330 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:16:02.376 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3851.1593ms +2017-12-19 19:16:02.378 +05:30 [Information] Request finished in 3864.9506ms 200 application/json; charset=utf-8 +2017-12-19 19:16:02.378 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" completed keep alive response. +2017-12-19 19:16:03.810 +05:30 [Debug] Connection id ""0HLA6SQTA7KFS"" started. +2017-12-19 19:16:03.810 +05:30 [Debug] Connection id ""0HLA6SQTA7KFT"" started. +2017-12-19 19:16:03.814 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500433 +2017-12-19 19:16:03.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 19:16:03.816 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 19:16:03.817 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500433 +2017-12-19 19:16:03.817 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 19:16:03.819 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 19:16:03.820 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500433 +2017-12-19 19:16:03.821 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 19:16:03.822 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 19:16:03.827 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152626 +2017-12-19 19:16:03.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 19:16:03.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 19:16:03.913 +05:30 [Debug] Connection id ""0HLA6SQTA7KFU"" started. +2017-12-19 19:16:03.913 +05:30 [Debug] Connection id ""0HLA6SQTA7KFV"" started. +2017-12-19 19:16:03.914 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152626&userId=500433 +2017-12-19 19:16:03.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 19:16:03.916 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 19:16:04.893 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500433 +2017-12-19 19:16:04.894 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 19:16:04.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 19:16:08.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 19:16:08.108 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 19:16:08.110 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 19:16:08.113 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 19:16:08.114 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 19:16:08.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500433"]) - ModelState is Valid +2017-12-19 19:16:09.195 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:16:09.195 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:16:09.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:16:09.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:16:09.200 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5375.8874ms +2017-12-19 19:16:09.202 +05:30 [Information] Request finished in 5390.3831ms 200 application/json; charset=utf-8 +2017-12-19 19:16:09.202 +05:30 [Debug] Connection id ""0HLA6SQTA7KFT"" completed keep alive response. +2017-12-19 19:16:09.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152626 +2017-12-19 19:16:09.211 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 19:16:09.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 19:16:10.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:16:10.145 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:16:10.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:16:10.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:16:10.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6356.0588ms +2017-12-19 19:16:10.203 +05:30 [Information] Request finished in 6379.9983ms 200 application/json; charset=utf-8 +2017-12-19 19:16:10.204 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" completed keep alive response. +2017-12-19 19:16:10.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:16:10.211 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:16:10.212 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:16:10.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:16:10.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6441.8707ms +2017-12-19 19:16:10.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:16:10.293 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:16:10.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:16:10.295 +05:30 [Information] Request finished in 6483.5009ms 200 application/json; charset=utf-8 +2017-12-19 19:16:10.296 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" completed keep alive response. +2017-12-19 19:16:10.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:16:10.321 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6490.0544ms +2017-12-19 19:16:10.325 +05:30 [Information] Request finished in 6513.5756ms 200 application/json; charset=utf-8 +2017-12-19 19:16:10.326 +05:30 [Debug] Connection id ""0HLA6SQTA7KFS"" completed keep alive response. +2017-12-19 19:16:10.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:16:10.797 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:16:10.798 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:16:10.799 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:16:10.806 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6882.4787ms +2017-12-19 19:16:10.819 +05:30 [Information] Request finished in 6900.7336ms 200 application/json; charset=utf-8 +2017-12-19 19:16:10.820 +05:30 [Debug] Connection id ""0HLA6SQTA7KFU"" completed keep alive response. +2017-12-19 19:16:11.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:16:11.616 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:16:11.616 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:16:11.617 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:16:11.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6720.48ms +2017-12-19 19:16:11.621 +05:30 [Information] Request finished in 6728.671ms 200 application/json; charset=utf-8 +2017-12-19 19:16:11.621 +05:30 [Debug] Connection id ""0HLA6SQTA7KFV"" completed keep alive response. +2017-12-19 19:16:12.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152626"]) - ModelState is Valid +2017-12-19 19:16:14.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:16:14.053 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:16:14.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:16:14.054 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:16:14.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4891.1284ms +2017-12-19 19:16:14.107 +05:30 [Information] Request finished in 4898.4359ms 200 application/json; charset=utf-8 +2017-12-19 19:16:14.107 +05:30 [Debug] Connection id ""0HLA6SQTA7KFT"" completed keep alive response. +2017-12-19 19:16:28.294 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500433&profileId=140174883350217 0 +2017-12-19 19:16:28.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-19 19:16:28.296 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-19 19:16:31.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500433", "140174883350217"]) - ModelState is Valid +2017-12-19 19:16:46.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:16:46.408 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:16:46.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 19:16:46.410 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:16:46.412 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 18114.1032ms +2017-12-19 19:16:46.415 +05:30 [Information] Request finished in 18122.1425ms 200 text/plain; charset=utf-8 +2017-12-19 19:16:46.416 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" completed keep alive response. +2017-12-19 19:18:53.370 +05:30 [Debug] Connection id ""0HLA6SQTA7KFV"" received FIN. +2017-12-19 19:18:53.370 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" received FIN. +2017-12-19 19:18:53.370 +05:30 [Debug] Connection id ""0HLA6SQTA7KFT"" received FIN. +2017-12-19 19:18:53.371 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" received FIN. +2017-12-19 19:18:53.373 +05:30 [Debug] Connection id ""0HLA6SQTA7KFS"" received FIN. +2017-12-19 19:18:53.374 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" disconnecting. +2017-12-19 19:18:53.374 +05:30 [Debug] Connection id ""0HLA6SQTA7KFT"" disconnecting. +2017-12-19 19:18:53.394 +05:30 [Debug] Connection id ""0HLA6SQTA7KFU"" received FIN. +2017-12-19 19:18:53.374 +05:30 [Debug] Connection id ""0HLA6SQTA7KFV"" disconnecting. +2017-12-19 19:18:53.396 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" sending FIN. +2017-12-19 19:18:53.396 +05:30 [Debug] Connection id ""0HLA6SQTA7KFU"" disconnecting. +2017-12-19 19:18:53.395 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" disconnecting. +2017-12-19 19:18:53.396 +05:30 [Debug] Connection id ""0HLA6SQTA7KFS"" disconnecting. +2017-12-19 19:18:53.397 +05:30 [Debug] Connection id ""0HLA6SQTA7KFU"" sending FIN. +2017-12-19 19:18:53.399 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" sending FIN. +2017-12-19 19:18:53.399 +05:30 [Debug] Connection id ""0HLA6SQTA7KFS"" sending FIN. +2017-12-19 19:18:53.399 +05:30 [Debug] Connection id ""0HLA6SQTA7KFT"" sending FIN. +2017-12-19 19:18:53.399 +05:30 [Debug] Connection id ""0HLA6SQTA7KFV"" sending FIN. +2017-12-19 19:18:53.405 +05:30 [Debug] Connection id ""0HLA6SQTA7KFS"" sent FIN with status "0". +2017-12-19 19:18:53.405 +05:30 [Debug] Connection id ""0HLA6SQTA7KFV"" sent FIN with status "0". +2017-12-19 19:18:53.407 +05:30 [Debug] Connection id ""0HLA6SQTA7KFS"" stopped. +2017-12-19 19:18:53.407 +05:30 [Debug] Connection id ""0HLA6SQTA7KFV"" stopped. +2017-12-19 19:18:53.407 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" sent FIN with status "0". +2017-12-19 19:18:53.408 +05:30 [Debug] Connection id ""0HLA6SQTA7KFT"" sent FIN with status "0". +2017-12-19 19:18:53.408 +05:30 [Debug] Connection id ""0HLA6SQTA7KFQ"" stopped. +2017-12-19 19:18:53.408 +05:30 [Debug] Connection id ""0HLA6SQTA7KFT"" stopped. +2017-12-19 19:18:53.408 +05:30 [Debug] Connection id ""0HLA6SQTA7KFU"" sent FIN with status "0". +2017-12-19 19:18:53.408 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" sent FIN with status "0". +2017-12-19 19:18:53.409 +05:30 [Debug] Connection id ""0HLA6SQTA7KFR"" stopped. +2017-12-19 19:18:53.408 +05:30 [Debug] Connection id ""0HLA6SQTA7KFU"" stopped. +2017-12-19 19:38:42.248 +05:30 [Debug] Hosting starting +2017-12-19 19:38:42.491 +05:30 [Debug] Hosting started +2017-12-19 19:38:42.700 +05:30 [Debug] Connection id ""0HLA6T81DFTI7"" started. +2017-12-19 19:38:42.709 +05:30 [Debug] Connection id ""0HLA6T81DFTI8"" started. +2017-12-19 19:38:43.038 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-19 19:38:43.043 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-19 19:38:43.212 +05:30 [Information] Request finished in 218.9696ms 200 +2017-12-19 19:38:43.356 +05:30 [Debug] Connection id ""0HLA6T81DFTI7"" completed keep alive response. +2017-12-19 19:38:44.377 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-19 19:38:44.458 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3cdffc7d-393a-4234-b537-24cb6353a586"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-19 19:38:44.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-19 19:38:44.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-19 19:38:44.743 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-19 19:38:44.781 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:38:44.786 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:38:44.789 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:38:45.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 427.0366ms +2017-12-19 19:38:45.202 +05:30 [Information] Request finished in 2283.7297ms 200 application/json; charset=utf-8 +2017-12-19 19:38:45.206 +05:30 [Debug] Connection id ""0HLA6T81DFTI8"" completed keep alive response. +2017-12-19 19:38:45.548 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:38:45.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:38:45.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:38:48.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:38:54.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:38:54.805 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:38:54.807 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:38:54.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9257.1516ms +2017-12-19 19:38:54.812 +05:30 [Information] Request finished in 9272.0971ms 200 application/json; charset=utf-8 +2017-12-19 19:38:54.813 +05:30 [Debug] Connection id ""0HLA6T81DFTI7"" completed keep alive response. +2017-12-19 19:39:04.097 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:39:04.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:39:04.099 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:39:06.652 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:39:06.652 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:39:06.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:39:07.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:39:07.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:07.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:07.650 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:07.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3551.3925ms +2017-12-19 19:39:07.654 +05:30 [Information] Request finished in 3585.7824ms 200 application/json; charset=utf-8 +2017-12-19 19:39:07.654 +05:30 [Debug] Connection id ""0HLA6T81DFTI8"" completed keep alive response. +2017-12-19 19:39:07.718 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:39:07.726 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:39:07.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:39:09.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:39:09.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:39:10.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:10.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:10.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:10.211 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3557.241ms +2017-12-19 19:39:10.213 +05:30 [Information] Request finished in 3567.7589ms 200 application/json; charset=utf-8 +2017-12-19 19:39:10.213 +05:30 [Debug] Connection id ""0HLA6T81DFTI7"" completed keep alive response. +2017-12-19 19:39:11.654 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:11.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:11.656 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:11.658 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3929.4974ms +2017-12-19 19:39:11.661 +05:30 [Information] Request finished in 3945.3457ms 200 application/json; charset=utf-8 +2017-12-19 19:39:11.661 +05:30 [Debug] Connection id ""0HLA6T81DFTI8"" completed keep alive response. +2017-12-19 19:39:11.719 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:39:11.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:39:11.721 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:39:12.645 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:39:12.650 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:39:12.651 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:39:14.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:39:15.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:15.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:15.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:15.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3569.5053ms +2017-12-19 19:39:15.303 +05:30 [Information] Request finished in 3591.621ms 200 application/json; charset=utf-8 +2017-12-19 19:39:15.303 +05:30 [Debug] Connection id ""0HLA6T81DFTI7"" completed keep alive response. +2017-12-19 19:39:15.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:39:16.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:16.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:16.190 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:16.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3537.4227ms +2017-12-19 19:39:16.192 +05:30 [Information] Request finished in 3546.4167ms 200 application/json; charset=utf-8 +2017-12-19 19:39:16.193 +05:30 [Debug] Connection id ""0HLA6T81DFTI8"" completed keep alive response. +2017-12-19 19:39:16.215 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-19 19:39:16.215 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-19 19:39:16.218 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-19 19:39:19.388 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-19 19:39:21.329 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:21.331 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:21.332 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:21.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5241.796ms +2017-12-19 19:39:21.462 +05:30 [Information] Request finished in 5247.9943ms 200 application/json; charset=utf-8 +2017-12-19 19:39:21.463 +05:30 [Debug] Connection id ""0HLA6T81DFTI7"" completed keep alive response. +2017-12-19 19:39:21.893 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-19 19:39:21.893 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-19 19:39:21.894 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-19 19:39:24.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-19 19:39:25.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:25.746 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:25.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:25.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3854.6081ms +2017-12-19 19:39:25.752 +05:30 [Information] Request finished in 3858.5772ms 200 application/json; charset=utf-8 +2017-12-19 19:39:25.752 +05:30 [Debug] Connection id ""0HLA6T81DFTI8"" completed keep alive response. +2017-12-19 19:39:25.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-19 19:39:25.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-19 19:39:25.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-19 19:39:28.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-19 19:39:30.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:30.624 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:30.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:30.663 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4802.5635ms +2017-12-19 19:39:30.665 +05:30 [Information] Request finished in 4812.6053ms 200 application/json; charset=utf-8 +2017-12-19 19:39:30.665 +05:30 [Debug] Connection id ""0HLA6T81DFTI7"" completed keep alive response. +2017-12-19 19:39:31.984 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-19 19:39:31.985 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-19 19:39:31.986 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-19 19:39:31.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-19 19:39:31.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-19 19:39:31.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-19 19:39:32.134 +05:30 [Debug] Connection id ""0HLA6T81DFTI9"" started. +2017-12-19 19:39:32.135 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-19 19:39:32.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-19 19:39:32.137 +05:30 [Debug] Connection id ""0HLA6T81DFTIA"" started. +2017-12-19 19:39:32.137 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-19 19:39:32.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-19 19:39:32.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-19 19:39:32.140 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-19 19:39:32.142 +05:30 [Debug] Connection id ""0HLA6T81DFTIB"" started. +2017-12-19 19:39:32.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-19 19:39:32.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-19 19:39:32.149 +05:30 [Debug] Connection id ""0HLA6T81DFTIC"" started. +2017-12-19 19:39:32.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-19 19:39:32.773 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-19 19:39:32.774 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-19 19:39:32.778 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-19 19:39:36.448 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 19:39:36.523 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 19:39:36.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 19:39:36.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 19:39:36.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 19:39:36.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 19:39:37.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:37.617 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:39:37.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:37.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:37.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5625.3643ms +2017-12-19 19:39:37.629 +05:30 [Information] Request finished in 5666.2192ms 200 application/json; charset=utf-8 +2017-12-19 19:39:37.630 +05:30 [Debug] Connection id ""0HLA6T81DFTI7"" completed keep alive response. +2017-12-19 19:39:37.636 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-19 19:39:37.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-19 19:39:37.642 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-19 19:39:37.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:37.816 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:39:37.816 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:37.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:37.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5846.7517ms +2017-12-19 19:39:37.840 +05:30 [Information] Request finished in 5873.879ms 200 application/json; charset=utf-8 +2017-12-19 19:39:37.841 +05:30 [Debug] Connection id ""0HLA6T81DFTI8"" completed keep alive response. +2017-12-19 19:39:38.567 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:38.568 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:39:38.568 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:38.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:38.583 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6440.858ms +2017-12-19 19:39:38.633 +05:30 [Information] Request finished in 6472.0082ms 200 application/json; charset=utf-8 +2017-12-19 19:39:38.634 +05:30 [Debug] Connection id ""0HLA6T81DFTI9"" completed keep alive response. +2017-12-19 19:39:38.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:38.817 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:39:38.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:38.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:38.822 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6039.8235ms +2017-12-19 19:39:38.824 +05:30 [Information] Request finished in 6049.8896ms 200 application/json; charset=utf-8 +2017-12-19 19:39:38.828 +05:30 [Debug] Connection id ""0HLA6T81DFTIC"" completed keep alive response. +2017-12-19 19:39:39.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:39.153 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:39:39.153 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:39.154 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:39.156 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7002.6432ms +2017-12-19 19:39:39.157 +05:30 [Information] Request finished in 7014.6049ms 200 application/json; charset=utf-8 +2017-12-19 19:39:39.158 +05:30 [Debug] Connection id ""0HLA6T81DFTIB"" completed keep alive response. +2017-12-19 19:39:40.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-19 19:39:42.353 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-19 19:39:42.353 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-19 19:39:42.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-19 19:39:43.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:39:43.089 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:39:43.089 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:39:43.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:39:43.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5527.1504ms +2017-12-19 19:39:43.174 +05:30 [Information] Request finished in 5536.8196ms 200 application/json; charset=utf-8 +2017-12-19 19:39:43.175 +05:30 [Debug] Connection id ""0HLA6T81DFTI7"" completed keep alive response. +2017-12-19 19:39:44.998 +05:30 [Fatal] Sequence contains no elements +2017-12-19 19:39:45.038 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 19:39:45.423 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-19 19:39:45.655 +05:30 [Fatal] Sequence contains no elements +2017-12-19 19:39:45.656 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-19 19:40:00.776 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:40:00.776 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:40:00.777 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:40:00.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:40:00.795 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 28652.7709ms +2017-12-19 19:40:00.797 +05:30 [Information] Request finished in 28659.3223ms 200 application/json; charset=utf-8 +2017-12-19 19:40:00.798 +05:30 [Debug] Connection id ""0HLA6T81DFTIA"" completed keep alive response. +2017-12-19 19:40:03.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:40:03.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:40:03.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-19 19:40:03.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:40:03.539 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 21174.4962ms +2017-12-19 19:40:03.542 +05:30 [Information] Request finished in 21188.8215ms 200 application/json; charset=utf-8 +2017-12-19 19:40:03.542 +05:30 [Debug] Connection id ""0HLA6T81DFTI8"" completed keep alive response. +2017-12-19 19:40:13.961 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=urlfb_1452799044811364&userId=48&message=https%3A%2F%2Fwww.usatoday.com%2Fstory%2Fnews%2Fnation-now%2F2017%2F12%2F18%2Famtrak-train-derails-dangles-over-interstate-washington-state%2F960946001%2F&imagePath=https%3A%2F%2Fwww.gannett-cdn.com%2F-mm-%2Fbed3899314b26d77335a89b34ba898edead6c652%2Fc%3D0-40-734-455%26r%3Dx803%26c%3D1600x800%2Flocal%2F-%2Fmedia%2F2017%2F12%2F18%2FUSATODAY%2FUSATODAY%2F636491924977064664-Train-Derail.JPG multipart/form-data; boundary=----WebKitFormBoundaryceVIiDefBB6tEE1v 145 +2017-12-19 19:40:13.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-19 19:40:13.965 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-19 19:40:17.086 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["https://www.usatoday.com/story/news/nation-now/2017/12/18/amtrak-train-derails-dangles-over-interstate-washington-state/960946001/", "urlfb_1452799044811364", "48", "https://www.gannett-cdn.com/-mm-/bed3899314b26d77335a89b34ba898edead6c652/c=0-40-734-455&r=x803&c=1600x800/local/-/media/2017/12/18/USATODAY/USATODAY/636491924977064664-Train-Derail.JPG", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-19 19:40:17.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-19 19:40:17.100 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-19 19:40:17.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-19 19:40:17.101 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-19 19:40:17.111 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 3145.0226ms +2017-12-19 19:40:17.114 +05:30 [Information] Request finished in 3152.707ms 200 text/plain; charset=utf-8 +2017-12-19 19:40:17.114 +05:30 [Debug] Connection id ""0HLA6T81DFTI9"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171220.txt b/src/Api.Socioboard/wwwroot/log/log-20171220.txt new file mode 100644 index 000000000..19696721b --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171220.txt @@ -0,0 +1,3164 @@ +2017-12-20 12:24:18.662 +05:30 [Debug] Hosting starting +2017-12-20 12:24:19.043 +05:30 [Debug] Hosting started +2017-12-20 12:24:19.070 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" started. +2017-12-20 12:24:19.071 +05:30 [Debug] Connection id ""0HLA7EPV1V3SE"" started. +2017-12-20 12:24:19.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-20 12:24:19.299 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-20 12:24:19.388 +05:30 [Information] Request finished in 132.5422ms 200 +2017-12-20 12:24:19.478 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" completed keep alive response. +2017-12-20 12:24:20.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-20 12:24:21.052 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"13d5f38f-189e-4675-8cb3-427c73a25028"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-20 12:24:21.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-20 12:24:21.612 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-20 12:24:21.615 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-20 12:24:21.679 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 12:24:21.687 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:24:21.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:24:22.160 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 724.1446ms +2017-12-20 12:24:22.284 +05:30 [Information] Request finished in 3057.1516ms 200 application/json; charset=utf-8 +2017-12-20 12:24:22.296 +05:30 [Debug] Connection id ""0HLA7EPV1V3SE"" completed keep alive response. +2017-12-20 12:24:22.371 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-20 12:24:22.375 +05:30 [Debug] Request did not match any routes. +2017-12-20 12:24:22.396 +05:30 [Debug] The request path "" does not match the path filter +2017-12-20 12:24:22.400 +05:30 [Information] Request finished in 43.123ms 404 +2017-12-20 12:24:22.400 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" completed keep alive response. +2017-12-20 12:24:23.068 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 12:24:23.069 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 12:24:23.074 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 12:24:27.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 12:24:38.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 12:24:39.041 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:24:39.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:24:39.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15969.4786ms +2017-12-20 12:24:39.046 +05:30 [Information] Request finished in 15978.6117ms 200 application/json; charset=utf-8 +2017-12-20 12:24:39.046 +05:30 [Debug] Connection id ""0HLA7EPV1V3SE"" completed keep alive response. +2017-12-20 12:24:52.075 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 12:24:52.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 12:24:52.078 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 12:24:55.474 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 12:24:56.019 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 12:24:56.019 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:24:56.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:24:56.019 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3947.5128ms +2017-12-20 12:24:56.019 +05:30 [Information] Request finished in 4079.6729ms 200 application/json; charset=utf-8 +2017-12-20 12:24:56.019 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" completed keep alive response. +2017-12-20 12:24:56.050 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 12:24:56.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 12:24:56.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 12:24:58.160 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 12:24:58.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 12:24:58.706 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:24:58.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:24:58.708 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2644.0792ms +2017-12-20 12:24:58.709 +05:30 [Information] Request finished in 2648.5904ms 200 application/json; charset=utf-8 +2017-12-20 12:24:58.710 +05:30 [Debug] Connection id ""0HLA7EPV1V3SE"" completed keep alive response. +2017-12-20 12:24:58.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 12:24:58.762 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 12:24:58.762 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 12:25:01.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 12:25:02.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 12:25:02.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:25:02.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:25:02.356 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3593.3695ms +2017-12-20 12:25:02.358 +05:30 [Information] Request finished in 3597.3165ms 200 application/json; charset=utf-8 +2017-12-20 12:25:02.358 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" completed keep alive response. +2017-12-20 12:26:09.462 +05:30 [Debug] Connection id ""0HLA7EPV1V3SE"" received FIN. +2017-12-20 12:26:09.464 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" received FIN. +2017-12-20 12:26:09.465 +05:30 [Debug] Connection id ""0HLA7EPV1V3SE"" disconnecting. +2017-12-20 12:26:09.467 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" disconnecting. +2017-12-20 12:26:09.467 +05:30 [Debug] Connection id ""0HLA7EPV1V3SE"" sending FIN. +2017-12-20 12:26:09.472 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" sending FIN. +2017-12-20 12:26:09.485 +05:30 [Debug] Connection id ""0HLA7EPV1V3SE"" sent FIN with status "0". +2017-12-20 12:26:09.486 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" sent FIN with status "0". +2017-12-20 12:26:09.490 +05:30 [Debug] Connection id ""0HLA7EPV1V3SE"" stopped. +2017-12-20 12:26:09.491 +05:30 [Debug] Connection id ""0HLA7EPV1V3SD"" stopped. +2017-12-20 12:33:37.035 +05:30 [Debug] Connection id ""0HLA7EPV1V3SF"" started. +2017-12-20 12:33:37.059 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 12:33:37.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 12:33:37.061 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 12:33:40.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 12:33:42.008 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 12:33:42.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:33:42.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:33:42.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4948.8315ms +2017-12-20 12:33:42.015 +05:30 [Information] Request finished in 4977.0451ms 200 application/json; charset=utf-8 +2017-12-20 12:33:42.017 +05:30 [Debug] Connection id ""0HLA7EPV1V3SF"" completed keep alive response. +2017-12-20 12:33:46.338 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 12:33:46.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 12:33:46.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 12:33:46.408 +05:30 [Debug] Connection id ""0HLA7EPV1V3SG"" started. +2017-12-20 12:33:46.452 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 12:33:46.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 12:33:46.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 12:33:49.561 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 12:33:49.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 12:33:50.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 12:33:50.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:33:50.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:33:50.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3728.9581ms +2017-12-20 12:33:50.072 +05:30 [Information] Request finished in 3745.2523ms 200 application/json; charset=utf-8 +2017-12-20 12:33:50.073 +05:30 [Debug] Connection id ""0HLA7EPV1V3SF"" completed keep alive response. +2017-12-20 12:33:50.104 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 12:33:50.105 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 12:33:50.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 12:33:51.576 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 12:33:51.576 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:33:51.577 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:33:51.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5125.4743ms +2017-12-20 12:33:51.581 +05:30 [Information] Request finished in 5162.584ms 200 application/json; charset=utf-8 +2017-12-20 12:33:51.582 +05:30 [Debug] Connection id ""0HLA7EPV1V3SG"" completed keep alive response. +2017-12-20 12:33:53.155 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 12:33:53.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 12:33:53.662 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:33:53.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:33:53.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3557.3293ms +2017-12-20 12:33:53.666 +05:30 [Information] Request finished in 3561.2368ms 200 application/json; charset=utf-8 +2017-12-20 12:33:53.666 +05:30 [Debug] Connection id ""0HLA7EPV1V3SF"" completed keep alive response. +2017-12-20 12:33:53.670 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 12:33:53.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 12:33:53.671 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 12:33:55.223 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 201 +2017-12-20 12:33:55.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-20 12:33:55.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-20 12:33:55.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 12:33:56.267 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 12:33:56.267 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 12:33:56.268 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 12:33:56.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2596.9628ms +2017-12-20 12:33:56.273 +05:30 [Information] Request finished in 2602.6142ms 200 application/json; charset=utf-8 +2017-12-20 12:33:56.274 +05:30 [Debug] Connection id ""0HLA7EPV1V3SG"" completed keep alive response. +2017-12-20 12:33:58.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAP5eVPk9bsSMOOLFGGvGCBM2ZChzkS3WTGPjPmxku72YrMPNOnp9c1TrGiRa6Ai0XCjjhUZCf6q34VrXD88ZCXZCk6VrsJZBWZCZBlTLWRx1IrzuEO8I2y2bUeNJ5NiPqdQlO8DOJCbo97mByPf6bTUw5hoGNsZACgZDZD", "Free"]) - ModelState is Valid +2017-12-20 13:07:15.545 +05:30 [Debug] Connection id ""0HLA7EPV1V3SF"" received FIN. +2017-12-20 13:07:15.545 +05:30 [Debug] Connection id ""0HLA7EPV1V3SG"" received FIN. +2017-12-20 13:07:15.561 +05:30 [Debug] Connection id ""0HLA7EPV1V3SG"" disconnecting. +2017-12-20 13:07:15.561 +05:30 [Debug] Connection id ""0HLA7EPV1V3SG"" sending FIN. +2017-12-20 13:07:15.561 +05:30 [Debug] Connection id ""0HLA7EPV1V3SG"" sent FIN with status "-4077". +2017-12-20 13:07:15.561 +05:30 [Debug] Connection id ""0HLA7EPV1V3SG"" stopped. +2017-12-20 13:07:16.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 13:07:16.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 13:07:16.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 13:07:16.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 2001240.0689ms +2017-12-20 13:07:16.498 +05:30 [Information] Connection id ""0HLA7EPV1V3SF"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-20 13:07:16.524 +05:30 [Information] Request finished in 2001276.6042ms 200 application/json; charset=utf-8 +2017-12-20 13:07:16.522 +05:30 [Debug] Connection id ""0HLA7EPV1V3SF"" disconnecting. +2017-12-20 13:07:16.530 +05:30 [Debug] Connection id ""0HLA7EPV1V3SF"" stopped. +2017-12-20 13:07:20.688 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" started. +2017-12-20 13:07:20.690 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 13:07:20.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 13:07:20.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 13:07:23.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 13:07:25.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 13:07:25.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 13:07:25.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 13:07:25.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5211.3919ms +2017-12-20 13:07:25.910 +05:30 [Information] Request finished in 5219.1689ms 200 application/json; charset=utf-8 +2017-12-20 13:07:25.910 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" completed keep alive response. +2017-12-20 13:07:26.032 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 13:07:26.032 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 13:07:26.033 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 13:07:29.089 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 13:07:29.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 13:07:29.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 13:07:29.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 13:07:29.660 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3626.7219ms +2017-12-20 13:07:29.661 +05:30 [Information] Request finished in 3630.3361ms 200 application/json; charset=utf-8 +2017-12-20 13:07:29.662 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" completed keep alive response. +2017-12-20 13:07:30.661 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 13:07:30.662 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 13:07:30.665 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 13:07:33.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 13:07:34.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 13:07:34.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 13:07:34.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 13:07:34.317 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3649.9622ms +2017-12-20 13:07:34.320 +05:30 [Information] Request finished in 3681.9764ms 200 application/json; charset=utf-8 +2017-12-20 13:07:34.320 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" completed keep alive response. +2017-12-20 13:07:34.366 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 13:07:34.367 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 13:07:34.367 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 13:07:37.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 13:07:37.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 13:07:37.958 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 13:07:37.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 13:07:37.961 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3593.9542ms +2017-12-20 13:07:37.967 +05:30 [Information] Request finished in 3601.2774ms 200 application/json; charset=utf-8 +2017-12-20 13:07:37.968 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" completed keep alive response. +2017-12-20 13:07:37.979 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 13:07:37.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 13:07:37.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 13:07:41.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 13:07:41.615 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 13:07:41.615 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 13:07:41.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 13:07:41.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3636.1131ms +2017-12-20 13:07:41.619 +05:30 [Information] Request finished in 3639.457ms 200 application/json; charset=utf-8 +2017-12-20 13:07:41.619 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" completed keep alive response. +2017-12-20 13:10:09.460 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" received FIN. +2017-12-20 13:10:09.461 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" disconnecting. +2017-12-20 13:10:09.461 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" sending FIN. +2017-12-20 13:10:09.461 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" sent FIN with status "0". +2017-12-20 13:10:09.462 +05:30 [Debug] Connection id ""0HLA7EPV1V3SH"" stopped. +2017-12-20 13:18:33.056 +05:30 [Debug] Connection id ""0HLA7EPV1V3SI"" started. +2017-12-20 13:18:33.061 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 13:18:33.062 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 13:18:33.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 13:18:36.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 13:18:36.313 +05:30 [Fatal] could not execute query +[ select sessionhis0_.id as id30_, sessionhis0_.userId as userId30_, sessionhis0_.ipAddress as ipAddress30_, sessionhis0_.systemId as systemId30_, sessionhis0_.browseros as browseros30_, sessionhis0_.lastAccessedTime as lastAcce6_30_, sessionhis0_.firstloginTime as firstlog7_30_, sessionhis0_.sessionStatus as sessionS8_30_ from SessionHistory sessionhis0_ where (sessionhis0_.systemId is null) and sessionhis0_.sessionStatus=? ] + Name:p2 - Value:1 +[SQL: select sessionhis0_.id as id30_, sessionhis0_.userId as userId30_, sessionhis0_.ipAddress as ipAddress30_, sessionhis0_.systemId as systemId30_, sessionhis0_.browseros as browseros30_, sessionhis0_.lastAccessedTime as lastAcce6_30_, sessionhis0_.firstloginTime as firstlog7_30_, sessionhis0_.sessionStatus as sessionS8_30_ from SessionHistory sessionhis0_ where (sessionhis0_.systemId is null) and sessionhis0_.sessionStatus=?] +2017-12-20 13:18:36.539 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-12-20 13:18:36.543 +05:30 [Error] Unable to connect to any of the specified MySQL hosts. +2017-12-20 15:06:18.306 +05:30 [Debug] Hosting starting +2017-12-20 15:06:18.581 +05:30 [Debug] Hosting started +2017-12-20 15:06:19.025 +05:30 [Debug] Connection id ""0HLA7HKFQLA05"" started. +2017-12-20 15:06:19.025 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" started. +2017-12-20 15:06:19.190 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-20 15:06:19.190 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-20 15:06:19.258 +05:30 [Information] Request finished in 98.4621ms 200 +2017-12-20 15:06:19.309 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" completed keep alive response. +2017-12-20 15:06:20.209 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-20 15:06:20.254 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"16f2a9d6-d1c4-4388-856e-fdadeb5a0724"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-20 15:06:20.707 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-20 15:06:20.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-20 15:06:20.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-20 15:06:20.850 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:06:20.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:06:20.863 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:06:21.210 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 496.3828ms +2017-12-20 15:06:21.290 +05:30 [Information] Request finished in 2145.0435ms 200 application/json; charset=utf-8 +2017-12-20 15:06:21.293 +05:30 [Debug] Connection id ""0HLA7HKFQLA05"" completed keep alive response. +2017-12-20 15:06:21.363 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-20 15:06:21.367 +05:30 [Debug] Request did not match any routes. +2017-12-20 15:06:21.384 +05:30 [Debug] The request path "" does not match the path filter +2017-12-20 15:06:21.386 +05:30 [Information] Request finished in 22.3614ms 404 +2017-12-20 15:06:21.387 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" completed keep alive response. +2017-12-20 15:06:23.182 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:06:23.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:06:23.190 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:06:26.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:06:34.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:06:34.119 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:06:34.120 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:06:34.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10931.4813ms +2017-12-20 15:06:34.125 +05:30 [Information] Request finished in 10942.7298ms 200 application/json; charset=utf-8 +2017-12-20 15:06:34.126 +05:30 [Debug] Connection id ""0HLA7HKFQLA05"" completed keep alive response. +2017-12-20 15:06:45.778 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:06:45.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:06:45.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:06:48.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:06:49.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:06:49.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:06:49.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:06:49.349 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3567.7341ms +2017-12-20 15:06:49.352 +05:30 [Information] Request finished in 3573.0094ms 200 application/json; charset=utf-8 +2017-12-20 15:06:49.352 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" completed keep alive response. +2017-12-20 15:06:49.407 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:06:49.409 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:06:49.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:06:52.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:06:52.960 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:06:52.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:06:52.961 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:06:52.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3552.2428ms +2017-12-20 15:06:52.965 +05:30 [Information] Request finished in 3559.67ms 200 application/json; charset=utf-8 +2017-12-20 15:06:52.966 +05:30 [Debug] Connection id ""0HLA7HKFQLA05"" completed keep alive response. +2017-12-20 15:06:52.999 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:06:53.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:06:53.001 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:06:56.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:06:56.547 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:06:56.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:06:56.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:06:56.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3548.6314ms +2017-12-20 15:06:56.554 +05:30 [Information] Request finished in 3554.0068ms 200 application/json; charset=utf-8 +2017-12-20 15:06:56.555 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" completed keep alive response. +2017-12-20 15:08:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA05"" received FIN. +2017-12-20 15:08:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" received FIN. +2017-12-20 15:08:08.864 +05:30 [Debug] Connection id ""0HLA7HKFQLA05"" disconnecting. +2017-12-20 15:08:08.865 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" disconnecting. +2017-12-20 15:08:08.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" sending FIN. +2017-12-20 15:08:08.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA05"" sending FIN. +2017-12-20 15:08:08.880 +05:30 [Debug] Connection id ""0HLA7HKFQLA05"" sent FIN with status "0". +2017-12-20 15:08:08.880 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" sent FIN with status "0". +2017-12-20 15:08:08.884 +05:30 [Debug] Connection id ""0HLA7HKFQLA05"" stopped. +2017-12-20 15:08:08.884 +05:30 [Debug] Connection id ""0HLA7HKFQLA04"" stopped. +2017-12-20 15:27:11.006 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" started. +2017-12-20 15:27:11.013 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:27:11.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:27:11.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:27:14.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:27:15.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:15.976 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:15.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:15.978 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4963.1957ms +2017-12-20 15:27:15.982 +05:30 [Information] Request finished in 4974.0495ms 200 application/json; charset=utf-8 +2017-12-20 15:27:15.982 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" completed keep alive response. +2017-12-20 15:27:24.327 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:27:24.328 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:27:24.328 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:27:27.398 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:27:27.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:27.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:27.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:27.910 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3579.998ms +2017-12-20 15:27:27.913 +05:30 [Information] Request finished in 3584.7029ms 200 application/json; charset=utf-8 +2017-12-20 15:27:27.914 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" completed keep alive response. +2017-12-20 15:27:27.933 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-20 15:27:27.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-20 15:27:27.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-20 15:27:30.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-20 15:27:32.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:32.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:32.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:32.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4271.8859ms +2017-12-20 15:27:32.209 +05:30 [Information] Request finished in 4277.0129ms 200 application/json; charset=utf-8 +2017-12-20 15:27:32.210 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" completed keep alive response. +2017-12-20 15:27:32.461 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:27:32.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:27:32.462 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:27:35.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:27:36.048 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:36.048 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:36.050 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:36.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3587.4662ms +2017-12-20 15:27:36.054 +05:30 [Information] Request finished in 3592.5982ms 200 application/json; charset=utf-8 +2017-12-20 15:27:36.055 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" completed keep alive response. +2017-12-20 15:27:36.101 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-20 15:27:36.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 15:27:36.103 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 15:27:39.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-20 15:27:40.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:40.869 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:40.871 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:40.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4823.0449ms +2017-12-20 15:27:40.928 +05:30 [Information] Request finished in 4827.3586ms 200 application/json; charset=utf-8 +2017-12-20 15:27:40.928 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" completed keep alive response. +2017-12-20 15:27:42.607 +05:30 [Debug] Connection id ""0HLA7HKFQLA07"" started. +2017-12-20 15:27:42.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-20 15:27:42.608 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 15:27:42.609 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-20 15:27:42.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 15:27:42.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 15:27:42.611 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 15:27:42.716 +05:30 [Debug] Connection id ""0HLA7HKFQLA08"" started. +2017-12-20 15:27:42.719 +05:30 [Debug] Connection id ""0HLA7HKFQLA09"" started. +2017-12-20 15:27:42.721 +05:30 [Debug] Connection id ""0HLA7HKFQLA0A"" started. +2017-12-20 15:27:42.722 +05:30 [Debug] Connection id ""0HLA7HKFQLA0B"" started. +2017-12-20 15:27:42.723 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-20 15:27:42.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 15:27:42.724 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-20 15:27:42.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 15:27:42.725 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 15:27:42.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 15:27:43.424 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-20 15:27:43.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 15:27:43.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 15:27:44.429 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-20 15:27:44.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 15:27:44.432 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 15:27:47.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:27:47.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:27:47.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:27:47.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:27:47.682 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:27:47.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:27:48.344 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:48.344 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:27:48.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:48.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:48.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3920.5432ms +2017-12-20 15:27:48.357 +05:30 [Information] Request finished in 3928.2524ms 200 application/json; charset=utf-8 +2017-12-20 15:27:48.357 +05:30 [Debug] Connection id ""0HLA7HKFQLA0B"" completed keep alive response. +2017-12-20 15:27:48.362 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-20 15:27:48.362 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 15:27:48.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 15:27:49.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:49.800 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:27:49.800 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:49.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:49.808 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6381.999ms +2017-12-20 15:27:49.813 +05:30 [Information] Request finished in 6388.7562ms 200 application/json; charset=utf-8 +2017-12-20 15:27:49.814 +05:30 [Debug] Connection id ""0HLA7HKFQLA0A"" completed keep alive response. +2017-12-20 15:27:50.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:50.111 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:27:50.111 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:50.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:50.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7388.8206ms +2017-12-20 15:27:50.122 +05:30 [Information] Request finished in 7398.6528ms 200 application/json; charset=utf-8 +2017-12-20 15:27:50.123 +05:30 [Debug] Connection id ""0HLA7HKFQLA09"" completed keep alive response. +2017-12-20 15:27:50.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:50.232 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:27:50.232 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:50.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:50.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7622.0754ms +2017-12-20 15:27:50.236 +05:30 [Information] Request finished in 7627.1551ms 200 application/json; charset=utf-8 +2017-12-20 15:27:50.236 +05:30 [Debug] Connection id ""0HLA7HKFQLA07"" completed keep alive response. +2017-12-20 15:27:50.417 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:50.418 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:27:50.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:50.419 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:50.420 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7809.3534ms +2017-12-20 15:27:50.422 +05:30 [Information] Request finished in 7815.9347ms 200 application/json; charset=utf-8 +2017-12-20 15:27:50.422 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" completed keep alive response. +2017-12-20 15:27:50.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:27:52.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:27:52.909 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:27:52.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:27:52.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:27:52.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4593.5732ms +2017-12-20 15:27:52.960 +05:30 [Information] Request finished in 4599.4484ms 200 application/json; charset=utf-8 +2017-12-20 15:27:52.961 +05:30 [Debug] Connection id ""0HLA7HKFQLA0B"" completed keep alive response. +2017-12-20 15:27:56.129 +05:30 [Fatal] Sequence contains no elements +2017-12-20 15:27:56.283 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-20 15:27:56.820 +05:30 [Fatal] Sequence contains no elements +2017-12-20 15:27:56.821 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-12-20 15:28:12.011 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:28:12.012 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:28:12.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:28:12.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:28:12.036 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 29307.4375ms +2017-12-20 15:28:12.040 +05:30 [Information] Request finished in 29318.7566ms 200 application/json; charset=utf-8 +2017-12-20 15:28:12.041 +05:30 [Debug] Connection id ""0HLA7HKFQLA08"" completed keep alive response. +2017-12-20 15:30:08.858 +05:30 [Debug] Connection id ""0HLA7HKFQLA0A"" received FIN. +2017-12-20 15:30:08.859 +05:30 [Debug] Connection id ""0HLA7HKFQLA09"" received FIN. +2017-12-20 15:30:08.859 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" received FIN. +2017-12-20 15:30:08.859 +05:30 [Debug] Connection id ""0HLA7HKFQLA07"" received FIN. +2017-12-20 15:30:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA08"" received FIN. +2017-12-20 15:30:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA0B"" received FIN. +2017-12-20 15:30:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA0A"" disconnecting. +2017-12-20 15:30:08.861 +05:30 [Debug] Connection id ""0HLA7HKFQLA0A"" sending FIN. +2017-12-20 15:30:08.861 +05:30 [Debug] Connection id ""0HLA7HKFQLA0A"" sent FIN with status "0". +2017-12-20 15:30:08.862 +05:30 [Debug] Connection id ""0HLA7HKFQLA0A"" stopped. +2017-12-20 15:30:08.861 +05:30 [Debug] Connection id ""0HLA7HKFQLA09"" disconnecting. +2017-12-20 15:30:08.898 +05:30 [Debug] Connection id ""0HLA7HKFQLA07"" disconnecting. +2017-12-20 15:30:08.898 +05:30 [Debug] Connection id ""0HLA7HKFQLA09"" sending FIN. +2017-12-20 15:30:08.897 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" disconnecting. +2017-12-20 15:30:08.897 +05:30 [Debug] Connection id ""0HLA7HKFQLA08"" disconnecting. +2017-12-20 15:30:08.898 +05:30 [Debug] Connection id ""0HLA7HKFQLA0B"" disconnecting. +2017-12-20 15:30:08.899 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" sending FIN. +2017-12-20 15:30:08.899 +05:30 [Debug] Connection id ""0HLA7HKFQLA07"" sending FIN. +2017-12-20 15:30:08.900 +05:30 [Debug] Connection id ""0HLA7HKFQLA08"" sending FIN. +2017-12-20 15:30:08.900 +05:30 [Debug] Connection id ""0HLA7HKFQLA0B"" sending FIN. +2017-12-20 15:30:08.900 +05:30 [Debug] Connection id ""0HLA7HKFQLA08"" sent FIN with status "0". +2017-12-20 15:30:08.901 +05:30 [Debug] Connection id ""0HLA7HKFQLA0B"" sent FIN with status "0". +2017-12-20 15:30:08.901 +05:30 [Debug] Connection id ""0HLA7HKFQLA08"" stopped. +2017-12-20 15:30:08.901 +05:30 [Debug] Connection id ""0HLA7HKFQLA0B"" stopped. +2017-12-20 15:30:08.902 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" sent FIN with status "0". +2017-12-20 15:30:08.902 +05:30 [Debug] Connection id ""0HLA7HKFQLA07"" sent FIN with status "0". +2017-12-20 15:30:08.902 +05:30 [Debug] Connection id ""0HLA7HKFQLA07"" stopped. +2017-12-20 15:30:08.902 +05:30 [Debug] Connection id ""0HLA7HKFQLA06"" stopped. +2017-12-20 15:30:08.902 +05:30 [Debug] Connection id ""0HLA7HKFQLA09"" sent FIN with status "0". +2017-12-20 15:30:08.903 +05:30 [Debug] Connection id ""0HLA7HKFQLA09"" stopped. +2017-12-20 15:40:08.036 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" started. +2017-12-20 15:40:08.038 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-20 15:40:08.062 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-20 15:40:08.064 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-20 15:40:11.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-20 15:40:18.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:40:18.669 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:40:18.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:40:18.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:40:18.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10607.1241ms +2017-12-20 15:40:18.677 +05:30 [Information] Request finished in 10639.3849ms 200 application/json; charset=utf-8 +2017-12-20 15:40:18.678 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" completed keep alive response. +2017-12-20 15:40:18.685 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-20 15:40:18.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-20 15:40:18.688 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-20 15:40:21.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:41:08.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-20 15:41:08.256 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-20 15:41:08.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 49569.2148ms +2017-12-20 15:41:08.260 +05:30 [Information] Request finished in 49575.8526ms 200 +2017-12-20 15:41:08.261 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" completed keep alive response. +2017-12-20 15:41:28.137 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=48&profileId=329868774154589 0 +2017-12-20 15:41:28.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 15:41:28.140 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 15:41:31.201 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["48", "329868774154589"]) - ModelState is Valid +2017-12-20 15:41:34.664 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:41:34.665 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:41:34.665 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 15:41:34.667 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:41:34.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 6528.8653ms +2017-12-20 15:41:34.682 +05:30 [Information] Request finished in 6546.1119ms 200 text/plain; charset=utf-8 +2017-12-20 15:41:34.682 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" completed keep alive response. +2017-12-20 15:41:52.950 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=48&profileId=329868774154589 0 +2017-12-20 15:41:52.951 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 15:41:52.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 15:41:54.196 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" started. +2017-12-20 15:41:54.197 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=48&userId=48&profileId=329868774154589 0 +2017-12-20 15:41:54.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-12-20 15:41:54.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-12-20 15:41:55.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["48", "329868774154589"]) - ModelState is Valid +2017-12-20 15:41:58.535 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["48", "48", "329868774154589"]) - ModelState is Valid +2017-12-20 15:41:59.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:41:59.497 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:41:59.497 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 15:41:59.501 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:41:59.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 6550.3488ms +2017-12-20 15:41:59.507 +05:30 [Information] Request finished in 6556.6778ms 200 text/plain; charset=utf-8 +2017-12-20 15:41:59.508 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" completed keep alive response. +2017-12-20 15:42:09.982 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:09.982 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:42:09.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 15:42:09.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:09.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 15784.2499ms +2017-12-20 15:42:09.986 +05:30 [Information] Request finished in 15789.2555ms 200 text/plain; charset=utf-8 +2017-12-20 15:42:09.987 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" completed keep alive response. +2017-12-20 15:42:10.026 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:42:10.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:42:10.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:42:13.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:42:13.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:13.613 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:13.614 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:13.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3586.0079ms +2017-12-20 15:42:13.619 +05:30 [Information] Request finished in 3592.8417ms 200 application/json; charset=utf-8 +2017-12-20 15:42:13.620 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" completed keep alive response. +2017-12-20 15:42:13.635 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-20 15:42:13.635 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 15:42:13.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 15:42:16.686 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-20 15:42:18.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:18.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:18.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:18.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4689.5379ms +2017-12-20 15:42:18.337 +05:30 [Information] Request finished in 4703.2757ms 200 application/json; charset=utf-8 +2017-12-20 15:42:18.337 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" completed keep alive response. +2017-12-20 15:42:19.178 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" started. +2017-12-20 15:42:19.178 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" started. +2017-12-20 15:42:19.181 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-20 15:42:19.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 15:42:19.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 15:42:19.196 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-20 15:42:19.196 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 15:42:19.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 15:42:19.254 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-20 15:42:19.254 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 15:42:19.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 15:42:19.288 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-20 15:42:19.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 15:42:19.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 15:42:19.329 +05:30 [Debug] Connection id ""0HLA7HKFQLA0G"" started. +2017-12-20 15:42:19.330 +05:30 [Debug] Connection id ""0HLA7HKFQLA0H"" started. +2017-12-20 15:42:20.030 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-20 15:42:20.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 15:42:20.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 15:42:21.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-20 15:42:21.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 15:42:21.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 15:42:23.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:42:23.931 +05:30 [Debug] Connection id ""0HLA7HKFQLA0I"" started. +2017-12-20 15:42:23.933 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:42:23.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:42:23.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:42:24.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:24.289 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:42:24.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:24.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:24.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3260.4539ms +2017-12-20 15:42:24.294 +05:30 [Information] Request finished in 3265.0391ms 200 application/json; charset=utf-8 +2017-12-20 15:42:24.295 +05:30 [Debug] Connection id ""0HLA7HKFQLA0H"" completed keep alive response. +2017-12-20 15:42:24.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:42:24.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-20 15:42:24.435 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 15:42:24.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 15:42:24.465 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:42:24.469 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:42:24.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:42:24.473 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:42:25.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:25.112 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:42:25.112 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:25.113 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:25.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5914.3423ms +2017-12-20 15:42:25.115 +05:30 [Information] Request finished in 5935.5082ms 200 application/json; charset=utf-8 +2017-12-20 15:42:25.116 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" completed keep alive response. +2017-12-20 15:42:26.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:26.374 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:42:26.375 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:26.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:26.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7196.1367ms +2017-12-20 15:42:26.386 +05:30 [Information] Request finished in 7216.2486ms 200 application/json; charset=utf-8 +2017-12-20 15:42:26.386 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" completed keep alive response. +2017-12-20 15:42:26.533 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 15:42:26.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:26.642 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:42:26.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:26.643 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:26.645 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7388.9428ms +2017-12-20 15:42:26.648 +05:30 [Information] Request finished in 7468.2929ms 200 application/json; charset=utf-8 +2017-12-20 15:42:26.649 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" completed keep alive response. +2017-12-20 15:42:27.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:42:27.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:27.087 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:42:27.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:27.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:27.090 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7058.8677ms +2017-12-20 15:42:27.092 +05:30 [Information] Request finished in 7062.8107ms 200 application/json; charset=utf-8 +2017-12-20 15:42:27.093 +05:30 [Debug] Connection id ""0HLA7HKFQLA0G"" completed keep alive response. +2017-12-20 15:42:27.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:27.142 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:42:27.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:27.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:27.144 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7854.2588ms +2017-12-20 15:42:27.149 +05:30 [Information] Request finished in 7967.1119ms 200 application/json; charset=utf-8 +2017-12-20 15:42:27.150 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" completed keep alive response. +2017-12-20 15:42:27.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:27.702 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:27.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:27.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3782.0703ms +2017-12-20 15:42:27.723 +05:30 [Information] Request finished in 3791.0074ms 200 application/json; charset=utf-8 +2017-12-20 15:42:27.723 +05:30 [Debug] Connection id ""0HLA7HKFQLA0I"" completed keep alive response. +2017-12-20 15:42:28.692 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:42:28.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:42:28.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:42:28.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:28.926 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:42:28.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:28.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:28.929 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4493.2817ms +2017-12-20 15:42:28.932 +05:30 [Information] Request finished in 4601.7427ms 200 application/json; charset=utf-8 +2017-12-20 15:42:28.933 +05:30 [Debug] Connection id ""0HLA7HKFQLA0H"" completed keep alive response. +2017-12-20 15:42:28.966 +05:30 [Debug] Connection id ""0HLA7HKFQLA0H"" received FIN. +2017-12-20 15:42:28.967 +05:30 [Debug] Connection id ""0HLA7HKFQLA0H"" disconnecting. +2017-12-20 15:42:28.988 +05:30 [Information] Connection id ""0HLA7HKFQLA0H"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-20 15:42:28.990 +05:30 [Debug] Connection id ""0HLA7HKFQLA0H"" sending FIN. +2017-12-20 15:42:28.991 +05:30 [Debug] Connection id ""0HLA7HKFQLA0H"" sent FIN with status "0". +2017-12-20 15:42:28.992 +05:30 [Debug] Connection id ""0HLA7HKFQLA0H"" stopped. +2017-12-20 15:42:30.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:42:31.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:31.358 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:31.359 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:31.360 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2665.2125ms +2017-12-20 15:42:31.362 +05:30 [Information] Request finished in 2669.4418ms 200 application/json; charset=utf-8 +2017-12-20 15:42:31.363 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" completed keep alive response. +2017-12-20 15:42:31.445 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:42:31.446 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:42:31.446 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:42:34.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:42:35.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:35.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:35.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:35.085 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3638.0736ms +2017-12-20 15:42:35.088 +05:30 [Information] Request finished in 3642.9322ms 200 application/json; charset=utf-8 +2017-12-20 15:42:35.089 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" completed keep alive response. +2017-12-20 15:42:35.098 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:42:35.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:42:35.099 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:42:38.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:42:38.724 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:42:38.725 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:42:38.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:42:38.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3626.7838ms +2017-12-20 15:42:38.729 +05:30 [Information] Request finished in 3631.647ms 200 application/json; charset=utf-8 +2017-12-20 15:42:38.730 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" completed keep alive response. +2017-12-20 15:43:04.451 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:43:04.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:43:04.452 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:43:07.492 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:43:07.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:07.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:08.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:08.001 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3548.0476ms +2017-12-20 15:43:08.004 +05:30 [Information] Request finished in 3552.3775ms 200 application/json; charset=utf-8 +2017-12-20 15:43:08.004 +05:30 [Debug] Connection id ""0HLA7HKFQLA0G"" completed keep alive response. +2017-12-20 15:43:11.691 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 201 +2017-12-20 15:43:11.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-20 15:43:11.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-20 15:43:14.730 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAEf5XcZCaHNLoxU3T3zeTZBTedZB1EN9ZC7o17peA6mFLZArZAhUjA0rRZCBp0y09ZC3aF9YWt9d85iHALDd8Owa5N4SF26cpLKuWWuUnvzbRol3RAlGmoCUR6rajGkXe9uBtw1X4GhuJOthnE1iNTYqdpsLPFQc1QZDZD", "Free"]) - ModelState is Valid +2017-12-20 15:43:21.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:21.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:21.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:21.061 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 9365.9557ms +2017-12-20 15:43:21.063 +05:30 [Information] Request finished in 9373.5082ms 200 application/json; charset=utf-8 +2017-12-20 15:43:21.064 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" completed keep alive response. +2017-12-20 15:43:21.177 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:43:21.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:43:21.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:43:23.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:43:23.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:23.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:23.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:23.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2668.0342ms +2017-12-20 15:43:23.850 +05:30 [Information] Request finished in 2678.2415ms 200 application/json; charset=utf-8 +2017-12-20 15:43:23.850 +05:30 [Debug] Connection id ""0HLA7HKFQLA0I"" completed keep alive response. +2017-12-20 15:43:23.855 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId= +2017-12-20 15:43:23.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 15:43:23.856 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 15:43:25.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", ""]) - ModelState is Valid +2017-12-20 15:43:27.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:27.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:27.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:27.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3804.9412ms +2017-12-20 15:43:27.672 +05:30 [Information] Request finished in 3816.3517ms 200 application/json; charset=utf-8 +2017-12-20 15:43:27.673 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" completed keep alive response. +2017-12-20 15:43:28.546 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 15:43:28.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 15:43:28.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 15:43:28.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 15:43:28.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 15:43:28.554 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 15:43:28.567 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 15:43:28.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 15:43:28.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 15:43:28.568 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 15:43:28.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 15:43:28.569 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 15:43:28.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 15:43:28.652 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 15:43:28.653 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 15:43:28.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 15:43:28.654 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 15:43:28.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 15:43:30.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 15:43:30.788 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 15:43:31.637 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 15:43:31.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 15:43:31.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 15:43:31.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 15:43:31.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:31.777 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:43:31.777 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:31.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:31.779 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3210.164ms +2017-12-20 15:43:31.781 +05:30 [Information] Request finished in 3227.4284ms 200 application/json; charset=utf-8 +2017-12-20 15:43:31.781 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" completed keep alive response. +2017-12-20 15:43:31.786 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 15:43:31.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 15:43:31.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 15:43:31.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:31.974 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:43:31.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:31.975 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:31.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3319.1242ms +2017-12-20 15:43:31.979 +05:30 [Information] Request finished in 3326.9473ms 200 application/json; charset=utf-8 +2017-12-20 15:43:31.980 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" completed keep alive response. +2017-12-20 15:43:32.221 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:32.222 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:43:32.222 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:32.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:32.225 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3665.985ms +2017-12-20 15:43:32.227 +05:30 [Information] Request finished in 3682.9004ms 200 application/json; charset=utf-8 +2017-12-20 15:43:32.228 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" completed keep alive response. +2017-12-20 15:43:32.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:32.232 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:43:32.233 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:32.234 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:32.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3664.866ms +2017-12-20 15:43:32.238 +05:30 [Information] Request finished in 3692.7257ms 200 application/json; charset=utf-8 +2017-12-20 15:43:32.239 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" completed keep alive response. +2017-12-20 15:43:32.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:32.359 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:43:32.359 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:32.360 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:32.361 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3804.1668ms +2017-12-20 15:43:32.364 +05:30 [Information] Request finished in 3818.9331ms 200 application/json; charset=utf-8 +2017-12-20 15:43:32.364 +05:30 [Debug] Connection id ""0HLA7HKFQLA0G"" completed keep alive response. +2017-12-20 15:43:34.263 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:34.263 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:43:34.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:34.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:34.267 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5613.5115ms +2017-12-20 15:43:34.271 +05:30 [Information] Request finished in 5619.751ms 200 application/json; charset=utf-8 +2017-12-20 15:43:34.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA0I"" completed keep alive response. +2017-12-20 15:43:34.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 15:43:36.560 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:43:36.560 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:43:36.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:43:36.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:43:36.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4774.2569ms +2017-12-20 15:43:36.564 +05:30 [Information] Request finished in 4778.4129ms 200 application/json; charset=utf-8 +2017-12-20 15:43:36.564 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" completed keep alive response. +2017-12-20 15:44:49.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" received FIN. +2017-12-20 15:44:49.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" received FIN. +2017-12-20 15:44:49.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0G"" received FIN. +2017-12-20 15:44:49.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" received FIN. +2017-12-20 15:44:49.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0I"" received FIN. +2017-12-20 15:44:49.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" disconnecting. +2017-12-20 15:44:49.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" disconnecting. +2017-12-20 15:44:49.270 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" disconnecting. +2017-12-20 15:44:49.270 +05:30 [Debug] Connection id ""0HLA7HKFQLA0I"" disconnecting. +2017-12-20 15:44:49.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" received FIN. +2017-12-20 15:44:49.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0G"" disconnecting. +2017-12-20 15:44:49.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" sending FIN. +2017-12-20 15:44:49.292 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" disconnecting. +2017-12-20 15:44:49.292 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" sending FIN. +2017-12-20 15:44:49.293 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" sending FIN. +2017-12-20 15:44:49.293 +05:30 [Debug] Connection id ""0HLA7HKFQLA0I"" sending FIN. +2017-12-20 15:44:49.293 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" sent FIN with status "0". +2017-12-20 15:44:49.294 +05:30 [Debug] Connection id ""0HLA7HKFQLA0D"" stopped. +2017-12-20 15:44:49.293 +05:30 [Debug] Connection id ""0HLA7HKFQLA0G"" sending FIN. +2017-12-20 15:44:49.294 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" sent FIN with status "0". +2017-12-20 15:44:49.294 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" sending FIN. +2017-12-20 15:44:49.294 +05:30 [Debug] Connection id ""0HLA7HKFQLA0F"" stopped. +2017-12-20 15:44:49.294 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" sent FIN with status "0". +2017-12-20 15:44:49.295 +05:30 [Debug] Connection id ""0HLA7HKFQLA0E"" stopped. +2017-12-20 15:44:49.295 +05:30 [Debug] Connection id ""0HLA7HKFQLA0G"" sent FIN with status "0". +2017-12-20 15:44:49.295 +05:30 [Debug] Connection id ""0HLA7HKFQLA0G"" stopped. +2017-12-20 15:44:49.295 +05:30 [Debug] Connection id ""0HLA7HKFQLA0I"" sent FIN with status "0". +2017-12-20 15:44:49.296 +05:30 [Debug] Connection id ""0HLA7HKFQLA0I"" stopped. +2017-12-20 15:44:49.296 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" sent FIN with status "0". +2017-12-20 15:44:49.296 +05:30 [Debug] Connection id ""0HLA7HKFQLA0C"" stopped. +2017-12-20 15:46:18.798 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" started. +2017-12-20 15:46:18.799 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500443&profileId=134715397262944 0 +2017-12-20 15:46:18.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 15:46:18.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 15:46:21.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500443", "134715397262944"]) - ModelState is Valid +2017-12-20 15:46:24.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:24.110 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:46:24.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 15:46:24.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:24.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 5310.9578ms +2017-12-20 15:46:24.114 +05:30 [Information] Request finished in 5314.7505ms 200 text/plain; charset=utf-8 +2017-12-20 15:46:24.114 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" completed keep alive response. +2017-12-20 15:46:34.459 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 15:46:34.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 15:46:34.463 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 15:46:37.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 15:46:38.060 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:38.060 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:46:38.062 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:38.063 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3598.8283ms +2017-12-20 15:46:38.066 +05:30 [Information] Request finished in 3606.8451ms 200 application/json; charset=utf-8 +2017-12-20 15:46:38.066 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" completed keep alive response. +2017-12-20 15:46:38.074 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-20 15:46:38.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 15:46:38.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 15:46:41.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 15:46:42.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:42.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:46:42.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:42.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4661.8968ms +2017-12-20 15:46:42.744 +05:30 [Information] Request finished in 4668.6737ms 200 application/json; charset=utf-8 +2017-12-20 15:46:42.744 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" completed keep alive response. +2017-12-20 15:46:46.112 +05:30 [Debug] Connection id ""0HLA7HKFQLA0K"" started. +2017-12-20 15:46:46.112 +05:30 [Debug] Connection id ""0HLA7HKFQLA0L"" started. +2017-12-20 15:46:46.113 +05:30 [Debug] Connection id ""0HLA7HKFQLA0M"" started. +2017-12-20 15:46:46.121 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 15:46:46.121 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 15:46:46.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 15:46:46.156 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 15:46:46.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 15:46:46.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 15:46:46.192 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 15:46:46.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 15:46:46.193 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 15:46:46.206 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 15:46:46.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 15:46:46.207 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 15:46:46.539 +05:30 [Debug] Connection id ""0HLA7HKFQLA0N"" started. +2017-12-20 15:46:46.540 +05:30 [Debug] Connection id ""0HLA7HKFQLA0O"" started. +2017-12-20 15:46:46.541 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 15:46:46.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 15:46:46.542 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 15:46:47.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 15:46:47.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 15:46:47.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 15:46:50.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 15:46:50.767 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 15:46:50.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 15:46:50.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 15:46:50.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 15:46:50.805 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 15:46:51.330 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:51.331 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:46:51.331 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:46:51.332 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:51.333 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5173.1554ms +2017-12-20 15:46:51.335 +05:30 [Information] Request finished in 5221.1961ms 200 application/json; charset=utf-8 +2017-12-20 15:46:51.336 +05:30 [Debug] Connection id ""0HLA7HKFQLA0L"" completed keep alive response. +2017-12-20 15:46:51.343 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 15:46:51.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 15:46:51.344 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 15:46:51.424 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:51.425 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:46:51.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:51.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:46:51.446 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:46:51.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:51.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:46:51.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5254.0077ms +2017-12-20 15:46:51.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:51.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5243.2434ms +2017-12-20 15:46:51.452 +05:30 [Information] Request finished in 5338.2247ms 200 application/json; charset=utf-8 +2017-12-20 15:46:51.459 +05:30 [Debug] Connection id ""0HLA7HKFQLA0K"" completed keep alive response. +2017-12-20 15:46:51.458 +05:30 [Information] Request finished in 5336.4171ms 200 application/json; charset=utf-8 +2017-12-20 15:46:51.459 +05:30 [Debug] Connection id ""0HLA7HKFQLA0M"" completed keep alive response. +2017-12-20 15:46:51.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:51.898 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:46:51.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:46:51.900 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:51.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:51.902 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:46:51.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:46:51.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5777.8972ms +2017-12-20 15:46:51.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:51.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4796.3925ms +2017-12-20 15:46:51.910 +05:30 [Information] Request finished in 5801.1528ms 200 application/json; charset=utf-8 +2017-12-20 15:46:51.911 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" completed keep alive response. +2017-12-20 15:46:51.914 +05:30 [Information] Request finished in 4807.2168ms 200 application/json; charset=utf-8 +2017-12-20 15:46:51.914 +05:30 [Debug] Connection id ""0HLA7HKFQLA0O"" completed keep alive response. +2017-12-20 15:46:51.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:51.988 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:46:51.988 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:46:51.990 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:51.991 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5447.657ms +2017-12-20 15:46:51.993 +05:30 [Information] Request finished in 5452.5087ms 200 application/json; charset=utf-8 +2017-12-20 15:46:51.994 +05:30 [Debug] Connection id ""0HLA7HKFQLA0N"" completed keep alive response. +2017-12-20 15:46:54.397 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 15:46:56.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:46:56.147 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:46:56.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 15:46:56.148 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:46:56.149 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4804.6771ms +2017-12-20 15:46:56.152 +05:30 [Information] Request finished in 4811.5009ms 200 application/json; charset=utf-8 +2017-12-20 15:46:56.152 +05:30 [Debug] Connection id ""0HLA7HKFQLA0L"" completed keep alive response. +2017-12-20 15:46:59.353 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500443&profileId=134715397262944 0 +2017-12-20 15:46:59.354 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 15:46:59.354 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 15:47:02.381 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500443", "134715397262944"]) - ModelState is Valid +2017-12-20 15:47:15.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 15:47:15.277 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 15:47:15.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 15:47:15.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 15:47:15.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 15934.6576ms +2017-12-20 15:47:15.294 +05:30 [Information] Request finished in 15943.5605ms 200 text/plain; charset=utf-8 +2017-12-20 15:47:15.295 +05:30 [Debug] Connection id ""0HLA7HKFQLA0K"" completed keep alive response. +2017-12-20 15:48:29.267 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" received FIN. +2017-12-20 15:48:29.267 +05:30 [Debug] Connection id ""0HLA7HKFQLA0M"" received FIN. +2017-12-20 15:48:29.267 +05:30 [Debug] Connection id ""0HLA7HKFQLA0N"" received FIN. +2017-12-20 15:48:29.267 +05:30 [Debug] Connection id ""0HLA7HKFQLA0O"" received FIN. +2017-12-20 15:48:29.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" disconnecting. +2017-12-20 15:48:29.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0L"" received FIN. +2017-12-20 15:48:29.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" sending FIN. +2017-12-20 15:48:29.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0N"" disconnecting. +2017-12-20 15:48:29.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0M"" disconnecting. +2017-12-20 15:48:29.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" sent FIN with status "0". +2017-12-20 15:48:29.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0O"" disconnecting. +2017-12-20 15:48:29.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0J"" stopped. +2017-12-20 15:48:29.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0M"" sending FIN. +2017-12-20 15:48:29.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0N"" sending FIN. +2017-12-20 15:48:29.270 +05:30 [Debug] Connection id ""0HLA7HKFQLA0O"" sending FIN. +2017-12-20 15:48:29.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0L"" disconnecting. +2017-12-20 15:48:29.270 +05:30 [Debug] Connection id ""0HLA7HKFQLA0K"" received FIN. +2017-12-20 15:48:29.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA0O"" sent FIN with status "0". +2017-12-20 15:48:29.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA0N"" sent FIN with status "0". +2017-12-20 15:48:29.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA0O"" stopped. +2017-12-20 15:48:29.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA0K"" disconnecting. +2017-12-20 15:48:29.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA0N"" stopped. +2017-12-20 15:48:29.272 +05:30 [Debug] Connection id ""0HLA7HKFQLA0M"" sent FIN with status "0". +2017-12-20 15:48:29.272 +05:30 [Debug] Connection id ""0HLA7HKFQLA0M"" stopped. +2017-12-20 15:48:29.272 +05:30 [Debug] Connection id ""0HLA7HKFQLA0K"" sending FIN. +2017-12-20 15:48:29.273 +05:30 [Debug] Connection id ""0HLA7HKFQLA0K"" sent FIN with status "0". +2017-12-20 15:48:29.272 +05:30 [Debug] Connection id ""0HLA7HKFQLA0L"" sending FIN. +2017-12-20 15:48:29.273 +05:30 [Debug] Connection id ""0HLA7HKFQLA0K"" stopped. +2017-12-20 15:48:29.273 +05:30 [Debug] Connection id ""0HLA7HKFQLA0L"" sent FIN with status "0". +2017-12-20 15:48:29.273 +05:30 [Debug] Connection id ""0HLA7HKFQLA0L"" stopped. +2017-12-20 16:03:57.536 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" started. +2017-12-20 16:03:57.539 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=500443 +2017-12-20 16:03:57.540 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-12-20 16:03:57.541 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-12-20 16:04:00.577 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:04:03.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:03.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:03.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:03.347 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5805.5722ms +2017-12-20 16:04:03.350 +05:30 [Information] Request finished in 5811.973ms 200 application/json; charset=utf-8 +2017-12-20 16:04:03.351 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:04:03.355 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1152637 +2017-12-20 16:04:03.356 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-12-20 16:04:03.357 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-12-20 16:04:06.381 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:04:07.031 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:07.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:07.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:07.033 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3676.3941ms +2017-12-20 16:04:07.036 +05:30 [Information] Request finished in 3681.2483ms 200 application/json; charset=utf-8 +2017-12-20 16:04:07.036 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:04:17.977 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookAccount application/x-www-form-urlencoded 228 +2017-12-20 16:04:17.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookAccount"'. +2017-12-20 16:04:17.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" +2017-12-20 16:04:21.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAGHcCTrbm0SuwlYULKGAcOUgfeP0EqNckZCq8fDgnySt6EpQ9sc2xZCDjutwZCKUi8bgdlyaPNyoyh6fyvFiBwGR6q49bn0oISAc34QOU2ZBIRiuZCjAeaOjdeZAK8cckC5KMPShZAZCNnQAepB2dhq3ig3hRgGZCrtQpAYr3FOOV", "1152637", "500443"]) - ModelState is Valid +2017-12-20 16:04:21.674 +05:30 [Error] {"id":"122609171864332","birthday":"12/31/1992","email":"sarahlmoss979@gmail.com","gender":"female","name":"Sarah Moss","picture":{"data":{"height":50,"is_silhouette":false,"url":"https://scontent.xx.fbcdn.net/v/t1.0-1/c19.0.50.50/p50x50/25446195_122599651865284_5396241021452362980_n.jpg?oh=7adfa8e82f31958521795fb93e456665&oe=5AB38BA1","width":50}} +2017-12-20 16:04:27.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:27.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:27.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:27.602 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" in 9622.2605ms +2017-12-20 16:04:27.604 +05:30 [Information] Request finished in 9626.0038ms 200 application/json; charset=utf-8 +2017-12-20 16:04:27.604 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:04:27.648 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 16:04:27.649 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 16:04:27.650 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 16:04:29.752 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 16:04:30.321 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:30.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:30.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:30.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2672.6959ms +2017-12-20 16:04:30.331 +05:30 [Information] Request finished in 2681.4082ms 200 application/json; charset=utf-8 +2017-12-20 16:04:30.331 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:04:30.338 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-20 16:04:30.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 16:04:30.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 16:04:33.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:04:35.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:35.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:35.174 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:35.214 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4835.2858ms +2017-12-20 16:04:35.264 +05:30 [Information] Request finished in 4903.9497ms 200 application/json; charset=utf-8 +2017-12-20 16:04:35.267 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:04:36.967 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" started. +2017-12-20 16:04:36.976 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 16:04:36.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 16:04:36.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 16:04:37.045 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 16:04:37.046 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 16:04:37.046 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 16:04:37.085 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" started. +2017-12-20 16:04:37.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 16:04:37.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 16:04:37.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 16:04:36.967 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" started. +2017-12-20 16:04:37.149 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" started. +2017-12-20 16:04:37.150 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" started. +2017-12-20 16:04:37.151 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 16:04:37.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 16:04:37.151 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 16:04:38.439 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 16:04:38.440 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 16:04:38.440 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 16:04:39.439 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 16:04:39.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 16:04:39.441 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 16:04:42.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:04:42.603 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:04:42.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:04:42.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:04:42.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:04:42.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:04:43.136 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:43.137 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:04:43.137 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:43.138 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:43.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5986.8254ms +2017-12-20 16:04:43.141 +05:30 [Information] Request finished in 5990.8713ms 200 application/json; charset=utf-8 +2017-12-20 16:04:43.142 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:04:43.146 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 16:04:43.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 16:04:43.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 16:04:44.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:44.748 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:04:44.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:44.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:44.750 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6305.2414ms +2017-12-20 16:04:44.752 +05:30 [Information] Request finished in 6312.4397ms 200 application/json; charset=utf-8 +2017-12-20 16:04:44.752 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:04:44.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:44.858 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:04:44.858 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:44.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:44.862 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7813.8338ms +2017-12-20 16:04:44.864 +05:30 [Information] Request finished in 7821.4081ms 200 application/json; charset=utf-8 +2017-12-20 16:04:44.865 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:04:45.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:45.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:04:45.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:45.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:45.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8270.1452ms +2017-12-20 16:04:45.255 +05:30 [Information] Request finished in 8297.0156ms 200 application/json; charset=utf-8 +2017-12-20 16:04:45.256 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:04:45.350 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:45.350 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:04:45.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:45.351 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:45.352 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 8217.7619ms +2017-12-20 16:04:45.355 +05:30 [Information] Request finished in 8266.2949ms 200 application/json; charset=utf-8 +2017-12-20 16:04:45.355 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:04:45.396 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:45.397 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:04:45.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:45.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:45.399 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5957.3969ms +2017-12-20 16:04:45.401 +05:30 [Information] Request finished in 5962.722ms 200 application/json; charset=utf-8 +2017-12-20 16:04:45.401 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" completed keep alive response. +2017-12-20 16:04:46.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:04:48.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:04:48.730 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:04:48.730 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:04:48.731 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:04:48.732 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5584.2619ms +2017-12-20 16:04:48.735 +05:30 [Information] Request finished in 5590.1558ms 200 application/json; charset=utf-8 +2017-12-20 16:04:48.736 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:05:02.318 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500443&profileId=122609171864332 0 +2017-12-20 16:05:02.318 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 16:05:02.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 16:05:05.365 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500443", "122609171864332"]) - ModelState is Valid +2017-12-20 16:05:09.267 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:09.267 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:05:09.268 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:05:09.269 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:09.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 6950.3492ms +2017-12-20 16:05:09.272 +05:30 [Information] Request finished in 6954.373ms 200 text/plain; charset=utf-8 +2017-12-20 16:05:09.272 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:05:16.758 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=1152637&userId=500443&profileId=122609171864332 0 +2017-12-20 16:05:16.758 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-12-20 16:05:16.759 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-12-20 16:05:19.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["1152637", "500443", "122609171864332"]) - ModelState is Valid +2017-12-20 16:05:28.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:28.782 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:05:28.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:05:28.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:28.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 12023.2213ms +2017-12-20 16:05:28.785 +05:30 [Information] Request finished in 12026.8032ms 200 text/plain; charset=utf-8 +2017-12-20 16:05:28.786 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:05:28.819 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 16:05:28.820 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 16:05:28.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 16:05:31.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 16:05:32.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:32.466 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:32.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:32.469 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3647.7656ms +2017-12-20 16:05:32.473 +05:30 [Information] Request finished in 3653.3469ms 200 application/json; charset=utf-8 +2017-12-20 16:05:32.474 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:05:32.487 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-20 16:05:32.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 16:05:32.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 16:05:35.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:05:37.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:37.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:37.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:37.255 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4765.6143ms +2017-12-20 16:05:37.258 +05:30 [Information] Request finished in 4772.1336ms 200 application/json; charset=utf-8 +2017-12-20 16:05:37.259 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:05:37.890 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 16:05:37.891 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 16:05:37.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 16:05:37.897 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 16:05:37.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 16:05:37.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 16:05:37.909 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 16:05:37.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 16:05:37.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 16:05:37.943 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 16:05:37.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 16:05:37.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 16:05:37.967 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 16:05:37.967 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 16:05:37.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 16:05:38.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 16:05:38.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 16:05:38.504 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 16:05:41.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:05:41.666 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:05:41.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:05:41.685 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:05:41.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:05:41.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:05:42.200 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:42.200 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:05:42.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:42.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:42.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4288.0474ms +2017-12-20 16:05:42.204 +05:30 [Information] Request finished in 4336.8979ms 200 application/json; charset=utf-8 +2017-12-20 16:05:42.205 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:05:42.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 16:05:42.211 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 16:05:42.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 16:05:42.225 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:42.225 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:05:42.226 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:42.227 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:42.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 4335.6819ms +2017-12-20 16:05:42.231 +05:30 [Information] Request finished in 4363.7512ms 200 application/json; charset=utf-8 +2017-12-20 16:05:42.232 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:05:42.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:42.353 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:05:42.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:42.354 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:42.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4453.3216ms +2017-12-20 16:05:42.357 +05:30 [Information] Request finished in 4488.2524ms 200 application/json; charset=utf-8 +2017-12-20 16:05:42.358 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:05:42.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:42.799 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:05:42.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:42.801 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:42.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4297.3537ms +2017-12-20 16:05:42.806 +05:30 [Information] Request finished in 4303.3679ms 200 application/json; charset=utf-8 +2017-12-20 16:05:42.806 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:05:42.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:42.812 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:05:42.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:42.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:42.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4868.7788ms +2017-12-20 16:05:42.819 +05:30 [Information] Request finished in 4951.4744ms 200 application/json; charset=utf-8 +2017-12-20 16:05:42.819 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" completed keep alive response. +2017-12-20 16:05:42.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:42.926 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:05:42.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:42.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:42.930 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4959.2664ms +2017-12-20 16:05:42.933 +05:30 [Information] Request finished in 4965.15ms 200 application/json; charset=utf-8 +2017-12-20 16:05:42.933 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:05:45.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:05:47.113 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:47.113 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:05:47.113 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:47.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:47.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4903.8085ms +2017-12-20 16:05:47.120 +05:30 [Information] Request finished in 4911.1449ms 200 application/json; charset=utf-8 +2017-12-20 16:05:47.120 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:05:52.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=500443 +2017-12-20 16:05:52.121 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-12-20 16:05:52.121 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-12-20 16:05:54.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:05:55.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:55.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:55.354 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:55.356 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3233.0685ms +2017-12-20 16:05:55.358 +05:30 [Information] Request finished in 3237.7827ms 200 application/json; charset=utf-8 +2017-12-20 16:05:55.359 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:05:55.363 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1152637 +2017-12-20 16:05:55.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-12-20 16:05:55.364 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-12-20 16:05:58.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:05:59.063 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:05:59.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:05:59.064 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:05:59.065 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3698.9745ms +2017-12-20 16:05:59.068 +05:30 [Information] Request finished in 3704.5729ms 200 application/json; charset=utf-8 +2017-12-20 16:05:59.069 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:05:59.552 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookAccount application/x-www-form-urlencoded 223 +2017-12-20 16:05:59.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookAccount"'. +2017-12-20 16:05:59.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" +2017-12-20 16:06:02.607 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAGBh86FLidIGYBVyRwDqRb1kBv2ZAmiIsHblR4Sw5taSiTlWJLPKEGgwZCH3AhOxZAyy2hsU26KwmkbbEvRqvkn5udRl9dmljKTav2T319pB3kAWeljSqjgX9JETK91pZAeKAzbibL9dqqbLyXJaQm1z5PBFdRQ7QBTebuJM", "1152637", "500443"]) - ModelState is Valid +2017-12-20 16:06:02.812 +05:30 [Error] {"id":"122609171864332","birthday":"12/31/1992","email":"sarahlmoss979@gmail.com","gender":"female","name":"Sarah Moss","picture":{"data":{"height":50,"is_silhouette":false,"url":"https://scontent.xx.fbcdn.net/v/t1.0-1/c19.0.50.50/p50x50/25446195_122599651865284_5396241021452362980_n.jpg?oh=7adfa8e82f31958521795fb93e456665&oe=5AB38BA1","width":50}} +2017-12-20 16:06:08.531 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:08.534 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:08.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:08.537 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" in 8982.0337ms +2017-12-20 16:06:08.540 +05:30 [Information] Request finished in 8987.5003ms 200 application/json; charset=utf-8 +2017-12-20 16:06:08.540 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:06:08.574 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 16:06:08.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 16:06:08.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 16:06:11.618 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 16:06:12.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:12.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:12.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:12.169 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3593.511ms +2017-12-20 16:06:12.172 +05:30 [Information] Request finished in 3598.3894ms 200 application/json; charset=utf-8 +2017-12-20 16:06:12.173 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" completed keep alive response. +2017-12-20 16:06:12.180 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-20 16:06:12.181 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 16:06:12.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 16:06:15.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:06:16.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:16.869 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:16.870 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:16.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4687.7154ms +2017-12-20 16:06:16.873 +05:30 [Information] Request finished in 4692.9503ms 200 application/json; charset=utf-8 +2017-12-20 16:06:16.873 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:06:17.499 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 16:06:17.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 16:06:17.501 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 16:06:17.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 16:06:17.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 16:06:17.507 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 16:06:17.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 16:06:17.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 16:06:17.509 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 16:06:17.525 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 16:06:17.525 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 16:06:17.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 16:06:17.580 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 16:06:17.581 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 16:06:17.581 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 16:06:18.171 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 16:06:18.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 16:06:18.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 16:06:21.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:06:21.327 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:06:21.328 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:06:21.342 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:06:21.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:06:21.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:06:21.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:21.916 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:21.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:21.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:21.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4408.512ms +2017-12-20 16:06:21.920 +05:30 [Information] Request finished in 4421.7998ms 200 application/json; charset=utf-8 +2017-12-20 16:06:21.921 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:06:21.925 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 16:06:21.926 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 16:06:21.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 16:06:21.931 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:21.931 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:21.931 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:21.932 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:21.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 4424.1081ms +2017-12-20 16:06:21.938 +05:30 [Information] Request finished in 4438.6228ms 200 application/json; charset=utf-8 +2017-12-20 16:06:21.938 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:06:22.026 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:22.026 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:22.026 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:22.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:22.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4502.1688ms +2017-12-20 16:06:22.030 +05:30 [Information] Request finished in 4532.5644ms 200 application/json; charset=utf-8 +2017-12-20 16:06:22.031 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:06:22.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:22.448 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:22.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:22.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:22.455 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4278.8254ms +2017-12-20 16:06:22.464 +05:30 [Information] Request finished in 4295.1443ms 200 application/json; charset=utf-8 +2017-12-20 16:06:22.465 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:06:22.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:22.484 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:22.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:22.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:22.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4986.8471ms +2017-12-20 16:06:22.491 +05:30 [Information] Request finished in 4993.2794ms 200 application/json; charset=utf-8 +2017-12-20 16:06:22.491 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:06:22.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:22.558 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:22.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:22.559 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:22.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4978.9958ms +2017-12-20 16:06:22.563 +05:30 [Information] Request finished in 4982.8264ms 200 application/json; charset=utf-8 +2017-12-20 16:06:22.563 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" completed keep alive response. +2017-12-20 16:06:24.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:06:27.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:27.423 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:27.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:06:27.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:27.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5498.2127ms +2017-12-20 16:06:27.428 +05:30 [Information] Request finished in 5502.3575ms 200 application/json; charset=utf-8 +2017-12-20 16:06:27.428 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:06:32.842 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500443&profileId=122609171864332 0 +2017-12-20 16:06:32.844 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 16:06:32.844 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 16:06:35.908 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500443", "122609171864332"]) - ModelState is Valid +2017-12-20 16:06:38.744 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:38.744 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:38.744 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:06:38.745 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:38.746 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 5901.7273ms +2017-12-20 16:06:38.748 +05:30 [Information] Request finished in 5906.3868ms 200 text/plain; charset=utf-8 +2017-12-20 16:06:38.748 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:06:45.271 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500443&profileId=122609171864332 0 +2017-12-20 16:06:45.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 16:06:45.272 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 16:06:47.666 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=1152637&userId=500443&profileId=122609171864332 0 +2017-12-20 16:06:47.666 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-12-20 16:06:47.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-12-20 16:06:48.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500443", "122609171864332"]) - ModelState is Valid +2017-12-20 16:06:49.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:49.428 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:49.429 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:06:49.430 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:49.432 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 4158.563ms +2017-12-20 16:06:49.435 +05:30 [Information] Request finished in 4164.116ms 200 text/plain; charset=utf-8 +2017-12-20 16:06:49.436 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:06:50.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["1152637", "500443", "122609171864332"]) - ModelState is Valid +2017-12-20 16:06:59.563 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:06:59.563 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:06:59.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:06:59.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:06:59.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 11897.9585ms +2017-12-20 16:06:59.567 +05:30 [Information] Request finished in 11902.158ms 200 text/plain; charset=utf-8 +2017-12-20 16:06:59.567 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:06:59.604 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 16:06:59.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 16:06:59.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 16:07:02.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 16:07:03.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:03.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:03.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:03.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3648.121ms +2017-12-20 16:07:03.257 +05:30 [Information] Request finished in 3652.3834ms 200 application/json; charset=utf-8 +2017-12-20 16:07:03.258 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:07:03.272 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-20 16:07:03.273 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 16:07:03.274 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 16:07:05.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:07:07.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:07.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:07.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:07.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3762.3969ms +2017-12-20 16:07:07.042 +05:30 [Information] Request finished in 3770.2853ms 200 application/json; charset=utf-8 +2017-12-20 16:07:07.042 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" completed keep alive response. +2017-12-20 16:07:07.711 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 16:07:07.711 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 16:07:07.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 16:07:07.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 16:07:07.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 16:07:07.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 16:07:07.739 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 16:07:07.739 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 16:07:07.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 16:07:07.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 16:07:07.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 16:07:07.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 16:07:07.830 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 16:07:07.830 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 16:07:07.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 16:07:07.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 16:07:07.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 16:07:07.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 16:07:10.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:07:10.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:07:10.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:07:10.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:07:10.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:07:10.998 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:07:11.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:11.546 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:11.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:11.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:11.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:11.554 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:11.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:11.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3813.2939ms +2017-12-20 16:07:11.560 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:11.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3827.5156ms +2017-12-20 16:07:11.570 +05:30 [Information] Request finished in 3849.7433ms 200 application/json; charset=utf-8 +2017-12-20 16:07:11.571 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:07:11.572 +05:30 [Information] Request finished in 3858.3262ms 200 application/json; charset=utf-8 +2017-12-20 16:07:11.573 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:07:11.618 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 16:07:11.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 16:07:11.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 16:07:11.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:11.682 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:11.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:11.684 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:11.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3944.1231ms +2017-12-20 16:07:11.689 +05:30 [Information] Request finished in 3976.4704ms 200 application/json; charset=utf-8 +2017-12-20 16:07:11.689 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:07:12.050 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:12.051 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:12.051 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:12.052 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:12.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4312.0472ms +2017-12-20 16:07:12.055 +05:30 [Information] Request finished in 4315.7868ms 200 application/json; charset=utf-8 +2017-12-20 16:07:12.055 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:07:12.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:12.119 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:12.119 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:12.120 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:12.121 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4288.6349ms +2017-12-20 16:07:12.127 +05:30 [Information] Request finished in 4318.756ms 200 application/json; charset=utf-8 +2017-12-20 16:07:12.128 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" completed keep alive response. +2017-12-20 16:07:12.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:12.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:12.254 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:12.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:12.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4424.1094ms +2017-12-20 16:07:12.262 +05:30 [Information] Request finished in 4452.1109ms 200 application/json; charset=utf-8 +2017-12-20 16:07:12.263 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:07:14.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:07:16.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:16.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:16.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:16.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:16.501 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4860.9461ms +2017-12-20 16:07:16.505 +05:30 [Information] Request finished in 4888.2936ms 200 application/json; charset=utf-8 +2017-12-20 16:07:16.508 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:07:19.363 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500443&profileId=134715397262944 0 +2017-12-20 16:07:19.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 16:07:19.364 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 16:07:22.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500443", "134715397262944"]) - ModelState is Valid +2017-12-20 16:07:23.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:23.484 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:23.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:07:23.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:23.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 4122.4802ms +2017-12-20 16:07:23.492 +05:30 [Information] Request finished in 4129.4098ms 200 text/plain; charset=utf-8 +2017-12-20 16:07:23.493 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:07:33.171 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500443&profileId=134715397262944 0 +2017-12-20 16:07:33.172 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 16:07:33.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 16:07:36.205 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500443", "134715397262944"]) - ModelState is Valid +2017-12-20 16:07:37.185 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 16:07:37.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 16:07:37.187 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 16:07:37.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:37.353 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:37.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:07:37.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:37.356 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 4182.9562ms +2017-12-20 16:07:37.359 +05:30 [Information] Request finished in 4187.3877ms 200 text/plain; charset=utf-8 +2017-12-20 16:07:37.359 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:07:40.225 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 16:07:41.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:41.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:41.067 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:41.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3880.3981ms +2017-12-20 16:07:41.071 +05:30 [Information] Request finished in 3886.0948ms 200 application/json; charset=utf-8 +2017-12-20 16:07:41.072 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:07:41.083 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-20 16:07:41.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 16:07:41.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 16:07:44.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:07:45.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:45.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:45.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:45.820 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4734.6607ms +2017-12-20 16:07:45.823 +05:30 [Information] Request finished in 4742.1874ms 200 application/json; charset=utf-8 +2017-12-20 16:07:45.824 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" completed keep alive response. +2017-12-20 16:07:46.319 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 16:07:46.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 16:07:46.320 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 16:07:46.320 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 16:07:46.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 16:07:46.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 16:07:46.322 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 16:07:46.323 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 16:07:46.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 16:07:46.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 16:07:46.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 16:07:46.331 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 16:07:46.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 16:07:46.385 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 16:07:46.386 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 16:07:46.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 16:07:46.386 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 16:07:46.392 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 16:07:49.522 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:07:49.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:07:49.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:07:49.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:07:49.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:07:49.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:07:50.150 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:50.151 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:50.151 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:50.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:50.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3831.792ms +2017-12-20 16:07:50.159 +05:30 [Information] Request finished in 3839.8673ms 200 application/json; charset=utf-8 +2017-12-20 16:07:50.160 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:07:50.165 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 16:07:50.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 16:07:50.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 16:07:50.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:50.186 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:50.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:50.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:50.231 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:50.231 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:50.231 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3877.516ms +2017-12-20 16:07:50.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:50.235 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:50.236 +05:30 [Information] Request finished in 3917.793ms 200 application/json; charset=utf-8 +2017-12-20 16:07:50.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3903.9534ms +2017-12-20 16:07:50.238 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:07:50.260 +05:30 [Information] Request finished in 3939.8785ms 200 application/json; charset=utf-8 +2017-12-20 16:07:50.266 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:07:50.683 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:50.683 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:50.683 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:50.684 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:50.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4291.8927ms +2017-12-20 16:07:50.688 +05:30 [Information] Request finished in 4303.3766ms 200 application/json; charset=utf-8 +2017-12-20 16:07:50.688 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:07:50.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:50.710 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:50.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:50.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:50.713 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4389.0591ms +2017-12-20 16:07:50.715 +05:30 [Information] Request finished in 4398.0389ms 200 application/json; charset=utf-8 +2017-12-20 16:07:50.716 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:07:50.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:50.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:50.802 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:50.803 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:50.804 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4417.6239ms +2017-12-20 16:07:50.807 +05:30 [Information] Request finished in 4423.8086ms 200 application/json; charset=utf-8 +2017-12-20 16:07:50.807 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" completed keep alive response. +2017-12-20 16:07:53.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:07:55.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:07:55.588 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:07:55.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:07:55.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:07:55.590 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5421.6017ms +2017-12-20 16:07:55.593 +05:30 [Information] Request finished in 5428.4899ms 200 application/json; charset=utf-8 +2017-12-20 16:07:55.593 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:07:57.320 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500443&profileId=134715397262944 0 +2017-12-20 16:07:57.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 16:07:57.321 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 16:08:00.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500443", "134715397262944"]) - ModelState is Valid +2017-12-20 16:08:02.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:08:02.200 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:08:02.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:08:02.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:08:02.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 4881.9453ms +2017-12-20 16:08:02.208 +05:30 [Information] Request finished in 4888.0025ms 200 text/plain; charset=utf-8 +2017-12-20 16:08:02.209 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" completed keep alive response. +2017-12-20 16:08:36.044 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/IsPrimaryAcc?userId=500443&profileId=134715397262944 0 +2017-12-20 16:08:36.044 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/IsPrimaryAcc"'. +2017-12-20 16:08:36.045 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" +2017-12-20 16:08:39.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" with arguments (["500443", "134715397262944"]) - ModelState is Valid +2017-12-20 16:08:40.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:08:40.238 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:08:40.238 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:08:40.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:08:40.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.IsPrimaryAcc (Api.Socioboard)" in 4194.8444ms +2017-12-20 16:08:40.242 +05:30 [Information] Request finished in 4201.7401ms 200 text/plain; charset=utf-8 +2017-12-20 16:08:40.242 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:08:46.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=500443 +2017-12-20 16:08:46.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-12-20 16:08:46.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-12-20 16:08:49.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:08:50.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:08:50.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:08:50.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:08:50.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4200.3639ms +2017-12-20 16:08:50.488 +05:30 [Information] Request finished in 4206.4705ms 200 application/json; charset=utf-8 +2017-12-20 16:08:50.489 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:08:50.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1152637 +2017-12-20 16:08:50.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-12-20 16:08:50.504 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-12-20 16:08:53.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:08:54.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:08:54.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:08:54.164 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:08:54.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3660.7215ms +2017-12-20 16:08:54.170 +05:30 [Information] Request finished in 3666.0643ms 200 application/json; charset=utf-8 +2017-12-20 16:08:54.171 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:08:54.660 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" received FIN. +2017-12-20 16:08:54.661 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" disconnecting. +2017-12-20 16:08:54.661 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" sending FIN. +2017-12-20 16:08:54.661 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" sent FIN with status "0". +2017-12-20 16:08:54.661 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookAccount application/x-www-form-urlencoded 231 +2017-12-20 16:08:54.662 +05:30 [Debug] Connection id ""0HLA7HKFQLA0U"" stopped. +2017-12-20 16:08:54.662 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookAccount"'. +2017-12-20 16:08:54.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" +2017-12-20 16:08:57.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAOhdjl9GaV5BWQvD4iHmMgHSyV9bf52dqrSvRx6wM65s3rm6fK5RZCeo8lkeHiAsYetj9JZBeXjV9usPFoZC8xPvGXLuo3UPS6LooXGUYpw6NzJ6c2E7GmfjqZByPcjkAQottRx1jZCwZC6VZArZB3oz7kZBrZBeZCVDfGO1NXZA2bCp", "1152637", "500443"]) - ModelState is Valid +2017-12-20 16:08:57.968 +05:30 [Error] {"id":"122609171864332","birthday":"12/31/1992","email":"sarahlmoss979@gmail.com","gender":"female","name":"Sarah Moss","picture":{"data":{"height":50,"is_silhouette":false,"url":"https://scontent.xx.fbcdn.net/v/t1.0-1/c19.0.50.50/p50x50/25446195_122599651865284_5396241021452362980_n.jpg?oh=7adfa8e82f31958521795fb93e456665&oe=5AB38BA1","width":50}} +2017-12-20 16:09:03.631 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:03.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:03.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:03.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" in 8974.233ms +2017-12-20 16:09:03.640 +05:30 [Information] Request finished in 8978.9681ms 200 application/json; charset=utf-8 +2017-12-20 16:09:03.640 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:09:03.671 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" received FIN. +2017-12-20 16:09:03.672 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" disconnecting. +2017-12-20 16:09:03.672 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" sending FIN. +2017-12-20 16:09:03.673 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" sent FIN with status "0". +2017-12-20 16:09:03.673 +05:30 [Debug] Connection id ""0HLA7HKFQLA0S"" stopped. +2017-12-20 16:09:03.674 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 16:09:03.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 16:09:03.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 16:09:06.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 16:09:07.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:07.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:07.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:07.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3617.9254ms +2017-12-20 16:09:07.296 +05:30 [Information] Request finished in 3623.6781ms 200 application/json; charset=utf-8 +2017-12-20 16:09:07.297 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:09:07.304 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-20 16:09:07.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 16:09:07.306 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 16:09:10.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:09:11.983 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:11.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:11.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:11.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4679.0868ms +2017-12-20 16:09:11.989 +05:30 [Information] Request finished in 4684.1724ms 200 application/json; charset=utf-8 +2017-12-20 16:09:11.990 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:09:12.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 16:09:12.792 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 16:09:12.792 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 16:09:12.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 16:09:12.794 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 16:09:12.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 16:09:12.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 16:09:12.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 16:09:12.804 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 16:09:12.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 16:09:12.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 16:09:12.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 16:09:12.904 +05:30 [Debug] Connection id ""0HLA7HKFQLA0V"" started. +2017-12-20 16:09:12.905 +05:30 [Debug] Connection id ""0HLA7HKFQLA10"" started. +2017-12-20 16:09:13.924 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 16:09:13.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 16:09:13.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 16:09:14.902 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 16:09:14.902 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 16:09:14.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 16:09:18.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:09:18.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:09:18.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:09:18.311 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:09:18.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:09:18.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:09:18.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:18.857 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:18.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:18.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:18.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6054.5665ms +2017-12-20 16:09:18.865 +05:30 [Information] Request finished in 6094.6572ms 200 application/json; charset=utf-8 +2017-12-20 16:09:18.865 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:09:18.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 16:09:18.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 16:09:18.876 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 16:09:18.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:18.940 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:18.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:18.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:18.943 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6144.0417ms +2017-12-20 16:09:18.945 +05:30 [Information] Request finished in 6152.7462ms 200 application/json; charset=utf-8 +2017-12-20 16:09:18.945 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:09:18.949 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfilesDeatails?groupId=1152637 +2017-12-20 16:09:18.949 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfilesDeatails"'. +2017-12-20 16:09:18.950 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)" +2017-12-20 16:09:19.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:19.049 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:19.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:19.050 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:19.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6255.9608ms +2017-12-20 16:09:19.054 +05:30 [Information] Request finished in 6284.519ms 200 application/json; charset=utf-8 +2017-12-20 16:09:19.055 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:09:19.059 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1152637&userId=500443 +2017-12-20 16:09:19.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2017-12-20 16:09:19.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2017-12-20 16:09:19.177 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:19.178 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:19.178 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:19.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:19.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5253.6597ms +2017-12-20 16:09:19.184 +05:30 [Information] Request finished in 5261.9066ms 200 application/json; charset=utf-8 +2017-12-20 16:09:19.184 +05:30 [Debug] Connection id ""0HLA7HKFQLA0V"" completed keep alive response. +2017-12-20 16:09:19.192 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetIncommingMessage?groupId=1152637&userId=500443 +2017-12-20 16:09:19.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetIncommingMessage"'. +2017-12-20 16:09:19.193 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" +2017-12-20 16:09:19.482 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:19.483 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:19.483 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:19.484 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:19.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6680.2164ms +2017-12-20 16:09:19.488 +05:30 [Information] Request finished in 6717.3466ms 200 application/json; charset=utf-8 +2017-12-20 16:09:19.489 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:09:19.494 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1152637&userId=500443 +2017-12-20 16:09:19.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2017-12-20 16:09:19.496 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2017-12-20 16:09:19.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:19.562 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:19.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:19.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:19.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4660.023ms +2017-12-20 16:09:19.566 +05:30 [Information] Request finished in 4663.7607ms 200 application/json; charset=utf-8 +2017-12-20 16:09:19.567 +05:30 [Debug] Connection id ""0HLA7HKFQLA10"" completed keep alive response. +2017-12-20 16:09:19.582 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1152637&userId=500443 +2017-12-20 16:09:19.583 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2017-12-20 16:09:19.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2017-12-20 16:09:21.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:09:21.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:09:22.101 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:09:22.236 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" with arguments (["1152637", "500443"]) - ModelState is Valid +2017-12-20 16:09:22.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1152637", "500443"]) - ModelState is Valid +2017-12-20 16:09:22.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:09:23.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:23.133 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:23.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:09:23.134 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:23.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" in 3941.8935ms +2017-12-20 16:09:23.142 +05:30 [Information] Request finished in 3951.5251ms 200 text/plain; charset=utf-8 +2017-12-20 16:09:23.142 +05:30 [Debug] Connection id ""0HLA7HKFQLA0V"" completed keep alive response. +2017-12-20 16:09:23.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:23.336 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:23.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:23.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:23.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 4277.6302ms +2017-12-20 16:09:23.341 +05:30 [Information] Request finished in 4283.285ms 200 application/json; charset=utf-8 +2017-12-20 16:09:23.342 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" completed keep alive response. +2017-12-20 16:09:23.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:23.947 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:23.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:09:23.948 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:23.949 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 4364.5661ms +2017-12-20 16:09:23.952 +05:30 [Information] Request finished in 4369.5627ms 200 text/plain; charset=utf-8 +2017-12-20 16:09:23.952 +05:30 [Debug] Connection id ""0HLA7HKFQLA10"" completed keep alive response. +2017-12-20 16:09:24.367 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:24.367 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:24.367 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:09:24.369 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:24.373 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 4872.6073ms +2017-12-20 16:09:24.376 +05:30 [Information] Request finished in 4881.0502ms 200 text/plain; charset=utf-8 +2017-12-20 16:09:24.376 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" completed keep alive response. +2017-12-20 16:09:24.526 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:24.526 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:24.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:24.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:09:24.559 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:24.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:09:24.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:09:24.561 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5684.1326ms +2017-12-20 16:09:24.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:09:24.567 +05:30 [Information] Request finished in 5697.4739ms 200 application/json; charset=utf-8 +2017-12-20 16:09:24.568 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" completed keep alive response. +2017-12-20 16:09:24.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)" in 5616.472ms +2017-12-20 16:09:24.573 +05:30 [Information] Request finished in 5624.241ms 200 application/json; charset=utf-8 +2017-12-20 16:09:24.574 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" completed keep alive response. +2017-12-20 16:10:29.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" received FIN. +2017-12-20 16:10:29.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA0V"" received FIN. +2017-12-20 16:10:29.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" received FIN. +2017-12-20 16:10:29.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA10"" received FIN. +2017-12-20 16:10:29.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" disconnecting. +2017-12-20 16:10:29.270 +05:30 [Debug] Connection id ""0HLA7HKFQLA0V"" disconnecting. +2017-12-20 16:10:29.270 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" received FIN. +2017-12-20 16:10:29.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA10"" disconnecting. +2017-12-20 16:10:29.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" sending FIN. +2017-12-20 16:10:29.269 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" received FIN. +2017-12-20 16:10:29.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" disconnecting. +2017-12-20 16:10:29.272 +05:30 [Debug] Connection id ""0HLA7HKFQLA0V"" sending FIN. +2017-12-20 16:10:29.270 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" disconnecting. +2017-12-20 16:10:29.273 +05:30 [Debug] Connection id ""0HLA7HKFQLA0V"" sent FIN with status "0". +2017-12-20 16:10:29.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA10"" sending FIN. +2017-12-20 16:10:29.274 +05:30 [Debug] Connection id ""0HLA7HKFQLA0V"" stopped. +2017-12-20 16:10:29.274 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" sending FIN. +2017-12-20 16:10:29.274 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" sending FIN. +2017-12-20 16:10:29.275 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" sent FIN with status "0". +2017-12-20 16:10:29.275 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" sent FIN with status "0". +2017-12-20 16:10:29.276 +05:30 [Debug] Connection id ""0HLA7HKFQLA0R"" stopped. +2017-12-20 16:10:29.275 +05:30 [Debug] Connection id ""0HLA7HKFQLA0T"" stopped. +2017-12-20 16:10:29.277 +05:30 [Debug] Connection id ""0HLA7HKFQLA10"" sent FIN with status "0". +2017-12-20 16:10:29.272 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" disconnecting. +2017-12-20 16:10:29.278 +05:30 [Debug] Connection id ""0HLA7HKFQLA10"" stopped. +2017-12-20 16:10:29.278 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" sending FIN. +2017-12-20 16:10:29.278 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" sent FIN with status "0". +2017-12-20 16:10:29.279 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" sent FIN with status "0". +2017-12-20 16:10:29.279 +05:30 [Debug] Connection id ""0HLA7HKFQLA0P"" stopped. +2017-12-20 16:10:29.279 +05:30 [Debug] Connection id ""0HLA7HKFQLA0Q"" stopped. +2017-12-20 16:15:46.268 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" started. +2017-12-20 16:15:46.269 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 16:15:46.269 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 16:15:46.270 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 16:15:49.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 16:15:53.249 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:15:53.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:15:53.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:15:53.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6980.3636ms +2017-12-20 16:15:53.253 +05:30 [Information] Request finished in 6984.3731ms 200 application/json; charset=utf-8 +2017-12-20 16:15:53.254 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" completed keep alive response. +2017-12-20 16:15:53.259 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-20 16:15:53.259 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 16:15:53.260 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 16:15:56.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:15:57.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:15:57.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:15:57.840 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:15:57.841 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4580.6318ms +2017-12-20 16:15:57.843 +05:30 [Information] Request finished in 4583.9363ms 200 application/json; charset=utf-8 +2017-12-20 16:15:57.844 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" completed keep alive response. +2017-12-20 16:16:04.431 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 16:16:04.432 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 16:16:04.432 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 16:16:04.440 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" started. +2017-12-20 16:16:04.441 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 16:16:04.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 16:16:04.441 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 16:16:04.449 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" started. +2017-12-20 16:16:04.450 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 16:16:04.450 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 16:16:04.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 16:16:04.458 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" started. +2017-12-20 16:16:04.459 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 16:16:04.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 16:16:04.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 16:16:04.652 +05:30 [Debug] Connection id ""0HLA7HKFQLA15"" started. +2017-12-20 16:16:04.658 +05:30 [Debug] Connection id ""0HLA7HKFQLA16"" started. +2017-12-20 16:16:08.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 16:16:08.796 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 16:16:08.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 16:16:09.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 16:16:09.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 16:16:09.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 16:16:12.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:16:13.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:13.003 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:13.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:13.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:13.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8544.7593ms +2017-12-20 16:16:13.008 +05:30 [Information] Request finished in 8548.9433ms 200 application/json; charset=utf-8 +2017-12-20 16:16:13.008 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" completed keep alive response. +2017-12-20 16:16:13.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfilesDeatails?groupId=1152637 +2017-12-20 16:16:13.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfilesDeatails"'. +2017-12-20 16:16:13.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)" +2017-12-20 16:16:13.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:16:13.478 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:16:13.508 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:16:13.548 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:16:13.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:16:13.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:13.885 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:13.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:13.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:13.893 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 9445.8345ms +2017-12-20 16:16:13.899 +05:30 [Information] Request finished in 9457.3321ms 200 application/json; charset=utf-8 +2017-12-20 16:16:13.900 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" completed keep alive response. +2017-12-20 16:16:13.910 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1152637&userId=500443 +2017-12-20 16:16:13.911 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2017-12-20 16:16:13.911 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2017-12-20 16:16:15.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:16:15.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:15.351 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:15.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:15.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:15.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 10919.8185ms +2017-12-20 16:16:15.356 +05:30 [Information] Request finished in 10924.5493ms 200 application/json; charset=utf-8 +2017-12-20 16:16:15.356 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" completed keep alive response. +2017-12-20 16:16:15.359 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetIncommingMessage?groupId=1152637&userId=500443 +2017-12-20 16:16:15.360 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetIncommingMessage"'. +2017-12-20 16:16:15.360 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" +2017-12-20 16:16:15.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:15.966 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:15.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:15.967 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:15.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6170.7445ms +2017-12-20 16:16:15.970 +05:30 [Information] Request finished in 6174.6355ms 200 application/json; charset=utf-8 +2017-12-20 16:16:15.971 +05:30 [Debug] Connection id ""0HLA7HKFQLA16"" completed keep alive response. +2017-12-20 16:16:15.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1152637&userId=500443 +2017-12-20 16:16:15.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2017-12-20 16:16:15.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2017-12-20 16:16:16.097 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:16.098 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:16.098 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:16.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:16.100 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7302.5708ms +2017-12-20 16:16:16.102 +05:30 [Information] Request finished in 7306.52ms 200 application/json; charset=utf-8 +2017-12-20 16:16:16.102 +05:30 [Debug] Connection id ""0HLA7HKFQLA15"" completed keep alive response. +2017-12-20 16:16:16.105 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1152637&userId=500443 +2017-12-20 16:16:16.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2017-12-20 16:16:16.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2017-12-20 16:16:16.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:16.321 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:16.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:16.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:16.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 11871.7365ms +2017-12-20 16:16:16.326 +05:30 [Information] Request finished in 11876.0098ms 200 application/json; charset=utf-8 +2017-12-20 16:16:16.326 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" completed keep alive response. +2017-12-20 16:16:16.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:16:17.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:17.529 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:17.529 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:17.530 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:17.536 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfilesDeatails (Api.Socioboard)" in 4518.622ms +2017-12-20 16:16:17.541 +05:30 [Information] Request finished in 4527.9631ms 200 application/json; charset=utf-8 +2017-12-20 16:16:17.541 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" completed keep alive response. +2017-12-20 16:16:18.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:18.101 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:18.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:18.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:18.105 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 4192.1629ms +2017-12-20 16:16:18.108 +05:30 [Information] Request finished in 4198.3787ms 200 application/json; charset=utf-8 +2017-12-20 16:16:18.108 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" completed keep alive response. +2017-12-20 16:16:18.396 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" with arguments (["1152637", "500443"]) - ModelState is Valid +2017-12-20 16:16:19.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1152637", "500443"]) - ModelState is Valid +2017-12-20 16:16:19.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:16:19.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:19.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:19.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:16:19.182 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:19.185 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" in 3822.5507ms +2017-12-20 16:16:19.187 +05:30 [Information] Request finished in 3828.2353ms 200 text/plain; charset=utf-8 +2017-12-20 16:16:19.188 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" completed keep alive response. +2017-12-20 16:16:20.135 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:20.135 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:20.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:16:20.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:20.137 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 4161.4877ms +2017-12-20 16:16:20.139 +05:30 [Information] Request finished in 4165.1576ms 200 text/plain; charset=utf-8 +2017-12-20 16:16:20.139 +05:30 [Debug] Connection id ""0HLA7HKFQLA16"" completed keep alive response. +2017-12-20 16:16:20.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:20.248 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:20.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 16:16:20.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:20.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 4143.4685ms +2017-12-20 16:16:20.254 +05:30 [Information] Request finished in 4148.3852ms 200 text/plain; charset=utf-8 +2017-12-20 16:16:20.255 +05:30 [Debug] Connection id ""0HLA7HKFQLA15"" completed keep alive response. +2017-12-20 16:16:43.520 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 16:16:43.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 16:16:43.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 16:16:45.210 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 16:16:45.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 16:16:45.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 16:16:46.570 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:16:48.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 16:16:48.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:48.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:48.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:48.748 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3535.8568ms +2017-12-20 16:16:48.750 +05:30 [Information] Request finished in 3540.4531ms 200 application/json; charset=utf-8 +2017-12-20 16:16:48.750 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" completed keep alive response. +2017-12-20 16:16:48.757 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-20 16:16:48.757 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 16:16:48.758 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 16:16:48.963 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:48.963 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:16:48.963 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:48.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:48.967 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5443.37ms +2017-12-20 16:16:48.972 +05:30 [Information] Request finished in 5452.2683ms 200 application/json; charset=utf-8 +2017-12-20 16:16:48.973 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" completed keep alive response. +2017-12-20 16:16:51.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-20 16:16:53.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:16:53.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:16:53.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:16:53.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4619.0733ms +2017-12-20 16:16:53.382 +05:30 [Information] Request finished in 4624.774ms 200 application/json; charset=utf-8 +2017-12-20 16:16:53.383 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" completed keep alive response. +2017-12-20 16:16:56.995 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-20 16:16:56.996 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-20 16:16:56.997 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 16:16:56.997 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 16:16:56.997 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 16:16:56.997 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 16:16:57.121 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-20 16:16:57.121 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 16:16:57.121 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-20 16:16:57.121 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 16:16:57.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 16:16:57.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 16:16:57.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-20 16:16:57.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 16:16:57.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 16:16:58.792 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-20 16:16:58.792 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 16:16:58.793 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 16:17:01.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:17:01.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:17:01.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:17:01.978 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:17:01.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:17:01.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-20 16:17:02.444 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:17:02.444 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:17:02.445 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:17:02.446 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:17:02.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4649.4117ms +2017-12-20 16:17:02.451 +05:30 [Information] Request finished in 4658.2338ms 200 application/json; charset=utf-8 +2017-12-20 16:17:02.451 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" completed keep alive response. +2017-12-20 16:17:02.456 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-20 16:17:02.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 16:17:02.457 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 16:17:02.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:17:02.551 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:17:02.551 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:17:02.552 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:17:02.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5430.3793ms +2017-12-20 16:17:02.556 +05:30 [Information] Request finished in 5455.7394ms 200 application/json; charset=utf-8 +2017-12-20 16:17:02.557 +05:30 [Debug] Connection id ""0HLA7HKFQLA15"" completed keep alive response. +2017-12-20 16:17:02.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:17:02.624 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:17:02.624 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:17:02.625 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:17:02.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3832.6252ms +2017-12-20 16:17:02.628 +05:30 [Information] Request finished in 3836.4723ms 200 application/json; charset=utf-8 +2017-12-20 16:17:02.629 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" completed keep alive response. +2017-12-20 16:17:03.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:17:03.037 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:17:03.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:17:03.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:17:03.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6042.0245ms +2017-12-20 16:17:03.045 +05:30 [Information] Request finished in 6048.3174ms 200 application/json; charset=utf-8 +2017-12-20 16:17:03.045 +05:30 [Debug] Connection id ""0HLA7HKFQLA16"" completed keep alive response. +2017-12-20 16:17:03.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:17:03.210 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:17:03.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:17:03.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:17:03.213 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6215.0158ms +2017-12-20 16:17:03.217 +05:30 [Information] Request finished in 6222.6211ms 200 application/json; charset=utf-8 +2017-12-20 16:17:03.217 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" completed keep alive response. +2017-12-20 16:17:04.565 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-20 16:17:04.626 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:17:04.627 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:17:04.627 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:17:04.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:17:04.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7503.2402ms +2017-12-20 16:17:04.631 +05:30 [Information] Request finished in 7530.9254ms 200 application/json; charset=utf-8 +2017-12-20 16:17:04.631 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" completed keep alive response. +2017-12-20 16:17:06.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 16:17:06.873 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 16:17:06.873 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 16:17:06.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 16:17:06.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4417.0259ms +2017-12-20 16:17:06.877 +05:30 [Information] Request finished in 4422.6514ms 200 application/json; charset=utf-8 +2017-12-20 16:17:06.878 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" completed keep alive response. +2017-12-20 16:19:38.858 +05:30 [Debug] Connection id ""0HLA7HKFQLA15"" received FIN. +2017-12-20 16:19:38.858 +05:30 [Debug] Connection id ""0HLA7HKFQLA15"" disconnecting. +2017-12-20 16:19:38.859 +05:30 [Debug] Connection id ""0HLA7HKFQLA15"" sending FIN. +2017-12-20 16:19:38.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA15"" sent FIN with status "0". +2017-12-20 16:19:38.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA15"" stopped. +2017-12-20 16:19:38.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" received FIN. +2017-12-20 16:19:38.861 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" received FIN. +2017-12-20 16:19:38.861 +05:30 [Debug] Connection id ""0HLA7HKFQLA16"" received FIN. +2017-12-20 16:19:38.861 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" received FIN. +2017-12-20 16:19:38.865 +05:30 [Debug] Connection id ""0HLA7HKFQLA16"" disconnecting. +2017-12-20 16:19:38.865 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" disconnecting. +2017-12-20 16:19:38.865 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" disconnecting. +2017-12-20 16:19:38.861 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" received FIN. +2017-12-20 16:19:38.866 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" disconnecting. +2017-12-20 16:19:38.866 +05:30 [Debug] Connection id ""0HLA7HKFQLA16"" sending FIN. +2017-12-20 16:19:38.862 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" disconnecting. +2017-12-20 16:19:38.867 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" sending FIN. +2017-12-20 16:19:38.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" sending FIN. +2017-12-20 16:19:38.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" sending FIN. +2017-12-20 16:19:38.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" sent FIN with status "0". +2017-12-20 16:19:38.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" sending FIN. +2017-12-20 16:19:38.869 +05:30 [Debug] Connection id ""0HLA7HKFQLA14"" stopped. +2017-12-20 16:19:38.870 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" sent FIN with status "0". +2017-12-20 16:19:38.869 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" sent FIN with status "0". +2017-12-20 16:19:38.870 +05:30 [Debug] Connection id ""0HLA7HKFQLA12"" stopped. +2017-12-20 16:19:38.871 +05:30 [Debug] Connection id ""0HLA7HKFQLA11"" stopped. +2017-12-20 16:19:38.871 +05:30 [Debug] Connection id ""0HLA7HKFQLA16"" sent FIN with status "0". +2017-12-20 16:19:38.871 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" sent FIN with status "0". +2017-12-20 16:19:38.872 +05:30 [Debug] Connection id ""0HLA7HKFQLA16"" stopped. +2017-12-20 16:19:38.872 +05:30 [Debug] Connection id ""0HLA7HKFQLA13"" stopped. +2017-12-20 17:40:06.720 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" started. +2017-12-20 17:40:06.723 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 17:40:06.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 17:40:06.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 17:40:09.772 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 17:40:11.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:40:11.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:40:11.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:40:11.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4980.1813ms +2017-12-20 17:40:11.709 +05:30 [Information] Request finished in 4986.8531ms 200 application/json; charset=utf-8 +2017-12-20 17:40:11.709 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" completed keep alive response. +2017-12-20 17:40:12.944 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 17:40:12.945 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 17:40:12.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 17:40:14.485 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" started. +2017-12-20 17:40:14.486 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 17:40:14.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 17:40:14.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 17:40:16.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 17:40:16.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:40:16.550 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:40:16.551 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:40:16.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3605.6748ms +2017-12-20 17:40:16.558 +05:30 [Information] Request finished in 3613.5299ms 200 application/json; charset=utf-8 +2017-12-20 17:40:16.558 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" completed keep alive response. +2017-12-20 17:40:16.624 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 17:40:16.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 17:40:16.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 17:40:17.560 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 17:40:18.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:40:18.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:40:18.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:40:18.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3589.9521ms +2017-12-20 17:40:18.080 +05:30 [Information] Request finished in 3594.161ms 200 application/json; charset=utf-8 +2017-12-20 17:40:18.080 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" completed keep alive response. +2017-12-20 17:40:19.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 17:40:20.207 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:40:20.208 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:40:20.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:40:20.210 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3584.2193ms +2017-12-20 17:40:20.216 +05:30 [Information] Request finished in 3591.0845ms 200 application/json; charset=utf-8 +2017-12-20 17:40:20.217 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" completed keep alive response. +2017-12-20 17:40:20.252 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 17:40:20.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 17:40:20.253 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 17:40:23.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 17:40:23.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:40:23.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:40:23.824 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:40:23.827 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3571.0634ms +2017-12-20 17:40:23.829 +05:30 [Information] Request finished in 3585.8546ms 200 application/json; charset=utf-8 +2017-12-20 17:40:23.830 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" completed keep alive response. +2017-12-20 17:40:37.546 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 17:40:37.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 17:40:37.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 17:40:40.570 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 17:40:41.086 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:40:41.086 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:40:41.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:40:41.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3541.6172ms +2017-12-20 17:40:41.092 +05:30 [Information] Request finished in 3546.58ms 200 application/json; charset=utf-8 +2017-12-20 17:40:41.093 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" completed keep alive response. +2017-12-20 17:40:41.107 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-20 17:40:41.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-20 17:40:41.108 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-20 17:40:43.232 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-20 17:40:44.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:40:44.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:40:44.864 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:40:44.865 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3756.657ms +2017-12-20 17:40:44.867 +05:30 [Information] Request finished in 3763.1284ms 200 application/json; charset=utf-8 +2017-12-20 17:40:44.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" completed keep alive response. +2017-12-20 17:40:44.902 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 17:40:44.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 17:40:44.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 17:40:47.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 17:40:48.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:40:48.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:40:48.493 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:40:48.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3588.8089ms +2017-12-20 17:40:48.497 +05:30 [Information] Request finished in 3595.4936ms 200 application/json; charset=utf-8 +2017-12-20 17:40:48.498 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" completed keep alive response. +2017-12-20 17:40:48.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-20 17:40:48.502 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 17:40:48.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 17:40:50.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-20 17:40:52.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:40:52.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:40:52.158 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:40:52.160 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3657.0295ms +2017-12-20 17:40:52.164 +05:30 [Information] Request finished in 3662.2588ms 200 application/json; charset=utf-8 +2017-12-20 17:40:52.165 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" completed keep alive response. +2017-12-20 17:40:54.354 +05:30 [Debug] Connection id ""0HLA7HKFQLA19"" started. +2017-12-20 17:40:54.355 +05:30 [Debug] Connection id ""0HLA7HKFQLA1A"" started. +2017-12-20 17:40:54.356 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-20 17:40:54.358 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 17:40:54.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 17:40:54.358 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-20 17:40:54.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 17:40:54.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 17:40:54.389 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-20 17:40:54.366 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-20 17:40:54.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 17:40:54.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 17:40:54.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 17:40:54.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 17:40:54.691 +05:30 [Debug] Connection id ""0HLA7HKFQLA1B"" started. +2017-12-20 17:40:54.692 +05:30 [Debug] Connection id ""0HLA7HKFQLA1C"" started. +2017-12-20 17:40:55.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-20 17:40:55.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 17:40:55.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 17:40:56.638 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-20 17:40:56.639 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 17:40:56.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 17:40:59.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 17:40:59.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 17:40:59.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 17:40:59.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 17:40:59.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 17:40:59.927 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 17:41:00.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:41:00.985 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 17:41:00.985 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:41:00.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:41:00.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4347.8099ms +2017-12-20 17:41:00.989 +05:30 [Information] Request finished in 4350.921ms 200 application/json; charset=utf-8 +2017-12-20 17:41:00.989 +05:30 [Debug] Connection id ""0HLA7HKFQLA1C"" completed keep alive response. +2017-12-20 17:41:00.992 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-20 17:41:00.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 17:41:00.993 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 17:41:01.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:41:01.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:41:01.984 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 17:41:01.985 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 17:41:01.985 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:41:01.985 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:41:01.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:41:01.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:41:01.988 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7593.2665ms +2017-12-20 17:41:01.991 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7630.1489ms +2017-12-20 17:41:01.991 +05:30 [Information] Request finished in 7635.0839ms 200 application/json; charset=utf-8 +2017-12-20 17:41:01.993 +05:30 [Debug] Connection id ""0HLA7HKFQLA19"" completed keep alive response. +2017-12-20 17:41:01.994 +05:30 [Information] Request finished in 7659.0225ms 200 application/json; charset=utf-8 +2017-12-20 17:41:01.995 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" completed keep alive response. +2017-12-20 17:41:02.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:41:02.087 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 17:41:02.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:41:02.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:41:02.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7695.4495ms +2017-12-20 17:41:02.092 +05:30 [Information] Request finished in 7735.5054ms 200 application/json; charset=utf-8 +2017-12-20 17:41:02.092 +05:30 [Debug] Connection id ""0HLA7HKFQLA1A"" completed keep alive response. +2017-12-20 17:41:02.327 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:41:02.327 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 17:41:02.327 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:41:02.328 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:41:02.330 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7938.8665ms +2017-12-20 17:41:02.332 +05:30 [Information] Request finished in 7997.5962ms 200 application/json; charset=utf-8 +2017-12-20 17:41:02.333 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" completed keep alive response. +2017-12-20 17:41:02.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:41:02.368 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 17:41:02.369 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:41:02.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:41:02.371 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6716.2257ms +2017-12-20 17:41:02.374 +05:30 [Information] Request finished in 6725.954ms 200 application/json; charset=utf-8 +2017-12-20 17:41:02.374 +05:30 [Debug] Connection id ""0HLA7HKFQLA1B"" completed keep alive response. +2017-12-20 17:41:04.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 17:41:06.461 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:41:06.461 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 17:41:06.461 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 17:41:06.462 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:41:06.463 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5468.4273ms +2017-12-20 17:41:06.466 +05:30 [Information] Request finished in 5473.0843ms 200 application/json; charset=utf-8 +2017-12-20 17:41:06.466 +05:30 [Debug] Connection id ""0HLA7HKFQLA1C"" completed keep alive response. +2017-12-20 17:42:08.857 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" received FIN. +2017-12-20 17:42:08.857 +05:30 [Debug] Connection id ""0HLA7HKFQLA19"" received FIN. +2017-12-20 17:42:08.857 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" disconnecting. +2017-12-20 17:42:08.858 +05:30 [Debug] Connection id ""0HLA7HKFQLA19"" disconnecting. +2017-12-20 17:42:08.858 +05:30 [Debug] Connection id ""0HLA7HKFQLA19"" sending FIN. +2017-12-20 17:42:08.858 +05:30 [Debug] Connection id ""0HLA7HKFQLA19"" sent FIN with status "0". +2017-12-20 17:42:08.857 +05:30 [Debug] Connection id ""0HLA7HKFQLA1A"" received FIN. +2017-12-20 17:42:08.859 +05:30 [Debug] Connection id ""0HLA7HKFQLA19"" stopped. +2017-12-20 17:42:08.859 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" sending FIN. +2017-12-20 17:42:08.859 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" received FIN. +2017-12-20 17:42:08.859 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" sent FIN with status "0". +2017-12-20 17:42:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA1B"" received FIN. +2017-12-20 17:42:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA18"" stopped. +2017-12-20 17:42:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA1C"" received FIN. +2017-12-20 17:42:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" disconnecting. +2017-12-20 17:42:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA1A"" disconnecting. +2017-12-20 17:42:08.863 +05:30 [Debug] Connection id ""0HLA7HKFQLA1C"" disconnecting. +2017-12-20 17:42:08.865 +05:30 [Debug] Connection id ""0HLA7HKFQLA1A"" sending FIN. +2017-12-20 17:42:08.866 +05:30 [Debug] Connection id ""0HLA7HKFQLA1C"" sending FIN. +2017-12-20 17:42:08.865 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" sending FIN. +2017-12-20 17:42:08.866 +05:30 [Debug] Connection id ""0HLA7HKFQLA1C"" sent FIN with status "0". +2017-12-20 17:42:08.866 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" sent FIN with status "0". +2017-12-20 17:42:08.866 +05:30 [Debug] Connection id ""0HLA7HKFQLA1C"" stopped. +2017-12-20 17:42:08.867 +05:30 [Debug] Connection id ""0HLA7HKFQLA17"" stopped. +2017-12-20 17:42:08.867 +05:30 [Debug] Connection id ""0HLA7HKFQLA1A"" sent FIN with status "0". +2017-12-20 17:42:08.867 +05:30 [Debug] Connection id ""0HLA7HKFQLA1A"" stopped. +2017-12-20 17:42:08.860 +05:30 [Debug] Connection id ""0HLA7HKFQLA1B"" disconnecting. +2017-12-20 17:42:08.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA1B"" sending FIN. +2017-12-20 17:42:08.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA1B"" sent FIN with status "0". +2017-12-20 17:42:08.868 +05:30 [Debug] Connection id ""0HLA7HKFQLA1B"" stopped. +2017-12-20 17:46:22.552 +05:30 [Debug] Connection id ""0HLA7HKFQLA1D"" started. +2017-12-20 17:46:22.553 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ScheduleMessage?profileId=page_1452799044811364&userId=48&message=none&scheduledatetime=Wed,%2020%20Dec%202017%2013:16:00%20GMT&localscheduletime=12/20/2017%2018:46&imagePath= multipart/form-data; boundary=----WebKitFormBoundary6WDJuz8PGPBkMPLz 152 +2017-12-20 17:46:22.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ScheduleMessage"'. +2017-12-20 17:46:22.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" +2017-12-20 17:46:25.674 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" with arguments (["none", "page_1452799044811364", "48", "", "", "Wed, 20 Dec 2017 13:16:00 GMT", "12/20/2017 18:46", "", "
hhhBTC", "NoMedia"]) - ModelState is Valid +2017-12-20 17:46:28.217 +05:30 [Error] ScheduleMessageHelperscheduleTime>>>>Wed, 20 Dec 2017 13:16:00 GMT +2017-12-20 17:46:29.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:46:29.864 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 17:46:29.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 17:46:29.866 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:46:29.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ScheduleMessage (Api.Socioboard)" in 7280.391ms +2017-12-20 17:46:29.871 +05:30 [Information] Request finished in 7316.9238ms 200 text/plain; charset=utf-8 +2017-12-20 17:46:29.871 +05:30 [Debug] Connection id ""0HLA7HKFQLA1D"" completed keep alive response. +2017-12-20 17:46:54.172 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=fb_1452799044811364&userId=48&message=%23Tiger&shortnerstatus=0&mediaType=0 multipart/form-data; boundary=----WebKitFormBoundaryUJCYO8uon7ZthMAY 145 +2017-12-20 17:46:54.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-20 17:46:54.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-20 17:46:57.236 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["#Tiger", "fb_1452799044811364", "48", "", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-20 17:46:57.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 17:46:57.252 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 17:46:57.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-20 17:46:57.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 17:46:57.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 3086.4995ms +2017-12-20 17:46:57.270 +05:30 [Information] Request finished in 3099.0676ms 200 text/plain; charset=utf-8 +2017-12-20 17:46:57.271 +05:30 [Debug] Connection id ""0HLA7HKFQLA1D"" completed keep alive response. +2017-12-20 18:47:26.882 +05:30 [Debug] Hosting starting +2017-12-20 18:47:27.349 +05:30 [Debug] Hosting started +2017-12-20 18:47:27.387 +05:30 [Debug] Connection id ""0HLA7LG23L3R7"" started. +2017-12-20 18:47:27.387 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" started. +2017-12-20 18:47:27.619 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-20 18:47:27.620 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-20 18:47:27.700 +05:30 [Information] Request finished in 117.3483ms 200 +2017-12-20 18:47:27.763 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" completed keep alive response. +2017-12-20 18:47:28.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-20 18:47:28.975 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"ecd7194c-93ac-4a50-a28a-2f2dd17a1dbf"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-20 18:47:29.117 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-20 18:47:29.249 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-20 18:47:29.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-20 18:47:29.297 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:47:29.304 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:47:29.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:47:29.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 536.4881ms +2017-12-20 18:47:29.717 +05:30 [Information] Request finished in 2152.8535ms 200 application/json; charset=utf-8 +2017-12-20 18:47:29.719 +05:30 [Debug] Connection id ""0HLA7LG23L3R7"" completed keep alive response. +2017-12-20 18:47:29.821 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-20 18:47:29.823 +05:30 [Debug] Request did not match any routes. +2017-12-20 18:47:29.840 +05:30 [Debug] The request path "" does not match the path filter +2017-12-20 18:47:29.843 +05:30 [Information] Request finished in 21.5465ms 404 +2017-12-20 18:47:29.843 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" completed keep alive response. +2017-12-20 18:47:29.917 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 18:47:29.917 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 18:47:29.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 18:47:33.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 18:47:40.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:47:40.557 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:47:40.558 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:47:40.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10641.1349ms +2017-12-20 18:47:40.578 +05:30 [Information] Request finished in 10657.5719ms 200 application/json; charset=utf-8 +2017-12-20 18:47:40.579 +05:30 [Debug] Connection id ""0HLA7LG23L3R7"" completed keep alive response. +2017-12-20 18:47:55.079 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 18:47:55.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 18:47:55.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 18:47:58.122 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 18:47:58.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:47:58.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:47:58.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:47:58.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3626.6186ms +2017-12-20 18:47:58.711 +05:30 [Information] Request finished in 3631.2162ms 200 application/json; charset=utf-8 +2017-12-20 18:47:58.711 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" completed keep alive response. +2017-12-20 18:47:58.750 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 18:47:58.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 18:47:58.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 18:48:00.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 18:48:01.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:48:01.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:48:01.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:48:01.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2676.619ms +2017-12-20 18:48:01.431 +05:30 [Information] Request finished in 2683.7276ms 200 application/json; charset=utf-8 +2017-12-20 18:48:01.432 +05:30 [Debug] Connection id ""0HLA7LG23L3R7"" completed keep alive response. +2017-12-20 18:48:01.486 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 18:48:01.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 18:48:01.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 18:48:03.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 18:48:04.175 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:48:04.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:48:04.176 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:48:04.178 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2689.5494ms +2017-12-20 18:48:04.181 +05:30 [Information] Request finished in 2695.5055ms 200 application/json; charset=utf-8 +2017-12-20 18:48:04.181 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" completed keep alive response. +2017-12-20 18:49:17.636 +05:30 [Debug] Connection id ""0HLA7LG23L3R7"" received FIN. +2017-12-20 18:49:17.636 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" received FIN. +2017-12-20 18:49:17.638 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" disconnecting. +2017-12-20 18:49:17.638 +05:30 [Debug] Connection id ""0HLA7LG23L3R7"" disconnecting. +2017-12-20 18:49:17.639 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" sending FIN. +2017-12-20 18:49:17.640 +05:30 [Debug] Connection id ""0HLA7LG23L3R7"" sending FIN. +2017-12-20 18:49:17.653 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" sent FIN with status "0". +2017-12-20 18:49:17.653 +05:30 [Debug] Connection id ""0HLA7LG23L3R7"" sent FIN with status "0". +2017-12-20 18:49:17.657 +05:30 [Debug] Connection id ""0HLA7LG23L3R7"" stopped. +2017-12-20 18:49:17.657 +05:30 [Debug] Connection id ""0HLA7LG23L3R8"" stopped. +2017-12-20 18:50:30.552 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" started. +2017-12-20 18:50:30.574 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 18:50:30.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 18:50:30.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 18:50:33.628 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 18:50:34.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:50:34.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:50:34.226 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:50:34.228 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3651.3294ms +2017-12-20 18:50:34.230 +05:30 [Information] Request finished in 3675.9515ms 200 application/json; charset=utf-8 +2017-12-20 18:50:34.230 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" completed keep alive response. +2017-12-20 18:50:38.538 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 18:50:38.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 18:50:38.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 18:50:41.593 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 18:50:42.174 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:50:42.175 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:50:42.176 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:50:42.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3636.7491ms +2017-12-20 18:50:42.179 +05:30 [Information] Request finished in 3641.2369ms 200 application/json; charset=utf-8 +2017-12-20 18:50:42.180 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" completed keep alive response. +2017-12-20 18:50:42.205 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-20 18:50:42.206 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-20 18:50:42.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-20 18:50:45.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-20 18:50:47.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:50:47.561 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:50:47.562 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:50:47.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5464.6006ms +2017-12-20 18:50:47.676 +05:30 [Information] Request finished in 5470.5011ms 200 application/json; charset=utf-8 +2017-12-20 18:50:47.676 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" completed keep alive response. +2017-12-20 18:50:48.021 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 18:50:48.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 18:50:48.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 18:50:51.071 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 18:50:51.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:50:51.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:50:51.659 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:50:51.660 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3637.3167ms +2017-12-20 18:50:51.663 +05:30 [Information] Request finished in 3641.491ms 200 application/json; charset=utf-8 +2017-12-20 18:50:51.663 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" completed keep alive response. +2017-12-20 18:50:51.724 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-20 18:50:51.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 18:50:51.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 18:50:54.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-20 18:50:56.708 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:50:56.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:50:56.710 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:50:56.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5029.5136ms +2017-12-20 18:50:56.760 +05:30 [Information] Request finished in 5036.4475ms 200 application/json; charset=utf-8 +2017-12-20 18:50:56.761 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" completed keep alive response. +2017-12-20 18:50:58.389 +05:30 [Debug] Connection id ""0HLA7LG23L3RA"" started. +2017-12-20 18:50:58.389 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-20 18:50:58.390 +05:30 [Debug] Connection id ""0HLA7LG23L3RC"" started. +2017-12-20 18:50:58.390 +05:30 [Debug] Connection id ""0HLA7LG23L3RB"" started. +2017-12-20 18:50:58.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 18:50:58.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-20 18:50:58.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-20 18:50:58.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 18:50:58.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 18:50:58.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 18:50:58.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 18:50:58.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 18:50:58.419 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-20 18:50:58.419 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 18:50:58.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 18:50:58.536 +05:30 [Debug] Connection id ""0HLA7LG23L3RD"" started. +2017-12-20 18:50:58.536 +05:30 [Debug] Connection id ""0HLA7LG23L3RE"" started. +2017-12-20 18:50:58.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-20 18:50:58.540 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 18:50:58.541 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-20 18:50:58.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 18:50:58.542 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 18:50:58.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 18:51:00.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:51:00.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:51:01.457 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:51:01.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:51:01.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:51:01.600 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:51:01.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:51:01.965 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:51:01.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:51:01.966 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:51:01.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3437.0588ms +2017-12-20 18:51:01.995 +05:30 [Information] Request finished in 3452.2857ms 200 application/json; charset=utf-8 +2017-12-20 18:51:01.996 +05:30 [Debug] Connection id ""0HLA7LG23L3RD"" completed keep alive response. +2017-12-20 18:51:02.003 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-20 18:51:02.004 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 18:51:02.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 18:51:03.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:51:03.314 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:51:03.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:51:03.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:51:03.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4770.916ms +2017-12-20 18:51:03.318 +05:30 [Information] Request finished in 4778.1625ms 200 application/json; charset=utf-8 +2017-12-20 18:51:03.319 +05:30 [Debug] Connection id ""0HLA7LG23L3RE"" completed keep alive response. +2017-12-20 18:51:03.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:51:03.510 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:51:03.510 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:51:03.511 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:51:03.515 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5097.7604ms +2017-12-20 18:51:03.517 +05:30 [Information] Request finished in 5128.1265ms 200 application/json; charset=utf-8 +2017-12-20 18:51:03.517 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" completed keep alive response. +2017-12-20 18:51:03.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:51:03.956 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:51:03.956 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:51:03.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:51:04.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5564.4271ms +2017-12-20 18:51:04.044 +05:30 [Information] Request finished in 5629.9081ms 200 application/json; charset=utf-8 +2017-12-20 18:51:04.044 +05:30 [Debug] Connection id ""0HLA7LG23L3RB"" completed keep alive response. +2017-12-20 18:51:04.390 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:51:04.390 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:51:04.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:51:04.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:51:04.407 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5990.4648ms +2017-12-20 18:51:04.410 +05:30 [Information] Request finished in 6019.5153ms 200 application/json; charset=utf-8 +2017-12-20 18:51:04.410 +05:30 [Debug] Connection id ""0HLA7LG23L3RA"" completed keep alive response. +2017-12-20 18:51:04.591 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:51:04.591 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:51:04.592 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:51:04.594 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:51:04.602 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6179.2039ms +2017-12-20 18:51:04.611 +05:30 [Information] Request finished in 6218.2947ms 200 application/json; charset=utf-8 +2017-12-20 18:51:04.611 +05:30 [Debug] Connection id ""0HLA7LG23L3RC"" completed keep alive response. +2017-12-20 18:51:05.062 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:51:07.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:51:07.524 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:51:07.524 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:51:07.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:51:07.586 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5579.0591ms +2017-12-20 18:51:07.590 +05:30 [Information] Request finished in 5585.8254ms 200 application/json; charset=utf-8 +2017-12-20 18:51:07.590 +05:30 [Debug] Connection id ""0HLA7LG23L3RD"" completed keep alive response. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RE"" received FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RB"" received FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RA"" received FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" received FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RE"" disconnecting. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RC"" received FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RB"" disconnecting. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RA"" disconnecting. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RD"" received FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" disconnecting. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RC"" disconnecting. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RD"" disconnecting. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RB"" sending FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RE"" sending FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" sending FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RA"" sending FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RC"" sending FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RD"" sending FIN. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RC"" sent FIN with status "0". +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RD"" sent FIN with status "0". +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RC"" stopped. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RD"" stopped. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" sent FIN with status "0". +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RA"" sent FIN with status "0". +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3R9"" stopped. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RA"" stopped. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RE"" sent FIN with status "0". +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RB"" sent FIN with status "0". +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RE"" stopped. +2017-12-20 18:52:57.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RB"" stopped. +2017-12-20 18:53:54.094 +05:30 [Debug] Connection id ""0HLA7LG23L3RF"" started. +2017-12-20 18:53:54.099 +05:30 [Debug] Connection id ""0HLA7LG23L3RG"" started. +2017-12-20 18:53:54.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-20 18:53:54.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-20 18:53:54.112 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-20 18:53:54.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetFeeds?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-20 18:53:54.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetFeeds"'. +2017-12-20 18:53:54.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" +2017-12-20 18:53:57.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-20 18:53:57.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-20 18:54:02.862 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:54:02.863 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:54:02.863 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:54:02.864 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:54:02.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:54:02.912 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:54:02.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:54:02.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:54:02.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" in 8800.4925ms +2017-12-20 18:54:02.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 8820.4943ms +2017-12-20 18:54:02.996 +05:30 [Information] Request finished in 8879.8218ms 200 application/json; charset=utf-8 +2017-12-20 18:54:02.997 +05:30 [Information] Request finished in 8874.4793ms 200 application/json; charset=utf-8 +2017-12-20 18:54:02.997 +05:30 [Debug] Connection id ""0HLA7LG23L3RF"" completed keep alive response. +2017-12-20 18:54:02.997 +05:30 [Debug] Connection id ""0HLA7LG23L3RG"" completed keep alive response. +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RG"" received FIN. +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RF"" received FIN. +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RG"" disconnecting. +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RF"" disconnecting. +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RF"" sending FIN. +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RG"" sending FIN. +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RF"" sent FIN with status "0". +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RG"" sent FIN with status "0". +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RF"" stopped. +2017-12-20 18:56:37.641 +05:30 [Debug] Connection id ""0HLA7LG23L3RG"" stopped. +2017-12-20 18:59:00.611 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" started. +2017-12-20 18:59:00.613 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 18:59:00.616 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 18:59:00.616 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 18:59:03.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 18:59:05.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:05.616 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:05.617 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:05.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5000.6484ms +2017-12-20 18:59:05.620 +05:30 [Information] Request finished in 5007.7748ms 200 application/json; charset=utf-8 +2017-12-20 18:59:05.621 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" completed keep alive response. +2017-12-20 18:59:05.629 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-20 18:59:05.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 18:59:05.630 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 18:59:08.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-20 18:59:10.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:10.283 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:10.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:10.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4654.4329ms +2017-12-20 18:59:10.290 +05:30 [Information] Request finished in 4661.8554ms 200 application/json; charset=utf-8 +2017-12-20 18:59:10.291 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" completed keep alive response. +2017-12-20 18:59:13.773 +05:30 [Debug] Connection id ""0HLA7LG23L3RI"" started. +2017-12-20 18:59:13.775 +05:30 [Debug] Connection id ""0HLA7LG23L3RK"" started. +2017-12-20 18:59:13.775 +05:30 [Debug] Connection id ""0HLA7LG23L3RJ"" started. +2017-12-20 18:59:13.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-20 18:59:13.778 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 18:59:13.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 18:59:13.782 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-20 18:59:13.784 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 18:59:13.784 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 18:59:13.789 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-20 18:59:13.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 18:59:13.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 18:59:13.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-20 18:59:13.842 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 18:59:13.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 18:59:14.018 +05:30 [Debug] Connection id ""0HLA7LG23L3RL"" started. +2017-12-20 18:59:14.018 +05:30 [Debug] Connection id ""0HLA7LG23L3RM"" started. +2017-12-20 18:59:14.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-20 18:59:14.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 18:59:14.035 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 18:59:14.052 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-20 18:59:14.053 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 18:59:14.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 18:59:16.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:59:16.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:59:17.027 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:59:17.131 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:59:17.199 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:59:17.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 18:59:17.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:17.978 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:59:17.978 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:17.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:17.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4131.1119ms +2017-12-20 18:59:17.982 +05:30 [Information] Request finished in 4203.5072ms 200 application/json; charset=utf-8 +2017-12-20 18:59:17.982 +05:30 [Debug] Connection id ""0HLA7LG23L3RJ"" completed keep alive response. +2017-12-20 18:59:17.986 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetFeeds?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-20 18:59:17.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetFeeds"'. +2017-12-20 18:59:17.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" +2017-12-20 18:59:19.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:19.033 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:59:19.034 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:19.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:19.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5251.7106ms +2017-12-20 18:59:19.041 +05:30 [Information] Request finished in 5264.5577ms 200 application/json; charset=utf-8 +2017-12-20 18:59:19.042 +05:30 [Debug] Connection id ""0HLA7LG23L3RK"" completed keep alive response. +2017-12-20 18:59:19.048 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-20 18:59:19.049 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-20 18:59:19.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-20 18:59:19.481 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:19.482 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:59:19.482 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:19.485 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:19.489 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5705.0531ms +2017-12-20 18:59:19.492 +05:30 [Information] Request finished in 5717.7341ms 200 application/json; charset=utf-8 +2017-12-20 18:59:19.493 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" completed keep alive response. +2017-12-20 18:59:19.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:19.845 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:59:19.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:19.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:19.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5782.0352ms +2017-12-20 18:59:19.849 +05:30 [Information] Request finished in 5803.2723ms 200 application/json; charset=utf-8 +2017-12-20 18:59:19.849 +05:30 [Debug] Connection id ""0HLA7LG23L3RM"" completed keep alive response. +2017-12-20 18:59:19.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:19.969 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:59:19.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:19.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:19.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5936.8745ms +2017-12-20 18:59:19.978 +05:30 [Information] Request finished in 5957.9959ms 200 application/json; charset=utf-8 +2017-12-20 18:59:19.978 +05:30 [Debug] Connection id ""0HLA7LG23L3RL"" completed keep alive response. +2017-12-20 18:59:20.215 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:20.216 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:59:20.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:20.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:20.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6428.5984ms +2017-12-20 18:59:20.224 +05:30 [Information] Request finished in 6447.066ms 200 application/json; charset=utf-8 +2017-12-20 18:59:20.224 +05:30 [Debug] Connection id ""0HLA7LG23L3RI"" completed keep alive response. +2017-12-20 18:59:21.026 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-20 18:59:21.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-20 18:59:21.784 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:21.784 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:59:21.784 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:21.785 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:21.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2736.2288ms +2017-12-20 18:59:21.790 +05:30 [Information] Request finished in 2742.5584ms 200 application/json; charset=utf-8 +2017-12-20 18:59:21.791 +05:30 [Debug] Connection id ""0HLA7LG23L3RK"" completed keep alive response. +2017-12-20 18:59:22.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 18:59:22.271 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 18:59:22.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 18:59:22.272 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 18:59:22.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" in 4285.1025ms +2017-12-20 18:59:22.277 +05:30 [Information] Request finished in 4291.4831ms 200 application/json; charset=utf-8 +2017-12-20 18:59:22.277 +05:30 [Debug] Connection id ""0HLA7LG23L3RJ"" completed keep alive response. +2017-12-20 19:00:06.955 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 19:00:06.956 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 19:00:06.956 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 19:00:10.026 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 19:00:10.615 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:10.615 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:10.617 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:10.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3661.4042ms +2017-12-20 19:00:10.621 +05:30 [Information] Request finished in 3666.826ms 200 application/json; charset=utf-8 +2017-12-20 19:00:10.622 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" completed keep alive response. +2017-12-20 19:00:10.635 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-20 19:00:10.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 19:00:10.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 19:00:13.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-20 19:00:15.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:15.337 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:15.338 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:15.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4700.9354ms +2017-12-20 19:00:15.343 +05:30 [Information] Request finished in 4713.3704ms 200 application/json; charset=utf-8 +2017-12-20 19:00:15.344 +05:30 [Debug] Connection id ""0HLA7LG23L3RM"" completed keep alive response. +2017-12-20 19:00:18.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-20 19:00:18.717 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 19:00:18.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 19:00:18.742 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-20 19:00:18.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 19:00:18.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 19:00:18.775 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-20 19:00:18.775 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 19:00:18.776 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 19:00:18.821 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-20 19:00:18.822 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 19:00:18.823 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 19:00:18.823 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-20 19:00:18.825 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 19:00:18.826 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 19:00:18.831 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-20 19:00:18.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 19:00:18.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 19:00:20.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:00:21.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:00:21.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:00:21.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:00:21.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:00:22.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:00:22.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:22.076 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:00:22.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:22.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:22.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3251.7933ms +2017-12-20 19:00:22.080 +05:30 [Information] Request finished in 3264.8624ms 200 application/json; charset=utf-8 +2017-12-20 19:00:22.081 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" completed keep alive response. +2017-12-20 19:00:22.087 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetFeeds?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-20 19:00:22.088 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetFeeds"'. +2017-12-20 19:00:22.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" +2017-12-20 19:00:22.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:22.464 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:00:22.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:22.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:22.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3690.372ms +2017-12-20 19:00:22.472 +05:30 [Information] Request finished in 3816.3526ms 200 application/json; charset=utf-8 +2017-12-20 19:00:22.472 +05:30 [Debug] Connection id ""0HLA7LG23L3RI"" completed keep alive response. +2017-12-20 19:00:22.475 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-20 19:00:22.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-20 19:00:22.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-20 19:00:22.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:22.602 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:00:22.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:22.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:22.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3887.4007ms +2017-12-20 19:00:22.608 +05:30 [Information] Request finished in 3962.8321ms 200 application/json; charset=utf-8 +2017-12-20 19:00:22.609 +05:30 [Debug] Connection id ""0HLA7LG23L3RL"" completed keep alive response. +2017-12-20 19:00:22.983 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:22.984 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:00:22.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:22.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:22.988 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4242.5635ms +2017-12-20 19:00:22.990 +05:30 [Information] Request finished in 4334.3284ms 200 application/json; charset=utf-8 +2017-12-20 19:00:22.991 +05:30 [Debug] Connection id ""0HLA7LG23L3RJ"" completed keep alive response. +2017-12-20 19:00:23.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:23.283 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:00:23.283 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:23.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:23.285 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4452.4714ms +2017-12-20 19:00:23.296 +05:30 [Information] Request finished in 4463.6981ms 200 application/json; charset=utf-8 +2017-12-20 19:00:23.296 +05:30 [Debug] Connection id ""0HLA7LG23L3RM"" completed keep alive response. +2017-12-20 19:00:23.538 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:23.539 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:00:23.539 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:23.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:23.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 4718.4043ms +2017-12-20 19:00:23.545 +05:30 [Information] Request finished in 4885.1966ms 200 application/json; charset=utf-8 +2017-12-20 19:00:23.545 +05:30 [Debug] Connection id ""0HLA7LG23L3RK"" completed keep alive response. +2017-12-20 19:00:25.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-20 19:00:25.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-20 19:00:25.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:25.982 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:00:25.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:25.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:25.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" in 3897.7799ms +2017-12-20 19:00:25.990 +05:30 [Information] Request finished in 3902.0946ms 200 application/json; charset=utf-8 +2017-12-20 19:00:25.991 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" completed keep alive response. +2017-12-20 19:00:26.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:00:26.157 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:00:26.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:00:26.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:00:26.173 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3684.3416ms +2017-12-20 19:00:26.198 +05:30 [Information] Request finished in 3713.0519ms 200 application/json; charset=utf-8 +2017-12-20 19:00:26.198 +05:30 [Debug] Connection id ""0HLA7LG23L3RI"" completed keep alive response. +2017-12-20 19:02:07.646 +05:30 [Debug] Connection id ""0HLA7LG23L3RL"" received FIN. +2017-12-20 19:02:07.646 +05:30 [Debug] Connection id ""0HLA7LG23L3RJ"" received FIN. +2017-12-20 19:02:07.646 +05:30 [Debug] Connection id ""0HLA7LG23L3RL"" disconnecting. +2017-12-20 19:02:07.646 +05:30 [Debug] Connection id ""0HLA7LG23L3RJ"" disconnecting. +2017-12-20 19:02:07.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RL"" sending FIN. +2017-12-20 19:02:07.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RM"" received FIN. +2017-12-20 19:02:07.648 +05:30 [Debug] Connection id ""0HLA7LG23L3RL"" sent FIN with status "0". +2017-12-20 19:02:07.648 +05:30 [Debug] Connection id ""0HLA7LG23L3RL"" stopped. +2017-12-20 19:02:07.648 +05:30 [Debug] Connection id ""0HLA7LG23L3RJ"" sending FIN. +2017-12-20 19:02:07.649 +05:30 [Debug] Connection id ""0HLA7LG23L3RJ"" sent FIN with status "0". +2017-12-20 19:02:07.650 +05:30 [Debug] Connection id ""0HLA7LG23L3RJ"" stopped. +2017-12-20 19:02:07.651 +05:30 [Debug] Connection id ""0HLA7LG23L3RM"" disconnecting. +2017-12-20 19:02:07.651 +05:30 [Debug] Connection id ""0HLA7LG23L3RI"" received FIN. +2017-12-20 19:02:07.649 +05:30 [Debug] Connection id ""0HLA7LG23L3RK"" received FIN. +2017-12-20 19:02:07.654 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" received FIN. +2017-12-20 19:02:07.652 +05:30 [Debug] Connection id ""0HLA7LG23L3RM"" sending FIN. +2017-12-20 19:02:07.654 +05:30 [Debug] Connection id ""0HLA7LG23L3RI"" disconnecting. +2017-12-20 19:02:07.655 +05:30 [Debug] Connection id ""0HLA7LG23L3RM"" sent FIN with status "0". +2017-12-20 19:02:07.655 +05:30 [Debug] Connection id ""0HLA7LG23L3RK"" disconnecting. +2017-12-20 19:02:07.655 +05:30 [Debug] Connection id ""0HLA7LG23L3RM"" stopped. +2017-12-20 19:02:07.655 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" disconnecting. +2017-12-20 19:02:07.656 +05:30 [Debug] Connection id ""0HLA7LG23L3RI"" sending FIN. +2017-12-20 19:02:07.658 +05:30 [Debug] Connection id ""0HLA7LG23L3RI"" sent FIN with status "0". +2017-12-20 19:02:07.658 +05:30 [Debug] Connection id ""0HLA7LG23L3RK"" sending FIN. +2017-12-20 19:02:07.659 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" sending FIN. +2017-12-20 19:02:07.659 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" sent FIN with status "0". +2017-12-20 19:02:07.658 +05:30 [Debug] Connection id ""0HLA7LG23L3RI"" stopped. +2017-12-20 19:02:07.660 +05:30 [Debug] Connection id ""0HLA7LG23L3RH"" stopped. +2017-12-20 19:02:07.661 +05:30 [Debug] Connection id ""0HLA7LG23L3RK"" sent FIN with status "0". +2017-12-20 19:02:07.662 +05:30 [Debug] Connection id ""0HLA7LG23L3RK"" stopped. +2017-12-20 19:03:09.643 +05:30 [Debug] Connection id ""0HLA7LG23L3RN"" started. +2017-12-20 19:03:09.644 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-20 19:03:09.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 19:03:09.645 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 19:03:12.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:03:15.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:03:15.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:03:15.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:03:15.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:03:15.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5424.5933ms +2017-12-20 19:03:15.084 +05:30 [Information] Request finished in 5438.8729ms 200 application/json; charset=utf-8 +2017-12-20 19:03:15.084 +05:30 [Debug] Connection id ""0HLA7LG23L3RN"" completed keep alive response. +2017-12-20 19:05:47.634 +05:30 [Debug] Connection id ""0HLA7LG23L3RN"" received FIN. +2017-12-20 19:05:47.634 +05:30 [Debug] Connection id ""0HLA7LG23L3RN"" disconnecting. +2017-12-20 19:05:47.635 +05:30 [Debug] Connection id ""0HLA7LG23L3RN"" sending FIN. +2017-12-20 19:05:47.635 +05:30 [Debug] Connection id ""0HLA7LG23L3RN"" sent FIN with status "0". +2017-12-20 19:05:47.635 +05:30 [Debug] Connection id ""0HLA7LG23L3RN"" stopped. +2017-12-20 19:06:29.627 +05:30 [Debug] Connection id ""0HLA7LG23L3RO"" started. +2017-12-20 19:06:29.630 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 19:06:29.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 19:06:29.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 19:06:31.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 19:06:32.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:06:32.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:06:32.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:06:32.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2661.5087ms +2017-12-20 19:06:32.295 +05:30 [Information] Request finished in 2665.5477ms 200 application/json; charset=utf-8 +2017-12-20 19:06:32.296 +05:30 [Debug] Connection id ""0HLA7LG23L3RO"" completed keep alive response. +2017-12-20 19:06:32.301 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-20 19:06:32.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 19:06:32.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 19:06:35.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-20 19:06:36.983 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:06:36.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:06:36.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:06:36.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4682.9626ms +2017-12-20 19:06:36.988 +05:30 [Information] Request finished in 4687.2573ms 200 application/json; charset=utf-8 +2017-12-20 19:06:36.988 +05:30 [Debug] Connection id ""0HLA7LG23L3RO"" completed keep alive response. +2017-12-20 19:06:40.563 +05:30 [Debug] Connection id ""0HLA7LG23L3RP"" started. +2017-12-20 19:06:40.563 +05:30 [Debug] Connection id ""0HLA7LG23L3RQ"" started. +2017-12-20 19:06:40.564 +05:30 [Debug] Connection id ""0HLA7LG23L3RR"" started. +2017-12-20 19:06:40.566 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-20 19:06:40.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 19:06:40.602 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 19:06:40.633 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-20 19:06:40.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 19:06:40.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 19:06:40.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-20 19:06:40.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 19:06:40.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 19:06:40.731 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-20 19:06:40.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 19:06:40.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 19:06:41.580 +05:30 [Debug] Connection id ""0HLA7LG23L3RS"" started. +2017-12-20 19:06:41.656 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-20 19:06:41.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 19:06:41.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 19:06:42.202 +05:30 [Debug] Connection id ""0HLA7LG23L3RT"" started. +2017-12-20 19:06:42.225 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-20 19:06:42.225 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 19:06:42.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 19:06:44.490 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:06:44.508 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:06:44.611 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:06:44.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:06:45.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:06:45.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:06:45.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:06:45.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:06:45.153 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4420.8351ms +2017-12-20 19:06:45.247 +05:30 [Information] Request finished in 4620.5586ms 200 application/json; charset=utf-8 +2017-12-20 19:06:45.247 +05:30 [Debug] Connection id ""0HLA7LG23L3RR"" completed keep alive response. +2017-12-20 19:06:45.316 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-20 19:06:45.316 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 19:06:45.317 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 19:06:45.342 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:06:45.343 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:06:45.343 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:06:45.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:06:45.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4638.0509ms +2017-12-20 19:06:45.404 +05:30 [Information] Request finished in 4835.0834ms 200 application/json; charset=utf-8 +2017-12-20 19:06:45.405 +05:30 [Debug] Connection id ""0HLA7LG23L3RP"" completed keep alive response. +2017-12-20 19:06:45.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:06:45.584 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:06:45.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:06:45.661 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:06:45.662 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:06:45.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:06:45.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4956.4925ms +2017-12-20 19:06:45.668 +05:30 [Information] Request finished in 5102.4271ms 200 application/json; charset=utf-8 +2017-12-20 19:06:45.668 +05:30 [Debug] Connection id ""0HLA7LG23L3RQ"" completed keep alive response. +2017-12-20 19:06:46.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:06:46.245 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:06:46.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:06:46.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:06:46.252 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5643.9893ms +2017-12-20 19:06:46.254 +05:30 [Information] Request finished in 5707.5785ms 200 application/json; charset=utf-8 +2017-12-20 19:06:46.254 +05:30 [Debug] Connection id ""0HLA7LG23L3RO"" completed keep alive response. +2017-12-20 19:06:46.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:06:46.549 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:06:46.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:06:46.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:06:46.697 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4411.4088ms +2017-12-20 19:06:46.752 +05:30 [Information] Request finished in 4530.6698ms 200 application/json; charset=utf-8 +2017-12-20 19:06:46.753 +05:30 [Debug] Connection id ""0HLA7LG23L3RT"" completed keep alive response. +2017-12-20 19:06:48.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:06:48.134 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:06:48.134 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:06:48.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:06:48.137 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6478.2377ms +2017-12-20 19:06:48.140 +05:30 [Information] Request finished in 6555.5096ms 200 application/json; charset=utf-8 +2017-12-20 19:06:48.140 +05:30 [Debug] Connection id ""0HLA7LG23L3RS"" completed keep alive response. +2017-12-20 19:06:48.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:06:49.498 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:06:49.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:06:49.499 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:06:49.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:06:49.501 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4182.3849ms +2017-12-20 19:06:49.503 +05:30 [Information] Request finished in 4234.3769ms 200 application/json; charset=utf-8 +2017-12-20 19:06:49.503 +05:30 [Debug] Connection id ""0HLA7LG23L3RR"" completed keep alive response. +2017-12-20 19:07:41.098 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-20 19:07:41.100 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-20 19:07:41.100 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-20 19:07:44.129 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-20 19:07:44.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:07:44.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:07:44.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:07:44.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3621.014ms +2017-12-20 19:07:44.724 +05:30 [Information] Request finished in 3626.757ms 200 application/json; charset=utf-8 +2017-12-20 19:07:44.725 +05:30 [Debug] Connection id ""0HLA7LG23L3RP"" completed keep alive response. +2017-12-20 19:07:44.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-20 19:07:44.738 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-20 19:07:44.738 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-20 19:07:46.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-20 19:07:48.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:07:48.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:07:48.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:07:48.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3689.6256ms +2017-12-20 19:07:48.435 +05:30 [Information] Request finished in 3696.3816ms 200 application/json; charset=utf-8 +2017-12-20 19:07:48.436 +05:30 [Debug] Connection id ""0HLA7LG23L3RQ"" completed keep alive response. +2017-12-20 19:07:52.450 +05:30 [Debug] Connection id ""0HLA7LG23L3RO"" received FIN. +2017-12-20 19:07:52.450 +05:30 [Debug] Connection id ""0HLA7LG23L3RT"" received FIN. +2017-12-20 19:07:52.450 +05:30 [Debug] Connection id ""0HLA7LG23L3RR"" received FIN. +2017-12-20 19:07:52.450 +05:30 [Debug] Connection id ""0HLA7LG23L3RO"" disconnecting. +2017-12-20 19:07:52.451 +05:30 [Debug] Connection id ""0HLA7LG23L3RT"" disconnecting. +2017-12-20 19:07:52.451 +05:30 [Debug] Connection id ""0HLA7LG23L3RR"" disconnecting. +2017-12-20 19:07:52.450 +05:30 [Debug] Connection id ""0HLA7LG23L3RS"" received FIN. +2017-12-20 19:07:52.451 +05:30 [Debug] Connection id ""0HLA7LG23L3RT"" sending FIN. +2017-12-20 19:07:52.451 +05:30 [Debug] Connection id ""0HLA7LG23L3RO"" sending FIN. +2017-12-20 19:07:52.452 +05:30 [Debug] Connection id ""0HLA7LG23L3RR"" sending FIN. +2017-12-20 19:07:52.452 +05:30 [Debug] Connection id ""0HLA7LG23L3RO"" sent FIN with status "0". +2017-12-20 19:07:52.452 +05:30 [Debug] Connection id ""0HLA7LG23L3RR"" sent FIN with status "0". +2017-12-20 19:07:52.452 +05:30 [Debug] Connection id ""0HLA7LG23L3RR"" stopped. +2017-12-20 19:07:52.452 +05:30 [Debug] Connection id ""0HLA7LG23L3RO"" stopped. +2017-12-20 19:07:52.453 +05:30 [Debug] Connection id ""0HLA7LG23L3RT"" sent FIN with status "0". +2017-12-20 19:07:52.453 +05:30 [Debug] Connection id ""0HLA7LG23L3RT"" stopped. +2017-12-20 19:07:52.460 +05:30 [Debug] Connection id ""0HLA7LG23L3RU"" started. +2017-12-20 19:07:52.462 +05:30 [Debug] Connection id ""0HLA7LG23L3RV"" started. +2017-12-20 19:07:52.467 +05:30 [Debug] Connection id ""0HLA7LG23L3RS"" disconnecting. +2017-12-20 19:07:52.480 +05:30 [Debug] Connection id ""0HLA7LG23L3RS"" sending FIN. +2017-12-20 19:07:52.480 +05:30 [Debug] Connection id ""0HLA7LG23L3RS"" sent FIN with status "0". +2017-12-20 19:07:52.481 +05:30 [Debug] Connection id ""0HLA7LG23L3RS"" stopped. +2017-12-20 19:07:52.495 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-20 19:07:52.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-20 19:07:52.496 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-20 19:07:52.511 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-20 19:07:52.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-20 19:07:52.517 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-20 19:07:52.521 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-20 19:07:52.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-20 19:07:52.524 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-20 19:07:52.533 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-20 19:07:52.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-20 19:07:52.534 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-20 19:07:52.775 +05:30 [Debug] Connection id ""0HLA7LG23L3S0"" started. +2017-12-20 19:07:52.791 +05:30 [Debug] Connection id ""0HLA7LG23L3S1"" started. +2017-12-20 19:07:52.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-20 19:07:52.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-20 19:07:52.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-20 19:07:52.868 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-20 19:07:52.868 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-20 19:07:52.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-20 19:07:57.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:07:57.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:07:57.562 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:07:57.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:07:57.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:07:57.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:07:58.129 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:07:58.129 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:07:58.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:07:58.130 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:07:58.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5605.9398ms +2017-12-20 19:07:58.138 +05:30 [Information] Request finished in 5669.9469ms 200 application/json; charset=utf-8 +2017-12-20 19:07:58.139 +05:30 [Debug] Connection id ""0HLA7LG23L3RU"" completed keep alive response. +2017-12-20 19:07:58.146 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-20 19:07:58.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-20 19:07:58.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-20 19:07:58.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:07:58.736 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:07:58.736 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:07:58.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:07:58.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6240.7812ms +2017-12-20 19:07:58.744 +05:30 [Information] Request finished in 6275.2799ms 200 application/json; charset=utf-8 +2017-12-20 19:07:58.744 +05:30 [Debug] Connection id ""0HLA7LG23L3RP"" completed keep alive response. +2017-12-20 19:07:59.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:07:59.284 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:07:59.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:07:59.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:07:59.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6761.5917ms +2017-12-20 19:07:59.347 +05:30 [Information] Request finished in 6875.1507ms 200 application/json; charset=utf-8 +2017-12-20 19:07:59.348 +05:30 [Debug] Connection id ""0HLA7LG23L3RV"" completed keep alive response. +2017-12-20 19:07:59.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:07:59.463 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:07:59.463 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:07:59.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:07:59.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6594.3087ms +2017-12-20 19:07:59.474 +05:30 [Information] Request finished in 6625.4216ms 200 application/json; charset=utf-8 +2017-12-20 19:07:59.474 +05:30 [Debug] Connection id ""0HLA7LG23L3S1"" completed keep alive response. +2017-12-20 19:07:59.737 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:07:59.737 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:07:59.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:07:59.740 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:07:59.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7222.8273ms +2017-12-20 19:07:59.753 +05:30 [Information] Request finished in 7282.0779ms 200 application/json; charset=utf-8 +2017-12-20 19:07:59.754 +05:30 [Debug] Connection id ""0HLA7LG23L3RQ"" completed keep alive response. +2017-12-20 19:08:00.326 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:08:00.327 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:08:00.327 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:08:00.331 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:08:00.343 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7492.5179ms +2017-12-20 19:08:00.360 +05:30 [Information] Request finished in 7546.5691ms 200 application/json; charset=utf-8 +2017-12-20 19:08:00.361 +05:30 [Debug] Connection id ""0HLA7LG23L3S0"" completed keep alive response. +2017-12-20 19:08:01.193 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-20 19:08:03.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-20 19:08:03.508 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-20 19:08:03.508 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-20 19:08:03.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-20 19:08:03.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5361.4234ms +2017-12-20 19:08:03.513 +05:30 [Information] Request finished in 5366.2004ms 200 application/json; charset=utf-8 +2017-12-20 19:08:03.514 +05:30 [Debug] Connection id ""0HLA7LG23L3RU"" completed keep alive response. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RP"" received FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RV"" received FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RP"" disconnecting. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RV"" disconnecting. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RP"" sending FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RV"" sending FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RV"" sent FIN with status "0". +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RV"" stopped. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RP"" sent FIN with status "0". +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RP"" stopped. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S1"" received FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S0"" received FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RQ"" received FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RU"" received FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S1"" disconnecting. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S1"" sending FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RQ"" disconnecting. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S1"" sent FIN with status "0". +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RU"" disconnecting. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RU"" sending FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S1"" stopped. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RU"" sent FIN with status "0". +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RQ"" sending FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RU"" stopped. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RQ"" sent FIN with status "0". +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3RQ"" stopped. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S0"" disconnecting. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S0"" sending FIN. +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S0"" sent FIN with status "0". +2017-12-20 19:09:27.647 +05:30 [Debug] Connection id ""0HLA7LG23L3S0"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171222.txt b/src/Api.Socioboard/wwwroot/log/log-20171222.txt new file mode 100644 index 000000000..b25a83015 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171222.txt @@ -0,0 +1,1838 @@ +2017-12-22 11:33:34.776 +05:30 [Debug] Hosting starting +2017-12-22 11:33:35.160 +05:30 [Debug] Connection id ""0HLA906UA45QS"" started. +2017-12-22 11:33:35.188 +05:30 [Debug] Connection id ""0HLA906UA45QT"" started. +2017-12-22 11:33:35.204 +05:30 [Debug] Hosting started +2017-12-22 11:33:35.422 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-22 11:33:35.422 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-22 11:33:35.528 +05:30 [Information] Request finished in 146.9711ms 200 +2017-12-22 11:33:35.644 +05:30 [Debug] Connection id ""0HLA906UA45QS"" completed keep alive response. +2017-12-22 11:33:36.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-22 11:33:36.849 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3b97e2eb-b94b-4be0-a25b-e5529b1a97a0"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-22 11:33:37.105 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-22 11:33:37.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-22 11:33:37.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-22 11:33:37.312 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 11:33:37.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:33:37.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:33:38.071 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 953.4552ms +2017-12-22 11:33:38.120 +05:30 [Information] Request finished in 2770.7266ms 200 application/json; charset=utf-8 +2017-12-22 11:33:38.122 +05:30 [Debug] Connection id ""0HLA906UA45QT"" completed keep alive response. +2017-12-22 11:33:38.179 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-22 11:33:38.183 +05:30 [Debug] Request did not match any routes. +2017-12-22 11:33:38.206 +05:30 [Debug] The request path "" does not match the path filter +2017-12-22 11:33:38.221 +05:30 [Information] Request finished in 31.0282ms 404 +2017-12-22 11:33:38.222 +05:30 [Debug] Connection id ""0HLA906UA45QS"" completed keep alive response. +2017-12-22 11:35:25.391 +05:30 [Debug] Connection id ""0HLA906UA45QT"" received FIN. +2017-12-22 11:35:25.391 +05:30 [Debug] Connection id ""0HLA906UA45QS"" received FIN. +2017-12-22 11:35:25.392 +05:30 [Debug] Connection id ""0HLA906UA45QT"" disconnecting. +2017-12-22 11:35:25.393 +05:30 [Debug] Connection id ""0HLA906UA45QS"" disconnecting. +2017-12-22 11:35:25.394 +05:30 [Debug] Connection id ""0HLA906UA45QT"" sending FIN. +2017-12-22 11:35:25.396 +05:30 [Debug] Connection id ""0HLA906UA45QS"" sending FIN. +2017-12-22 11:35:25.404 +05:30 [Debug] Connection id ""0HLA906UA45QS"" sent FIN with status "0". +2017-12-22 11:35:25.409 +05:30 [Debug] Connection id ""0HLA906UA45QS"" stopped. +2017-12-22 11:35:25.410 +05:30 [Debug] Connection id ""0HLA906UA45QT"" sent FIN with status "0". +2017-12-22 11:35:25.410 +05:30 [Debug] Connection id ""0HLA906UA45QT"" stopped. +2017-12-22 11:35:52.168 +05:30 [Debug] Connection id ""0HLA906UA45QU"" started. +2017-12-22 11:35:52.169 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-22 11:35:52.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-22 11:35:52.200 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-22 11:35:55.931 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-22 11:36:05.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 11:36:05.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:36:05.373 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:36:05.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 13296.5441ms +2017-12-22 11:36:05.500 +05:30 [Information] Request finished in 13330.7235ms 200 application/json; charset=utf-8 +2017-12-22 11:36:05.501 +05:30 [Debug] Connection id ""0HLA906UA45QU"" completed keep alive response. +2017-12-22 11:36:06.037 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-22 11:36:06.037 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-22 11:36:06.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-22 11:36:09.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-22 11:36:11.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 11:36:11.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:36:11.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:36:11.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5029.9372ms +2017-12-22 11:36:11.073 +05:30 [Information] Request finished in 5036.4842ms 200 application/json; charset=utf-8 +2017-12-22 11:36:11.074 +05:30 [Debug] Connection id ""0HLA906UA45QU"" completed keep alive response. +2017-12-22 11:36:15.344 +05:30 [Debug] Connection id ""0HLA906UA45QV"" started. +2017-12-22 11:36:15.345 +05:30 [Debug] Connection id ""0HLA906UA45R0"" started. +2017-12-22 11:36:15.345 +05:30 [Debug] Connection id ""0HLA906UA45R1"" started. +2017-12-22 11:36:15.359 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-22 11:36:15.360 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-22 11:36:15.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-22 11:36:15.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-22 11:36:15.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-22 11:36:15.375 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-22 11:36:15.398 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-22 11:36:15.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-22 11:36:15.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-22 11:36:15.409 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-22 11:36:15.409 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-22 11:36:15.411 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-22 11:36:15.762 +05:30 [Debug] Connection id ""0HLA906UA45R2"" started. +2017-12-22 11:36:15.763 +05:30 [Debug] Connection id ""0HLA906UA45R3"" started. +2017-12-22 11:36:16.570 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-22 11:36:16.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-22 11:36:16.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-22 11:36:17.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-22 11:36:17.545 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-22 11:36:17.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-22 11:36:20.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 11:36:20.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 11:36:20.798 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 11:36:20.800 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 11:36:20.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 11:36:20.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 11:36:21.308 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 11:36:21.309 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 11:36:21.309 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:36:21.310 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:36:21.315 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5903.208ms +2017-12-22 11:36:21.319 +05:30 [Information] Request finished in 5969.8711ms 200 application/json; charset=utf-8 +2017-12-22 11:36:21.319 +05:30 [Debug] Connection id ""0HLA906UA45R0"" completed keep alive response. +2017-12-22 11:36:21.340 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-22 11:36:21.341 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-22 11:36:21.342 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-22 11:36:22.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 11:36:22.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 11:36:22.884 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 11:36:22.885 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 11:36:22.885 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:36:22.885 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:36:22.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:36:22.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:36:22.901 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7533.5413ms +2017-12-22 11:36:22.905 +05:30 [Information] Request finished in 7568.6316ms 200 application/json; charset=utf-8 +2017-12-22 11:36:22.906 +05:30 [Debug] Connection id ""0HLA906UA45QU"" completed keep alive response. +2017-12-22 11:36:22.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7532.6602ms +2017-12-22 11:36:22.922 +05:30 [Information] Request finished in 7559.4569ms 200 application/json; charset=utf-8 +2017-12-22 11:36:22.923 +05:30 [Debug] Connection id ""0HLA906UA45QV"" completed keep alive response. +2017-12-22 11:36:23.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 11:36:23.190 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 11:36:23.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:36:23.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:36:23.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6617.7083ms +2017-12-22 11:36:23.197 +05:30 [Information] Request finished in 6630.7808ms 200 application/json; charset=utf-8 +2017-12-22 11:36:23.198 +05:30 [Debug] Connection id ""0HLA906UA45R2"" completed keep alive response. +2017-12-22 11:36:23.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 11:36:23.229 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 11:36:23.229 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:36:23.230 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:36:23.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7833.0239ms +2017-12-22 11:36:23.238 +05:30 [Information] Request finished in 7878.8371ms 200 application/json; charset=utf-8 +2017-12-22 11:36:23.238 +05:30 [Debug] Connection id ""0HLA906UA45R1"" completed keep alive response. +2017-12-22 11:36:23.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 11:36:23.315 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 11:36:23.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:36:23.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:36:23.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5770.1143ms +2017-12-22 11:36:23.320 +05:30 [Information] Request finished in 5774.265ms 200 application/json; charset=utf-8 +2017-12-22 11:36:23.320 +05:30 [Debug] Connection id ""0HLA906UA45R3"" completed keep alive response. +2017-12-22 11:36:24.408 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 11:36:26.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 11:36:26.811 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 11:36:26.811 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 11:36:26.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 11:36:26.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5524.5687ms +2017-12-22 11:36:26.869 +05:30 [Information] Request finished in 5543.7395ms 200 application/json; charset=utf-8 +2017-12-22 11:36:26.869 +05:30 [Debug] Connection id ""0HLA906UA45R0"" completed keep alive response. +2017-12-22 12:03:34.690 +05:30 [Debug] Hosting starting +2017-12-22 12:03:34.939 +05:30 [Debug] Hosting started +2017-12-22 12:03:35.052 +05:30 [Debug] Connection id ""0HLA90NMNA9IG"" started. +2017-12-22 12:03:35.052 +05:30 [Debug] Connection id ""0HLA90NMNA9IH"" started. +2017-12-22 12:03:35.282 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-22 12:03:35.283 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-22 12:03:35.374 +05:30 [Information] Request finished in 151.8502ms 200 +2017-12-22 12:03:35.435 +05:30 [Debug] Connection id ""0HLA90NMNA9IG"" completed keep alive response. +2017-12-22 12:03:36.465 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-22 12:03:36.542 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"03b3db9f-4b9b-40ea-8677-73bf0e21e5e3"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-22 12:03:37.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-22 12:03:37.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-22 12:03:37.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-22 12:03:37.270 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:03:37.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:03:37.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:03:37.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 521.7523ms +2017-12-22 12:03:37.693 +05:30 [Information] Request finished in 2489.1226ms 200 application/json; charset=utf-8 +2017-12-22 12:03:37.695 +05:30 [Debug] Connection id ""0HLA90NMNA9IH"" completed keep alive response. +2017-12-22 12:08:56.948 +05:30 [Debug] Hosting starting +2017-12-22 12:08:57.776 +05:30 [Debug] Hosting started +2017-12-22 12:08:57.931 +05:30 [Debug] Connection id ""0HLA90QMUH4TS"" started. +2017-12-22 12:08:57.932 +05:30 [Debug] Connection id ""0HLA90QMUH4TR"" started. +2017-12-22 12:08:58.195 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-22 12:08:58.197 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-22 12:08:58.343 +05:30 [Information] Request finished in 230.8348ms 200 +2017-12-22 12:08:58.433 +05:30 [Debug] Connection id ""0HLA90QMUH4TS"" completed keep alive response. +2017-12-22 12:09:00.553 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-22 12:09:00.631 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"2ab0a279-ebe0-4803-b440-2de2cc1d407a"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-22 12:09:00.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-22 12:09:01.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-22 12:09:01.234 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-22 12:09:01.321 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:09:01.330 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:09:01.336 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:09:01.804 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 815.0937ms +2017-12-22 12:09:01.926 +05:30 [Information] Request finished in 3843.7219ms 200 application/json; charset=utf-8 +2017-12-22 12:09:01.929 +05:30 [Debug] Connection id ""0HLA90QMUH4TR"" completed keep alive response. +2017-12-22 12:10:48.212 +05:30 [Debug] Connection id ""0HLA90QMUH4TS"" received FIN. +2017-12-22 12:10:48.212 +05:30 [Debug] Connection id ""0HLA90QMUH4TR"" received FIN. +2017-12-22 12:10:48.214 +05:30 [Debug] Connection id ""0HLA90QMUH4TR"" disconnecting. +2017-12-22 12:10:48.214 +05:30 [Debug] Connection id ""0HLA90QMUH4TS"" disconnecting. +2017-12-22 12:10:48.215 +05:30 [Debug] Connection id ""0HLA90QMUH4TR"" sending FIN. +2017-12-22 12:10:48.215 +05:30 [Debug] Connection id ""0HLA90QMUH4TS"" sending FIN. +2017-12-22 12:10:48.222 +05:30 [Debug] Connection id ""0HLA90QMUH4TS"" sent FIN with status "0". +2017-12-22 12:10:48.222 +05:30 [Debug] Connection id ""0HLA90QMUH4TR"" sent FIN with status "0". +2017-12-22 12:10:48.224 +05:30 [Debug] Connection id ""0HLA90QMUH4TS"" stopped. +2017-12-22 12:10:48.224 +05:30 [Debug] Connection id ""0HLA90QMUH4TR"" stopped. +2017-12-22 12:11:36.235 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" started. +2017-12-22 12:11:36.240 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-22 12:11:36.241 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-22 12:11:36.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-22 12:11:39.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-22 12:11:48.202 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:11:48.209 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:11:48.230 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:11:48.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 12147.47ms +2017-12-22 12:11:48.397 +05:30 [Information] Request finished in 12156.3181ms 200 application/json; charset=utf-8 +2017-12-22 12:11:48.398 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" completed keep alive response. +2017-12-22 12:11:49.218 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-22 12:11:49.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-22 12:11:49.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-22 12:11:52.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-22 12:11:53.990 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:11:53.990 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:11:53.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:11:54.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4807.5197ms +2017-12-22 12:11:54.030 +05:30 [Information] Request finished in 4811.8346ms 200 application/json; charset=utf-8 +2017-12-22 12:11:54.031 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" completed keep alive response. +2017-12-22 12:11:55.726 +05:30 [Debug] Connection id ""0HLA90QMUH4TU"" started. +2017-12-22 12:11:55.727 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-22 12:11:55.727 +05:30 [Debug] Connection id ""0HLA90QMUH4U0"" started. +2017-12-22 12:11:55.727 +05:30 [Debug] Connection id ""0HLA90QMUH4TV"" started. +2017-12-22 12:11:55.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-22 12:11:55.751 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-22 12:11:55.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-22 12:11:55.756 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-22 12:11:55.751 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-22 12:11:55.758 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-22 12:11:55.762 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-22 12:11:55.762 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-22 12:11:55.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-22 12:11:55.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-22 12:11:55.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-22 12:11:55.833 +05:30 [Debug] Connection id ""0HLA90QMUH4U1"" started. +2017-12-22 12:11:55.834 +05:30 [Debug] Connection id ""0HLA90QMUH4U2"" started. +2017-12-22 12:11:56.754 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-22 12:11:56.756 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-22 12:11:56.758 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-22 12:11:57.741 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-22 12:11:57.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-22 12:11:57.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-22 12:12:00.888 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 12:12:00.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 12:12:00.989 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 12:12:00.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 12:12:01.022 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 12:12:01.035 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 12:12:01.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:12:01.635 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:12:01.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:12:01.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:12:01.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5879.7325ms +2017-12-22 12:12:01.648 +05:30 [Information] Request finished in 5918.7677ms 200 application/json; charset=utf-8 +2017-12-22 12:12:01.649 +05:30 [Debug] Connection id ""0HLA90QMUH4TV"" completed keep alive response. +2017-12-22 12:12:01.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-22 12:12:01.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-22 12:12:01.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-22 12:12:03.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:12:03.142 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:12:03.143 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:12:03.144 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:12:03.149 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7381.6746ms +2017-12-22 12:12:03.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:12:03.152 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:12:03.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:12:03.152 +05:30 [Information] Request finished in 7425.0875ms 200 application/json; charset=utf-8 +2017-12-22 12:12:03.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:12:03.153 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" completed keep alive response. +2017-12-22 12:12:03.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7392.6021ms +2017-12-22 12:12:03.166 +05:30 [Information] Request finished in 7435.1227ms 200 application/json; charset=utf-8 +2017-12-22 12:12:03.167 +05:30 [Debug] Connection id ""0HLA90QMUH4TU"" completed keep alive response. +2017-12-22 12:12:03.523 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:12:03.524 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:12:03.524 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:12:03.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:12:03.526 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7768.8326ms +2017-12-22 12:12:03.529 +05:30 [Information] Request finished in 7799.6659ms 200 application/json; charset=utf-8 +2017-12-22 12:12:03.529 +05:30 [Debug] Connection id ""0HLA90QMUH4U0"" completed keep alive response. +2017-12-22 12:12:03.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:12:03.546 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:12:03.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:12:03.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:12:03.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5804.3596ms +2017-12-22 12:12:03.552 +05:30 [Information] Request finished in 5811.0375ms 200 application/json; charset=utf-8 +2017-12-22 12:12:03.552 +05:30 [Debug] Connection id ""0HLA90QMUH4U2"" completed keep alive response. +2017-12-22 12:12:03.615 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:12:03.615 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:12:03.616 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:12:03.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:12:03.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6858.0793ms +2017-12-22 12:12:03.621 +05:30 [Information] Request finished in 6869.2258ms 200 application/json; charset=utf-8 +2017-12-22 12:12:03.621 +05:30 [Debug] Connection id ""0HLA90QMUH4U1"" completed keep alive response. +2017-12-22 12:12:03.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 12:12:06.173 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:12:06.174 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:12:06.174 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:12:06.175 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:12:06.238 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4583.1977ms +2017-12-22 12:12:06.240 +05:30 [Information] Request finished in 4588.7389ms 200 application/json; charset=utf-8 +2017-12-22 12:12:06.240 +05:30 [Debug] Connection id ""0HLA90QMUH4TV"" completed keep alive response. +2017-12-22 12:12:13.881 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-22 12:12:13.882 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-22 12:12:13.886 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-22 12:12:16.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-22 12:12:30.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:12:30.700 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:12:30.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:12:30.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:12:30.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 16849.2358ms +2017-12-22 12:12:30.739 +05:30 [Information] Request finished in 16858.0867ms 200 application/json; charset=utf-8 +2017-12-22 12:12:30.739 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" completed keep alive response. +2017-12-22 12:14:28.225 +05:30 [Debug] Connection id ""0HLA90QMUH4TU"" received FIN. +2017-12-22 12:14:28.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U2"" received FIN. +2017-12-22 12:14:28.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U0"" received FIN. +2017-12-22 12:14:28.225 +05:30 [Debug] Connection id ""0HLA90QMUH4TU"" disconnecting. +2017-12-22 12:14:28.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U2"" disconnecting. +2017-12-22 12:14:28.226 +05:30 [Debug] Connection id ""0HLA90QMUH4TU"" sending FIN. +2017-12-22 12:14:28.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U0"" disconnecting. +2017-12-22 12:14:28.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U1"" received FIN. +2017-12-22 12:14:28.228 +05:30 [Debug] Connection id ""0HLA90QMUH4U2"" sending FIN. +2017-12-22 12:14:28.228 +05:30 [Debug] Connection id ""0HLA90QMUH4U1"" disconnecting. +2017-12-22 12:14:28.228 +05:30 [Debug] Connection id ""0HLA90QMUH4U2"" sent FIN with status "0". +2017-12-22 12:14:28.229 +05:30 [Debug] Connection id ""0HLA90QMUH4U2"" stopped. +2017-12-22 12:14:28.228 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" received FIN. +2017-12-22 12:14:28.229 +05:30 [Debug] Connection id ""0HLA90QMUH4TU"" sent FIN with status "0". +2017-12-22 12:14:28.229 +05:30 [Debug] Connection id ""0HLA90QMUH4U0"" sending FIN. +2017-12-22 12:14:28.229 +05:30 [Debug] Connection id ""0HLA90QMUH4TU"" stopped. +2017-12-22 12:14:28.229 +05:30 [Debug] Connection id ""0HLA90QMUH4U1"" sending FIN. +2017-12-22 12:14:28.250 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" disconnecting. +2017-12-22 12:14:28.250 +05:30 [Debug] Connection id ""0HLA90QMUH4TV"" received FIN. +2017-12-22 12:14:28.251 +05:30 [Debug] Connection id ""0HLA90QMUH4TV"" disconnecting. +2017-12-22 12:14:28.251 +05:30 [Debug] Connection id ""0HLA90QMUH4U1"" sent FIN with status "0". +2017-12-22 12:14:28.251 +05:30 [Debug] Connection id ""0HLA90QMUH4U1"" stopped. +2017-12-22 12:14:28.251 +05:30 [Debug] Connection id ""0HLA90QMUH4TV"" sending FIN. +2017-12-22 12:14:28.251 +05:30 [Debug] Connection id ""0HLA90QMUH4U0"" sent FIN with status "0". +2017-12-22 12:14:28.252 +05:30 [Debug] Connection id ""0HLA90QMUH4TV"" sent FIN with status "0". +2017-12-22 12:14:28.252 +05:30 [Debug] Connection id ""0HLA90QMUH4U0"" stopped. +2017-12-22 12:14:28.252 +05:30 [Debug] Connection id ""0HLA90QMUH4TV"" stopped. +2017-12-22 12:14:28.252 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" sending FIN. +2017-12-22 12:14:28.253 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" sent FIN with status "0". +2017-12-22 12:14:28.253 +05:30 [Debug] Connection id ""0HLA90QMUH4TT"" stopped. +2017-12-22 12:15:47.481 +05:30 [Debug] Connection id ""0HLA90QMUH4U3"" started. +2017-12-22 12:15:47.491 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/QuickTopics?networkType=sport&skip=0&count=30 +2017-12-22 12:15:47.491 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/QuickTopics"'. +2017-12-22 12:15:47.493 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" +2017-12-22 12:15:50.531 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" with arguments (["sport", "0", "30"]) - ModelState is Valid +2017-12-22 12:15:51.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:15:51.899 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:15:51.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:15:51.900 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:15:51.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" in 4407.6033ms +2017-12-22 12:15:51.907 +05:30 [Information] Request finished in 4419.2079ms 200 application/json; charset=utf-8 +2017-12-22 12:15:51.908 +05:30 [Debug] Connection id ""0HLA90QMUH4U3"" completed keep alive response. +2017-12-22 12:16:15.762 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/QuickTopics?networkType=entertainment&skip=30&count=30 +2017-12-22 12:16:15.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/QuickTopics"'. +2017-12-22 12:16:15.764 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" +2017-12-22 12:16:18.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" with arguments (["entertainment", "30", "30"]) - ModelState is Valid +2017-12-22 12:16:18.990 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:16:18.990 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:16:18.990 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:16:18.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:16:19.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" in 3232.4723ms +2017-12-22 12:16:19.005 +05:30 [Information] Request finished in 3240.7793ms 200 application/json; charset=utf-8 +2017-12-22 12:16:19.006 +05:30 [Debug] Connection id ""0HLA90QMUH4U3"" completed keep alive response. +2017-12-22 12:16:25.282 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/QuickTopics?networkType=business&skip=30&count=30 +2017-12-22 12:16:25.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/QuickTopics"'. +2017-12-22 12:16:25.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" +2017-12-22 12:16:28.449 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" with arguments (["business", "30", "30"]) - ModelState is Valid +2017-12-22 12:16:28.621 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:16:28.621 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:16:28.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:16:28.622 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:16:28.625 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.QuickTopics (Api.Socioboard)" in 3339.7614ms +2017-12-22 12:16:28.635 +05:30 [Information] Request finished in 3356.07ms 200 application/json; charset=utf-8 +2017-12-22 12:16:28.636 +05:30 [Debug] Connection id ""0HLA90QMUH4U3"" completed keep alive response. +2017-12-22 12:18:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U3"" received FIN. +2017-12-22 12:18:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U3"" disconnecting. +2017-12-22 12:18:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U3"" sending FIN. +2017-12-22 12:18:08.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U3"" sent FIN with status "0". +2017-12-22 12:18:08.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U3"" stopped. +2017-12-22 12:30:56.445 +05:30 [Debug] Connection id ""0HLA90QMUH4U4"" started. +2017-12-22 12:30:56.446 +05:30 [Debug] Connection id ""0HLA90QMUH4U5"" started. +2017-12-22 12:30:56.447 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=1452799044811364 +2017-12-22 12:30:56.448 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=1452799044811364&userId=48&skip=0&count=10&type=undefined +2017-12-22 12:30:56.448 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-22 12:30:56.448 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-22 12:30:56.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-22 12:30:56.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-22 12:30:59.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["1452799044811364", "48", "0", "10"]) - ModelState is Valid +2017-12-22 12:30:59.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["1452799044811364"]) - ModelState is Valid +2017-12-22 12:31:01.445 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:31:01.445 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:31:01.445 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:31:01.446 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:31:01.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 4988.9194ms +2017-12-22 12:31:01.453 +05:30 [Information] Request finished in 5006.9575ms 200 application/json; charset=utf-8 +2017-12-22 12:31:01.454 +05:30 [Debug] Connection id ""0HLA90QMUH4U5"" completed keep alive response. +2017-12-22 12:31:01.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:31:01.510 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:31:01.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:31:01.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:31:01.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 5085.2309ms +2017-12-22 12:31:01.558 +05:30 [Information] Request finished in 5112.6011ms 200 application/json; charset=utf-8 +2017-12-22 12:31:01.558 +05:30 [Debug] Connection id ""0HLA90QMUH4U4"" completed keep alive response. +2017-12-22 12:32:48.211 +05:30 [Debug] Connection id ""0HLA90QMUH4U4"" received FIN. +2017-12-22 12:32:48.211 +05:30 [Debug] Connection id ""0HLA90QMUH4U5"" received FIN. +2017-12-22 12:32:48.211 +05:30 [Debug] Connection id ""0HLA90QMUH4U4"" disconnecting. +2017-12-22 12:32:48.213 +05:30 [Debug] Connection id ""0HLA90QMUH4U5"" disconnecting. +2017-12-22 12:32:48.213 +05:30 [Debug] Connection id ""0HLA90QMUH4U5"" sending FIN. +2017-12-22 12:32:48.213 +05:30 [Debug] Connection id ""0HLA90QMUH4U4"" sending FIN. +2017-12-22 12:32:48.213 +05:30 [Debug] Connection id ""0HLA90QMUH4U5"" sent FIN with status "0". +2017-12-22 12:32:48.214 +05:30 [Debug] Connection id ""0HLA90QMUH4U4"" sent FIN with status "0". +2017-12-22 12:32:48.214 +05:30 [Debug] Connection id ""0HLA90QMUH4U4"" stopped. +2017-12-22 12:32:48.214 +05:30 [Debug] Connection id ""0HLA90QMUH4U5"" stopped. +2017-12-22 12:36:47.039 +05:30 [Debug] Connection id ""0HLA90QMUH4U6"" started. +2017-12-22 12:36:47.041 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/RssFeed/AddRssUrl?profileId=page_1452799044811364&userId=48&groupId=48&rssUrl=https://timesofindia.indiatimes.com/rssfeeds/1898055.cms 0 +2017-12-22 12:36:47.041 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/AddRssUrl"'. +2017-12-22 12:36:47.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.AddRssUrl (Api.Socioboard)" +2017-12-22 12:36:49.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.AddRssUrl (Api.Socioboard)" with arguments (["48", "48", "https://timesofindia.indiatimes.com/rssfeeds/1898055.cms", "page_1452799044811364"]) - ModelState is Valid +2017-12-22 12:37:01.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.AddRssUrl (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:37:01.628 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:37:01.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-22 12:37:01.630 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:37:01.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.AddRssUrl (Api.Socioboard)" in 14589.5941ms +2017-12-22 12:37:01.638 +05:30 [Information] Request finished in 14595.9903ms 200 text/plain; charset=utf-8 +2017-12-22 12:37:01.638 +05:30 [Debug] Connection id ""0HLA90QMUH4U6"" completed keep alive response. +2017-12-22 12:37:01.673 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/RssFeed/PostRssFeeds?profileId=page_1452799044811364&userId=48&rssUrl=https://timesofindia.indiatimes.com/rssfeeds/1898055.cms 0 +2017-12-22 12:37:01.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/PostRssFeeds"'. +2017-12-22 12:37:01.676 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.PostRssFeeds (Api.Socioboard)" +2017-12-22 12:37:04.730 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.PostRssFeeds (Api.Socioboard)" with arguments (["page_1452799044811364", "48", "https://timesofindia.indiatimes.com/rssfeeds/1898055.cms"]) - ModelState is Valid +2017-12-22 12:37:07.932 +05:30 [Debug] Connection id ""0HLA90QMUH4U7"" started. +2017-12-22 12:37:07.938 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/GetRssDataByUser?userId=48&groupId=48 +2017-12-22 12:37:07.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/GetRssDataByUser"'. +2017-12-22 12:37:07.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)" +2017-12-22 12:37:10.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-22 12:37:11.728 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:37:11.728 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:37:11.728 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:37:11.729 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:37:11.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)" in 3813.1169ms +2017-12-22 12:37:11.756 +05:30 [Information] Request finished in 3820.857ms 200 application/json; charset=utf-8 +2017-12-22 12:37:11.757 +05:30 [Debug] Connection id ""0HLA90QMUH4U7"" completed keep alive response. +2017-12-22 12:37:16.339 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/GetPostedRssDataByUser?userId=48&groupId=48 +2017-12-22 12:37:16.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/GetPostedRssDataByUser"'. +2017-12-22 12:37:16.341 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.GetPostedRssDataByUser (Api.Socioboard)" +2017-12-22 12:37:19.396 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.GetPostedRssDataByUser (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-22 12:37:36.791 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.GetPostedRssDataByUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:37:36.791 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:37:36.791 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:37:36.792 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:37:37.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.GetPostedRssDataByUser (Api.Socioboard)" in 21200.4155ms +2017-12-22 12:37:37.545 +05:30 [Information] Request finished in 21206.6123ms 200 application/json; charset=utf-8 +2017-12-22 12:37:37.545 +05:30 [Debug] Connection id ""0HLA90QMUH4U7"" completed keep alive response. +2017-12-22 12:39:02.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U6"" received FIN. +2017-12-22 12:40:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U7"" received FIN. +2017-12-22 12:40:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U7"" disconnecting. +2017-12-22 12:40:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U7"" sending FIN. +2017-12-22 12:40:08.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U7"" sent FIN with status "0". +2017-12-22 12:40:08.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U7"" stopped. +2017-12-22 12:40:09.470 +05:30 [Debug] Connection id ""0HLA90QMUH4U8"" started. +2017-12-22 12:40:09.476 +05:30 [Debug] Connection id ""0HLA90QMUH4U9"" started. +2017-12-22 12:40:09.551 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-22 12:40:09.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:40:09.554 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:40:09.570 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetFeeds?profileId=758233674978426880&userId=48&skip=0&count=10 +2017-12-22 12:40:09.570 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetFeeds"'. +2017-12-22 12:40:09.573 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" +2017-12-22 12:40:12.603 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-22 12:40:12.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" with arguments (["758233674978426880", "48", "0", "10"]) - ModelState is Valid +2017-12-22 12:40:13.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:40:13.130 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:40:13.130 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:40:13.131 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:40:13.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3588.4058ms +2017-12-22 12:40:13.147 +05:30 [Information] Request finished in 3631.851ms 200 application/json; charset=utf-8 +2017-12-22 12:40:13.147 +05:30 [Debug] Connection id ""0HLA90QMUH4U9"" completed keep alive response. +2017-12-22 12:40:14.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:40:14.777 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:40:14.778 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:40:14.779 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:40:14.790 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetFeeds (Api.Socioboard)" in 5217.2824ms +2017-12-22 12:40:14.792 +05:30 [Information] Request finished in 5275.6643ms 200 application/json; charset=utf-8 +2017-12-22 12:40:14.793 +05:30 [Debug] Connection id ""0HLA90QMUH4U8"" completed keep alive response. +2017-12-22 12:41:58.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U8"" received FIN. +2017-12-22 12:41:58.225 +05:30 [Debug] Connection id ""0HLA90QMUH4U9"" received FIN. +2017-12-22 12:41:58.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U8"" disconnecting. +2017-12-22 12:41:58.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U8"" sending FIN. +2017-12-22 12:41:58.226 +05:30 [Debug] Connection id ""0HLA90QMUH4U9"" disconnecting. +2017-12-22 12:41:58.227 +05:30 [Debug] Connection id ""0HLA90QMUH4U8"" sent FIN with status "0". +2017-12-22 12:41:58.227 +05:30 [Debug] Connection id ""0HLA90QMUH4U9"" sending FIN. +2017-12-22 12:41:58.227 +05:30 [Debug] Connection id ""0HLA90QMUH4U8"" stopped. +2017-12-22 12:41:58.228 +05:30 [Debug] Connection id ""0HLA90QMUH4U9"" sent FIN with status "0". +2017-12-22 12:41:58.228 +05:30 [Debug] Connection id ""0HLA90QMUH4U9"" stopped. +2017-12-22 12:44:22.045 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" started. +2017-12-22 12:44:22.046 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=10&count=10 +2017-12-22 12:44:22.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:22.047 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:25.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "10", "10"]) - ModelState is Valid +2017-12-22 12:44:26.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:26.139 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:26.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:26.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:26.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 4092.7793ms +2017-12-22 12:44:26.143 +05:30 [Information] Request finished in 4096.8526ms 200 application/json; charset=utf-8 +2017-12-22 12:44:26.144 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:26.149 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=20&count=10 +2017-12-22 12:44:26.150 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:26.150 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:29.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "20", "10"]) - ModelState is Valid +2017-12-22 12:44:30.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:30.021 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:30.022 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:30.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:30.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3874.1394ms +2017-12-22 12:44:30.032 +05:30 [Information] Request finished in 3881.4328ms 200 application/json; charset=utf-8 +2017-12-22 12:44:30.032 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:30.142 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=30&count=10 +2017-12-22 12:44:30.143 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:30.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:33.185 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "30", "10"]) - ModelState is Valid +2017-12-22 12:44:33.851 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:33.852 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:33.852 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:33.853 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:33.855 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3709.7546ms +2017-12-22 12:44:33.858 +05:30 [Information] Request finished in 3715.0682ms 200 application/json; charset=utf-8 +2017-12-22 12:44:33.859 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:33.908 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=40&count=10 +2017-12-22 12:44:33.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:33.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:36.939 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "40", "10"]) - ModelState is Valid +2017-12-22 12:44:37.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:37.598 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:37.598 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:37.599 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:37.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3690.5079ms +2017-12-22 12:44:37.606 +05:30 [Information] Request finished in 3697.0692ms 200 application/json; charset=utf-8 +2017-12-22 12:44:37.606 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:37.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=50&count=10 +2017-12-22 12:44:37.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:37.633 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:39.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "50", "10"]) - ModelState is Valid +2017-12-22 12:44:40.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:40.389 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:40.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:40.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:40.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2757.0031ms +2017-12-22 12:44:40.393 +05:30 [Information] Request finished in 2762.5727ms 200 application/json; charset=utf-8 +2017-12-22 12:44:40.394 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:40.399 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=60&count=10 +2017-12-22 12:44:40.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:40.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:42.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "60", "10"]) - ModelState is Valid +2017-12-22 12:44:43.140 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:43.141 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:43.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:43.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:43.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2742.4757ms +2017-12-22 12:44:43.145 +05:30 [Information] Request finished in 2745.9776ms 200 application/json; charset=utf-8 +2017-12-22 12:44:43.145 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:43.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=70&count=10 +2017-12-22 12:44:43.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:43.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:45.249 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "70", "10"]) - ModelState is Valid +2017-12-22 12:44:45.696 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:45.696 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:45.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:45.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:45.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2536.8504ms +2017-12-22 12:44:45.701 +05:30 [Information] Request finished in 2540.1826ms 200 application/json; charset=utf-8 +2017-12-22 12:44:45.701 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:45.706 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=80&count=10 +2017-12-22 12:44:45.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:45.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:48.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "80", "10"]) - ModelState is Valid +2017-12-22 12:44:49.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:49.241 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:49.241 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:49.242 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:49.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3536.1391ms +2017-12-22 12:44:49.247 +05:30 [Information] Request finished in 3540.8686ms 200 application/json; charset=utf-8 +2017-12-22 12:44:49.247 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:49.252 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=90&count=10 +2017-12-22 12:44:49.252 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:49.253 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:51.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "90", "10"]) - ModelState is Valid +2017-12-22 12:44:51.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:51.563 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:51.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:51.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:51.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2314.5546ms +2017-12-22 12:44:51.572 +05:30 [Information] Request finished in 2320.7131ms 200 application/json; charset=utf-8 +2017-12-22 12:44:51.573 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:51.578 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=100&count=10 +2017-12-22 12:44:51.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:51.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:54.607 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "100", "10"]) - ModelState is Valid +2017-12-22 12:44:54.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:54.807 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:54.807 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:54.809 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:54.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3231.3016ms +2017-12-22 12:44:54.814 +05:30 [Information] Request finished in 3234.8154ms 200 application/json; charset=utf-8 +2017-12-22 12:44:54.814 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:54.821 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=110&count=10 +2017-12-22 12:44:54.822 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:54.822 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:44:57.877 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "110", "10"]) - ModelState is Valid +2017-12-22 12:44:58.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:44:58.079 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:44:58.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:44:58.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:44:58.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3261.6177ms +2017-12-22 12:44:58.094 +05:30 [Information] Request finished in 3271.7858ms 200 application/json; charset=utf-8 +2017-12-22 12:44:58.095 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:44:58.104 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=120&count=10 +2017-12-22 12:44:58.105 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:44:58.105 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:00.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "120", "10"]) - ModelState is Valid +2017-12-22 12:45:00.408 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:00.408 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:00.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:00.409 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:00.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2305.9008ms +2017-12-22 12:45:00.417 +05:30 [Information] Request finished in 2311.2772ms 200 application/json; charset=utf-8 +2017-12-22 12:45:00.418 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:00.425 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=130&count=10 +2017-12-22 12:45:00.426 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:00.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:03.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "130", "10"]) - ModelState is Valid +2017-12-22 12:45:03.674 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:03.675 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:03.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:03.676 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:03.680 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3252.708ms +2017-12-22 12:45:03.683 +05:30 [Information] Request finished in 3258.0862ms 200 application/json; charset=utf-8 +2017-12-22 12:45:03.684 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:03.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=140&count=10 +2017-12-22 12:45:03.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:03.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:05.800 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "140", "10"]) - ModelState is Valid +2017-12-22 12:45:06.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:06.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:06.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:06.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:06.008 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2318.207ms +2017-12-22 12:45:06.012 +05:30 [Information] Request finished in 2323.1141ms 200 application/json; charset=utf-8 +2017-12-22 12:45:06.013 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:06.021 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=150&count=10 +2017-12-22 12:45:06.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:06.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:09.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "150", "10"]) - ModelState is Valid +2017-12-22 12:45:09.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:09.251 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:09.251 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:09.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:09.253 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3230.5832ms +2017-12-22 12:45:09.256 +05:30 [Information] Request finished in 3235.4794ms 200 application/json; charset=utf-8 +2017-12-22 12:45:09.257 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:09.264 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=160&count=10 +2017-12-22 12:45:09.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:09.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:11.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "160", "10"]) - ModelState is Valid +2017-12-22 12:45:11.563 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:11.564 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:11.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:11.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:11.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2300.0252ms +2017-12-22 12:45:11.569 +05:30 [Information] Request finished in 2304.8953ms 200 application/json; charset=utf-8 +2017-12-22 12:45:11.570 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:11.578 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=170&count=10 +2017-12-22 12:45:11.579 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:11.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:13.666 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "170", "10"]) - ModelState is Valid +2017-12-22 12:45:13.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:13.868 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:13.868 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:13.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:13.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2291.2104ms +2017-12-22 12:45:13.873 +05:30 [Information] Request finished in 2295.3048ms 200 application/json; charset=utf-8 +2017-12-22 12:45:13.874 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:13.891 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=180&count=10 +2017-12-22 12:45:13.891 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:13.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:16.931 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "180", "10"]) - ModelState is Valid +2017-12-22 12:45:17.136 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:17.136 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:17.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:17.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:17.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3245.3993ms +2017-12-22 12:45:17.143 +05:30 [Information] Request finished in 3250.5315ms 200 application/json; charset=utf-8 +2017-12-22 12:45:17.144 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:17.164 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=190&count=10 +2017-12-22 12:45:17.165 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:17.165 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:20.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "190", "10"]) - ModelState is Valid +2017-12-22 12:45:20.444 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:20.445 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:20.445 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:20.446 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:20.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3282.4297ms +2017-12-22 12:45:20.452 +05:30 [Information] Request finished in 3287.5566ms 200 application/json; charset=utf-8 +2017-12-22 12:45:20.453 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:20.461 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=200&count=10 +2017-12-22 12:45:20.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:20.462 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:23.515 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "200", "10"]) - ModelState is Valid +2017-12-22 12:45:23.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:23.717 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:23.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:23.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:23.725 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3258.9555ms +2017-12-22 12:45:23.728 +05:30 [Information] Request finished in 3268.0077ms 200 application/json; charset=utf-8 +2017-12-22 12:45:23.729 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:23.746 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=210&count=10 +2017-12-22 12:45:23.747 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:23.748 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:26.813 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "210", "10"]) - ModelState is Valid +2017-12-22 12:45:27.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:27.014 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:27.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:27.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:27.017 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3267.6478ms +2017-12-22 12:45:27.019 +05:30 [Information] Request finished in 3272.572ms 200 application/json; charset=utf-8 +2017-12-22 12:45:27.020 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:27.076 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=220&count=10 +2017-12-22 12:45:27.077 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:27.078 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:30.130 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "220", "10"]) - ModelState is Valid +2017-12-22 12:45:30.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:30.335 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:30.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:30.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:30.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3259.7908ms +2017-12-22 12:45:30.343 +05:30 [Information] Request finished in 3269.4087ms 200 application/json; charset=utf-8 +2017-12-22 12:45:30.343 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:30.351 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=230&count=10 +2017-12-22 12:45:30.352 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:30.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:33.396 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "230", "10"]) - ModelState is Valid +2017-12-22 12:45:33.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:33.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:33.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:33.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:33.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3249.5105ms +2017-12-22 12:45:33.606 +05:30 [Information] Request finished in 3255.6345ms 200 application/json; charset=utf-8 +2017-12-22 12:45:33.607 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:33.615 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=240&count=10 +2017-12-22 12:45:33.616 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:33.616 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:36.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "240", "10"]) - ModelState is Valid +2017-12-22 12:45:36.851 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:36.851 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:36.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:36.852 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:36.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3235.6502ms +2017-12-22 12:45:36.856 +05:30 [Information] Request finished in 3240.4863ms 200 application/json; charset=utf-8 +2017-12-22 12:45:36.857 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:36.885 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=250&count=10 +2017-12-22 12:45:36.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:36.887 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:39.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "250", "10"]) - ModelState is Valid +2017-12-22 12:45:40.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:40.134 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:40.134 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:40.135 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:40.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3249.7634ms +2017-12-22 12:45:40.145 +05:30 [Information] Request finished in 3269.1344ms 200 application/json; charset=utf-8 +2017-12-22 12:45:40.146 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:40.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=260&count=10 +2017-12-22 12:45:40.161 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:40.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:43.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "260", "10"]) - ModelState is Valid +2017-12-22 12:45:43.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:43.432 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:43.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:43.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:43.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3271.9413ms +2017-12-22 12:45:43.439 +05:30 [Information] Request finished in 3284.548ms 200 application/json; charset=utf-8 +2017-12-22 12:45:43.439 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:43.445 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=270&count=10 +2017-12-22 12:45:43.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:43.446 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:46.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "270", "10"]) - ModelState is Valid +2017-12-22 12:45:46.684 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:46.684 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:46.684 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:46.685 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:46.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3240.0049ms +2017-12-22 12:45:46.689 +05:30 [Information] Request finished in 3244.6551ms 200 application/json; charset=utf-8 +2017-12-22 12:45:46.690 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:46.695 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=280&count=10 +2017-12-22 12:45:46.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:46.696 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:49.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "280", "10"]) - ModelState is Valid +2017-12-22 12:45:49.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:49.948 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:49.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:49.949 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:49.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3255.8681ms +2017-12-22 12:45:49.958 +05:30 [Information] Request finished in 3262.2472ms 200 application/json; charset=utf-8 +2017-12-22 12:45:49.959 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:49.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=290&count=10 +2017-12-22 12:45:49.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:49.971 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:52.090 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "290", "10"]) - ModelState is Valid +2017-12-22 12:45:52.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:52.293 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:52.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:52.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:52.295 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2322.5904ms +2017-12-22 12:45:52.301 +05:30 [Information] Request finished in 2329.6138ms 200 application/json; charset=utf-8 +2017-12-22 12:45:52.302 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:52.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=300&count=10 +2017-12-22 12:45:52.309 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:52.309 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:55.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "300", "10"]) - ModelState is Valid +2017-12-22 12:45:55.574 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:55.575 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:55.575 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:55.576 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:55.579 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3267.7259ms +2017-12-22 12:45:55.582 +05:30 [Information] Request finished in 3272.8488ms 200 application/json; charset=utf-8 +2017-12-22 12:45:55.583 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:55.604 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=310&count=10 +2017-12-22 12:45:55.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:55.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:45:58.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "310", "10"]) - ModelState is Valid +2017-12-22 12:45:58.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:45:58.889 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:45:58.890 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:45:58.891 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:45:58.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3286.0707ms +2017-12-22 12:45:58.897 +05:30 [Information] Request finished in 3302.4502ms 200 application/json; charset=utf-8 +2017-12-22 12:45:58.897 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:45:58.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=320&count=10 +2017-12-22 12:45:58.904 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:45:58.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:01.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "320", "10"]) - ModelState is Valid +2017-12-22 12:46:02.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:02.135 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:02.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:02.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:02.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3232.6891ms +2017-12-22 12:46:02.144 +05:30 [Information] Request finished in 3240.4229ms 200 application/json; charset=utf-8 +2017-12-22 12:46:02.144 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:02.155 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=330&count=10 +2017-12-22 12:46:02.156 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:02.156 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:05.193 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "330", "10"]) - ModelState is Valid +2017-12-22 12:46:05.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:05.395 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:05.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:05.396 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:05.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3240.5096ms +2017-12-22 12:46:05.403 +05:30 [Information] Request finished in 3246.6505ms 200 application/json; charset=utf-8 +2017-12-22 12:46:05.403 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:05.427 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=340&count=10 +2017-12-22 12:46:05.427 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:05.428 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:07.518 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "340", "10"]) - ModelState is Valid +2017-12-22 12:46:07.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:07.722 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:07.722 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:07.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:07.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2296.7923ms +2017-12-22 12:46:07.732 +05:30 [Information] Request finished in 2302.9857ms 200 application/json; charset=utf-8 +2017-12-22 12:46:07.732 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:07.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=350&count=10 +2017-12-22 12:46:07.738 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:07.739 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:09.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "350", "10"]) - ModelState is Valid +2017-12-22 12:46:10.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:10.050 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:10.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:10.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:10.055 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2314.4358ms +2017-12-22 12:46:10.059 +05:30 [Information] Request finished in 2321.0117ms 200 application/json; charset=utf-8 +2017-12-22 12:46:10.060 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:10.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=360&count=10 +2017-12-22 12:46:10.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:10.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:12.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "360", "10"]) - ModelState is Valid +2017-12-22 12:46:12.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:12.388 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:12.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:12.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:12.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2313.0512ms +2017-12-22 12:46:12.392 +05:30 [Information] Request finished in 2316.9599ms 200 application/json; charset=utf-8 +2017-12-22 12:46:12.393 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:12.408 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=370&count=10 +2017-12-22 12:46:12.409 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:12.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:14.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "370", "10"]) - ModelState is Valid +2017-12-22 12:46:14.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:14.704 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:14.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:14.706 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:14.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2298.7775ms +2017-12-22 12:46:14.714 +05:30 [Information] Request finished in 2306.3657ms 200 application/json; charset=utf-8 +2017-12-22 12:46:14.715 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:14.722 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=380&count=10 +2017-12-22 12:46:14.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:14.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:17.755 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "380", "10"]) - ModelState is Valid +2017-12-22 12:46:17.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:17.959 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:17.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:17.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:17.964 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3238.6159ms +2017-12-22 12:46:17.968 +05:30 [Information] Request finished in 3245.538ms 200 application/json; charset=utf-8 +2017-12-22 12:46:17.970 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:17.990 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=390&count=10 +2017-12-22 12:46:17.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:17.992 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:21.012 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "390", "10"]) - ModelState is Valid +2017-12-22 12:46:21.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:21.215 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:21.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:21.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:21.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3227.8389ms +2017-12-22 12:46:21.226 +05:30 [Information] Request finished in 3235.3618ms 200 application/json; charset=utf-8 +2017-12-22 12:46:21.227 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:21.257 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=400&count=10 +2017-12-22 12:46:21.261 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:21.262 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:24.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "400", "10"]) - ModelState is Valid +2017-12-22 12:46:24.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:24.537 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:24.537 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:24.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:24.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3278.1754ms +2017-12-22 12:46:24.549 +05:30 [Information] Request finished in 3291.1394ms 200 application/json; charset=utf-8 +2017-12-22 12:46:24.549 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:24.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=410&count=10 +2017-12-22 12:46:24.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:24.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:25.827 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" started. +2017-12-22 12:46:25.829 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/GetPostedRssDataByUser?userId=48&groupId=48 +2017-12-22 12:46:25.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/GetPostedRssDataByUser"'. +2017-12-22 12:46:25.829 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.GetPostedRssDataByUser (Api.Socioboard)" +2017-12-22 12:46:27.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "410", "10"]) - ModelState is Valid +2017-12-22 12:46:27.974 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:27.974 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:27.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:27.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:27.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3256.1626ms +2017-12-22 12:46:27.990 +05:30 [Information] Request finished in 3266.3596ms 200 application/json; charset=utf-8 +2017-12-22 12:46:27.991 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:27.997 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=420&count=10 +2017-12-22 12:46:27.997 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:27.998 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:28.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.GetPostedRssDataByUser (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-22 12:46:29.563 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" started. +2017-12-22 12:46:29.640 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/GetRssDataByUser?userId=48&groupId=48 +2017-12-22 12:46:29.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/GetRssDataByUser"'. +2017-12-22 12:46:29.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)" +2017-12-22 12:46:31.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "420", "10"]) - ModelState is Valid +2017-12-22 12:46:31.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:31.259 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:31.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:31.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:31.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3264.3686ms +2017-12-22 12:46:31.269 +05:30 [Information] Request finished in 3270.9532ms 200 application/json; charset=utf-8 +2017-12-22 12:46:31.271 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:31.277 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=430&count=10 +2017-12-22 12:46:31.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:31.278 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:32.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-22 12:46:33.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:33.375 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:33.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:33.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:33.378 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.GetRssDataByUser (Api.Socioboard)" in 3736.9522ms +2017-12-22 12:46:33.383 +05:30 [Information] Request finished in 3772.0052ms 200 application/json; charset=utf-8 +2017-12-22 12:46:33.383 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:46:34.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "430", "10"]) - ModelState is Valid +2017-12-22 12:46:34.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:34.519 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:34.519 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:34.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:34.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3242.2777ms +2017-12-22 12:46:34.525 +05:30 [Information] Request finished in 3247.3907ms 200 application/json; charset=utf-8 +2017-12-22 12:46:34.525 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:34.530 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=440&count=10 +2017-12-22 12:46:34.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:34.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:37.564 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "440", "10"]) - ModelState is Valid +2017-12-22 12:46:37.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:37.769 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:37.769 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:37.770 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:37.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3239.5471ms +2017-12-22 12:46:37.818 +05:30 [Information] Request finished in 3287.1561ms 200 application/json; charset=utf-8 +2017-12-22 12:46:37.818 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:46:37.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=450&count=10 +2017-12-22 12:46:37.836 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:37.837 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:38.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.GetPostedRssDataByUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:38.065 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:38.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:38.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:39.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.GetPostedRssDataByUser (Api.Socioboard)" in 13384.993ms +2017-12-22 12:46:39.221 +05:30 [Information] Request finished in 13391.3712ms 200 application/json; charset=utf-8 +2017-12-22 12:46:39.222 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:46:40.939 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "450", "10"]) - ModelState is Valid +2017-12-22 12:46:41.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:41.147 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:41.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:41.149 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:41.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3314.2557ms +2017-12-22 12:46:41.155 +05:30 [Information] Request finished in 3319.944ms 200 application/json; charset=utf-8 +2017-12-22 12:46:41.156 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:41.164 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=460&count=10 +2017-12-22 12:46:41.165 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:41.166 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:43.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "460", "10"]) - ModelState is Valid +2017-12-22 12:46:43.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:43.460 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:43.460 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:43.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:43.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2298.9358ms +2017-12-22 12:46:43.471 +05:30 [Information] Request finished in 2306.6718ms 200 application/json; charset=utf-8 +2017-12-22 12:46:43.471 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:46:43.513 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=470&count=10 +2017-12-22 12:46:43.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:43.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:46.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "470", "10"]) - ModelState is Valid +2017-12-22 12:46:46.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:46.794 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:46.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:46.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:46.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3282.0111ms +2017-12-22 12:46:46.801 +05:30 [Information] Request finished in 3286.9066ms 200 application/json; charset=utf-8 +2017-12-22 12:46:46.802 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:46:46.807 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=480&count=10 +2017-12-22 12:46:46.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:46.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:49.853 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "480", "10"]) - ModelState is Valid +2017-12-22 12:46:50.062 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:50.063 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:50.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:50.064 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:50.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3257.5354ms +2017-12-22 12:46:50.070 +05:30 [Information] Request finished in 3263.5204ms 200 application/json; charset=utf-8 +2017-12-22 12:46:50.071 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:50.076 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=490&count=10 +2017-12-22 12:46:50.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:50.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:53.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "490", "10"]) - ModelState is Valid +2017-12-22 12:46:53.317 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:53.317 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:53.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:53.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:53.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3243.0185ms +2017-12-22 12:46:53.326 +05:30 [Information] Request finished in 3248.4895ms 200 application/json; charset=utf-8 +2017-12-22 12:46:53.326 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:46:53.334 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=500&count=10 +2017-12-22 12:46:53.335 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:53.335 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:56.398 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "500", "10"]) - ModelState is Valid +2017-12-22 12:46:56.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:56.605 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:56.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:56.607 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:56.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3273.4425ms +2017-12-22 12:46:56.621 +05:30 [Information] Request finished in 3286.2806ms 200 application/json; charset=utf-8 +2017-12-22 12:46:56.621 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:46:56.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=510&count=10 +2017-12-22 12:46:56.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:56.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:46:59.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "510", "10"]) - ModelState is Valid +2017-12-22 12:46:59.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:46:59.870 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:46:59.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:46:59.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:46:59.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3244.3742ms +2017-12-22 12:46:59.879 +05:30 [Information] Request finished in 3251.0578ms 200 application/json; charset=utf-8 +2017-12-22 12:46:59.880 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:46:59.887 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=520&count=10 +2017-12-22 12:46:59.888 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:46:59.889 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:02.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "520", "10"]) - ModelState is Valid +2017-12-22 12:47:03.140 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:03.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:03.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:03.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:03.144 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3253.9249ms +2017-12-22 12:47:03.148 +05:30 [Information] Request finished in 3260.2319ms 200 application/json; charset=utf-8 +2017-12-22 12:47:03.149 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:47:03.158 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=530&count=10 +2017-12-22 12:47:03.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:03.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:06.189 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "530", "10"]) - ModelState is Valid +2017-12-22 12:47:06.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:06.395 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:06.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:06.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:06.401 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3238.9154ms +2017-12-22 12:47:06.405 +05:30 [Information] Request finished in 3246.7755ms 200 application/json; charset=utf-8 +2017-12-22 12:47:06.406 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:47:06.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=540&count=10 +2017-12-22 12:47:06.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:06.415 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:09.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "540", "10"]) - ModelState is Valid +2017-12-22 12:47:09.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:09.662 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:09.663 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:09.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:09.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3250.4115ms +2017-12-22 12:47:09.668 +05:30 [Information] Request finished in 3255.2654ms 200 application/json; charset=utf-8 +2017-12-22 12:47:09.669 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:47:09.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=550&count=10 +2017-12-22 12:47:09.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:09.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:11.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "550", "10"]) - ModelState is Valid +2017-12-22 12:47:11.964 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:11.964 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:11.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:11.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:11.967 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2290.5044ms +2017-12-22 12:47:11.969 +05:30 [Information] Request finished in 2294.3721ms 200 application/json; charset=utf-8 +2017-12-22 12:47:11.970 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:47:11.977 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=560&count=10 +2017-12-22 12:47:11.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:11.977 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:15.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "560", "10"]) - ModelState is Valid +2017-12-22 12:47:15.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:15.236 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:15.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:15.237 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:15.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3260.3643ms +2017-12-22 12:47:15.242 +05:30 [Information] Request finished in 3265.1084ms 200 application/json; charset=utf-8 +2017-12-22 12:47:15.243 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:47:15.248 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=570&count=10 +2017-12-22 12:47:15.248 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:15.249 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:17.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "570", "10"]) - ModelState is Valid +2017-12-22 12:47:17.541 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:17.541 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:17.542 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:17.542 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:17.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2294.609ms +2017-12-22 12:47:17.547 +05:30 [Information] Request finished in 2298.9784ms 200 application/json; charset=utf-8 +2017-12-22 12:47:17.548 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:47:17.559 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=580&count=10 +2017-12-22 12:47:17.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:17.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:20.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "580", "10"]) - ModelState is Valid +2017-12-22 12:47:20.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:20.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:20.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:20.809 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:20.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3248.7625ms +2017-12-22 12:47:20.813 +05:30 [Information] Request finished in 3255.341ms 200 application/json; charset=utf-8 +2017-12-22 12:47:20.814 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:47:20.820 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=590&count=10 +2017-12-22 12:47:20.821 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:20.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:23.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "590", "10"]) - ModelState is Valid +2017-12-22 12:47:24.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:24.083 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:24.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:24.085 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:24.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3265.05ms +2017-12-22 12:47:24.095 +05:30 [Information] Request finished in 3271.8383ms 200 application/json; charset=utf-8 +2017-12-22 12:47:24.095 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:47:24.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=600&count=10 +2017-12-22 12:47:24.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:24.103 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:27.180 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "600", "10"]) - ModelState is Valid +2017-12-22 12:47:27.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:27.389 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:27.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:27.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:27.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3288.9002ms +2017-12-22 12:47:27.414 +05:30 [Information] Request finished in 3309.8652ms 200 application/json; charset=utf-8 +2017-12-22 12:47:27.415 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:47:27.419 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=610&count=10 +2017-12-22 12:47:27.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:27.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:30.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "610", "10"]) - ModelState is Valid +2017-12-22 12:47:30.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:30.689 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:30.689 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:30.691 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:30.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3272.3527ms +2017-12-22 12:47:30.700 +05:30 [Information] Request finished in 3279.2938ms 200 application/json; charset=utf-8 +2017-12-22 12:47:30.701 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:47:30.709 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=620&count=10 +2017-12-22 12:47:30.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:30.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:33.752 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "620", "10"]) - ModelState is Valid +2017-12-22 12:47:33.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:33.955 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:33.955 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:33.957 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:33.960 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3247.0585ms +2017-12-22 12:47:33.964 +05:30 [Information] Request finished in 3254.6166ms 200 application/json; charset=utf-8 +2017-12-22 12:47:33.965 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:47:33.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=630&count=10 +2017-12-22 12:47:33.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:33.974 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:37.026 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "630", "10"]) - ModelState is Valid +2017-12-22 12:47:37.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:37.229 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:37.229 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:37.231 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:37.233 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3257.7597ms +2017-12-22 12:47:37.237 +05:30 [Information] Request finished in 3263.9699ms 200 application/json; charset=utf-8 +2017-12-22 12:47:37.238 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:47:37.246 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=640&count=10 +2017-12-22 12:47:37.247 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:37.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:40.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "640", "10"]) - ModelState is Valid +2017-12-22 12:47:40.509 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:40.509 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:40.509 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:40.511 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:40.513 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3263.94ms +2017-12-22 12:47:40.517 +05:30 [Information] Request finished in 3270.4466ms 200 application/json; charset=utf-8 +2017-12-22 12:47:40.518 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:47:40.526 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=650&count=10 +2017-12-22 12:47:40.528 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:40.529 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:43.570 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "650", "10"]) - ModelState is Valid +2017-12-22 12:47:43.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:43.776 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:43.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:43.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:43.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3249.6259ms +2017-12-22 12:47:43.781 +05:30 [Information] Request finished in 3255.9726ms 200 application/json; charset=utf-8 +2017-12-22 12:47:43.781 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:47:43.786 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=660&count=10 +2017-12-22 12:47:43.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:43.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:46.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "660", "10"]) - ModelState is Valid +2017-12-22 12:47:47.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:47.041 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:47.041 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:47.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:47.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3256.4839ms +2017-12-22 12:47:47.049 +05:30 [Information] Request finished in 3262.0792ms 200 application/json; charset=utf-8 +2017-12-22 12:47:47.051 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:47:47.058 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=670&count=10 +2017-12-22 12:47:47.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:47.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:50.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "670", "10"]) - ModelState is Valid +2017-12-22 12:47:50.316 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:50.317 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:50.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:50.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:50.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3262.5286ms +2017-12-22 12:47:50.328 +05:30 [Information] Request finished in 3268.9712ms 200 application/json; charset=utf-8 +2017-12-22 12:47:50.328 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:47:50.343 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=680&count=10 +2017-12-22 12:47:50.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:50.344 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:53.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "680", "10"]) - ModelState is Valid +2017-12-22 12:47:53.595 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:53.596 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:53.596 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:53.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:53.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3255.53ms +2017-12-22 12:47:53.605 +05:30 [Information] Request finished in 3261.1313ms 200 application/json; charset=utf-8 +2017-12-22 12:47:53.605 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:47:53.612 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=690&count=10 +2017-12-22 12:47:53.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:53.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:56.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "690", "10"]) - ModelState is Valid +2017-12-22 12:47:56.861 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:47:56.861 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:47:56.862 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:47:56.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:47:56.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3249.4598ms +2017-12-22 12:47:56.868 +05:30 [Information] Request finished in 3255.5173ms 200 application/json; charset=utf-8 +2017-12-22 12:47:56.869 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:47:56.875 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=700&count=10 +2017-12-22 12:47:56.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:47:56.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:47:59.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "700", "10"]) - ModelState is Valid +2017-12-22 12:48:00.110 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:00.111 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:00.111 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:00.113 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:00.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3241.3431ms +2017-12-22 12:48:00.122 +05:30 [Information] Request finished in 3246.7948ms 200 application/json; charset=utf-8 +2017-12-22 12:48:00.123 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:48:00.129 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=710&count=10 +2017-12-22 12:48:00.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:00.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:03.162 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "710", "10"]) - ModelState is Valid +2017-12-22 12:48:03.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:03.369 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:03.369 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:03.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:03.371 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3240.3296ms +2017-12-22 12:48:03.374 +05:30 [Information] Request finished in 3245.2957ms 200 application/json; charset=utf-8 +2017-12-22 12:48:03.374 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:48:03.433 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=720&count=10 +2017-12-22 12:48:03.434 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:03.434 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:06.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "720", "10"]) - ModelState is Valid +2017-12-22 12:48:06.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:06.705 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:06.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:06.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:06.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3273.7787ms +2017-12-22 12:48:06.713 +05:30 [Information] Request finished in 3279.0158ms 200 application/json; charset=utf-8 +2017-12-22 12:48:06.714 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:48:06.722 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=730&count=10 +2017-12-22 12:48:06.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:06.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:08.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "730", "10"]) - ModelState is Valid +2017-12-22 12:48:09.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:09.036 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:09.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:09.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:09.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2316.2228ms +2017-12-22 12:48:09.045 +05:30 [Information] Request finished in 2322.6432ms 200 application/json; charset=utf-8 +2017-12-22 12:48:09.045 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:48:09.053 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=740&count=10 +2017-12-22 12:48:09.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:09.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:12.113 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "740", "10"]) - ModelState is Valid +2017-12-22 12:48:12.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:12.324 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:12.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:12.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:12.326 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3269.8678ms +2017-12-22 12:48:12.329 +05:30 [Information] Request finished in 3275.7427ms 200 application/json; charset=utf-8 +2017-12-22 12:48:12.330 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:48:12.336 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=750&count=10 +2017-12-22 12:48:12.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:12.337 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:15.388 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "750", "10"]) - ModelState is Valid +2017-12-22 12:48:15.594 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:15.594 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:15.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:15.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:15.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3260.0841ms +2017-12-22 12:48:15.602 +05:30 [Information] Request finished in 3265.244ms 200 application/json; charset=utf-8 +2017-12-22 12:48:15.603 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:48:15.611 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=760&count=10 +2017-12-22 12:48:15.612 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:15.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:18.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "760", "10"]) - ModelState is Valid +2017-12-22 12:48:18.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:18.874 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:18.874 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:18.876 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:18.883 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3266.0119ms +2017-12-22 12:48:18.891 +05:30 [Information] Request finished in 3277.359ms 200 application/json; charset=utf-8 +2017-12-22 12:48:18.891 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:48:18.900 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=770&count=10 +2017-12-22 12:48:18.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:18.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:21.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "770", "10"]) - ModelState is Valid +2017-12-22 12:48:22.148 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:22.148 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:22.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:22.150 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:22.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3248.8658ms +2017-12-22 12:48:22.154 +05:30 [Information] Request finished in 3254.9497ms 200 application/json; charset=utf-8 +2017-12-22 12:48:22.154 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:48:22.159 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=780&count=10 +2017-12-22 12:48:22.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:22.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:25.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "780", "10"]) - ModelState is Valid +2017-12-22 12:48:25.417 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:25.417 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:25.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:25.419 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:25.421 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3260.9972ms +2017-12-22 12:48:25.425 +05:30 [Information] Request finished in 3265.6754ms 200 application/json; charset=utf-8 +2017-12-22 12:48:25.426 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:48:25.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=790&count=10 +2017-12-22 12:48:25.434 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:25.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:28.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "790", "10"]) - ModelState is Valid +2017-12-22 12:48:28.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:28.679 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:28.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:28.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:28.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3246.3802ms +2017-12-22 12:48:28.685 +05:30 [Information] Request finished in 3251.6639ms 200 application/json; charset=utf-8 +2017-12-22 12:48:28.686 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:48:28.692 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=800&count=10 +2017-12-22 12:48:28.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:28.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:31.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "800", "10"]) - ModelState is Valid +2017-12-22 12:48:31.982 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:31.983 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:31.983 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:31.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:31.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3293.3423ms +2017-12-22 12:48:31.995 +05:30 [Information] Request finished in 3302.727ms 200 application/json; charset=utf-8 +2017-12-22 12:48:31.996 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:48:32.004 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=810&count=10 +2017-12-22 12:48:32.004 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:32.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:35.079 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "810", "10"]) - ModelState is Valid +2017-12-22 12:48:35.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:35.284 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:35.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:35.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:35.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3281.2426ms +2017-12-22 12:48:35.289 +05:30 [Information] Request finished in 3285.2365ms 200 application/json; charset=utf-8 +2017-12-22 12:48:35.289 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:48:35.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=820&count=10 +2017-12-22 12:48:35.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:35.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:38.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "820", "10"]) - ModelState is Valid +2017-12-22 12:48:38.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:38.538 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:38.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:38.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:38.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3245.5579ms +2017-12-22 12:48:38.545 +05:30 [Information] Request finished in 3250.6028ms 200 application/json; charset=utf-8 +2017-12-22 12:48:38.546 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:48:38.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=830&count=10 +2017-12-22 12:48:38.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:38.555 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:41.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "830", "10"]) - ModelState is Valid +2017-12-22 12:48:41.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:41.810 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:41.810 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:41.811 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:41.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3258.3294ms +2017-12-22 12:48:41.818 +05:30 [Information] Request finished in 3264.9299ms 200 application/json; charset=utf-8 +2017-12-22 12:48:41.818 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:48:41.825 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=840&count=10 +2017-12-22 12:48:41.826 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:41.826 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:44.883 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "840", "10"]) - ModelState is Valid +2017-12-22 12:48:45.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:45.090 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:45.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:45.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:45.095 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3266.7643ms +2017-12-22 12:48:45.099 +05:30 [Information] Request finished in 3273.4714ms 200 application/json; charset=utf-8 +2017-12-22 12:48:45.100 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:48:45.108 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=850&count=10 +2017-12-22 12:48:45.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:45.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:48.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "850", "10"]) - ModelState is Valid +2017-12-22 12:48:48.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:48.356 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:48.356 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:48.358 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:48.360 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3250.1484ms +2017-12-22 12:48:48.365 +05:30 [Information] Request finished in 3256.8381ms 200 application/json; charset=utf-8 +2017-12-22 12:48:48.366 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:48:48.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=860&count=10 +2017-12-22 12:48:48.373 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:48.374 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:51.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "860", "10"]) - ModelState is Valid +2017-12-22 12:48:51.636 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:51.637 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:51.637 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:51.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:51.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3264.9753ms +2017-12-22 12:48:51.645 +05:30 [Information] Request finished in 3271.3065ms 200 application/json; charset=utf-8 +2017-12-22 12:48:51.646 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:48:51.672 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=870&count=10 +2017-12-22 12:48:51.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:51.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:54.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "870", "10"]) - ModelState is Valid +2017-12-22 12:48:54.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:54.922 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:54.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:54.924 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:54.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3251.0341ms +2017-12-22 12:48:54.930 +05:30 [Information] Request finished in 3259.26ms 200 application/json; charset=utf-8 +2017-12-22 12:48:54.931 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:48:54.940 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=880&count=10 +2017-12-22 12:48:54.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:54.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:48:57.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "880", "10"]) - ModelState is Valid +2017-12-22 12:48:57.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:48:57.255 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:48:57.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:48:57.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:48:57.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2315.9171ms +2017-12-22 12:48:57.261 +05:30 [Information] Request finished in 2321.8769ms 200 application/json; charset=utf-8 +2017-12-22 12:48:57.262 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:48:57.266 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=890&count=10 +2017-12-22 12:48:57.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:48:57.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:00.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "890", "10"]) - ModelState is Valid +2017-12-22 12:49:00.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:00.508 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:00.509 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:00.510 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:00.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3246.7575ms +2017-12-22 12:49:00.522 +05:30 [Information] Request finished in 3253.9517ms 200 application/json; charset=utf-8 +2017-12-22 12:49:00.523 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:49:00.531 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=900&count=10 +2017-12-22 12:49:00.531 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:00.532 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:03.569 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "900", "10"]) - ModelState is Valid +2017-12-22 12:49:03.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:03.775 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:03.775 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:03.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:03.781 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3246.6272ms +2017-12-22 12:49:03.786 +05:30 [Information] Request finished in 3254.0428ms 200 application/json; charset=utf-8 +2017-12-22 12:49:03.787 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:49:03.793 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=910&count=10 +2017-12-22 12:49:03.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:03.795 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:06.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "910", "10"]) - ModelState is Valid +2017-12-22 12:49:07.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:07.050 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:07.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:07.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:07.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3256.7486ms +2017-12-22 12:49:07.057 +05:30 [Information] Request finished in 3263.3537ms 200 application/json; charset=utf-8 +2017-12-22 12:49:07.057 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:49:07.062 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=920&count=10 +2017-12-22 12:49:07.062 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:07.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:10.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "920", "10"]) - ModelState is Valid +2017-12-22 12:49:10.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:10.313 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:10.313 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:10.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:10.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3253.7707ms +2017-12-22 12:49:10.321 +05:30 [Information] Request finished in 3258.642ms 200 application/json; charset=utf-8 +2017-12-22 12:49:10.321 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:49:10.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=930&count=10 +2017-12-22 12:49:10.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:10.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:13.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "930", "10"]) - ModelState is Valid +2017-12-22 12:49:13.579 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:13.579 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:13.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:13.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:13.582 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3252.4293ms +2017-12-22 12:49:13.585 +05:30 [Information] Request finished in 3257.797ms 200 application/json; charset=utf-8 +2017-12-22 12:49:13.586 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:49:13.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=940&count=10 +2017-12-22 12:49:13.596 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:13.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:16.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "940", "10"]) - ModelState is Valid +2017-12-22 12:49:16.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:16.855 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:16.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:16.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:16.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3261.0952ms +2017-12-22 12:49:16.863 +05:30 [Information] Request finished in 3268.239ms 200 application/json; charset=utf-8 +2017-12-22 12:49:16.864 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:49:16.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=950&count=10 +2017-12-22 12:49:16.871 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:16.871 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:19.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "950", "10"]) - ModelState is Valid +2017-12-22 12:49:20.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:20.126 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:20.126 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:20.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:20.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3257.5295ms +2017-12-22 12:49:20.134 +05:30 [Information] Request finished in 3263.9938ms 200 application/json; charset=utf-8 +2017-12-22 12:49:20.135 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:49:20.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=960&count=10 +2017-12-22 12:49:20.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:20.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:23.179 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "960", "10"]) - ModelState is Valid +2017-12-22 12:49:23.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:23.384 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:23.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:23.386 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:23.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3242.7532ms +2017-12-22 12:49:23.397 +05:30 [Information] Request finished in 3253.0821ms 200 application/json; charset=utf-8 +2017-12-22 12:49:23.398 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:49:23.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=970&count=10 +2017-12-22 12:49:23.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:23.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:26.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "970", "10"]) - ModelState is Valid +2017-12-22 12:49:26.625 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:26.625 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:26.625 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:26.626 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:26.627 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3223.1641ms +2017-12-22 12:49:26.630 +05:30 [Information] Request finished in 3227.5388ms 200 application/json; charset=utf-8 +2017-12-22 12:49:26.631 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:49:26.635 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=980&count=10 +2017-12-22 12:49:26.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:26.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:29.695 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "980", "10"]) - ModelState is Valid +2017-12-22 12:49:29.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:29.901 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:29.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:29.901 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:29.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3266.4414ms +2017-12-22 12:49:29.906 +05:30 [Information] Request finished in 3270.088ms 200 application/json; charset=utf-8 +2017-12-22 12:49:29.906 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:49:29.925 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=990&count=10 +2017-12-22 12:49:29.925 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:29.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:32.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "990", "10"]) - ModelState is Valid +2017-12-22 12:49:32.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:32.239 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:32.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:32.241 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:32.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2315.8567ms +2017-12-22 12:49:32.247 +05:30 [Information] Request finished in 2323.2239ms 200 application/json; charset=utf-8 +2017-12-22 12:49:32.248 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:49:32.255 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=1000&count=10 +2017-12-22 12:49:32.256 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:32.257 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:35.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "1000", "10"]) - ModelState is Valid +2017-12-22 12:49:35.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:35.511 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:35.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:35.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:35.515 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3256.8627ms +2017-12-22 12:49:35.520 +05:30 [Information] Request finished in 3263.5556ms 200 application/json; charset=utf-8 +2017-12-22 12:49:35.521 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" completed keep alive response. +2017-12-22 12:49:35.549 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=1010&count=10 +2017-12-22 12:49:35.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:35.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:37.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "1010", "10"]) - ModelState is Valid +2017-12-22 12:49:37.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:37.868 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:37.868 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:37.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:37.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 2318.9615ms +2017-12-22 12:49:37.872 +05:30 [Information] Request finished in 2322.5904ms 200 application/json; charset=utf-8 +2017-12-22 12:49:37.872 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" completed keep alive response. +2017-12-22 12:49:37.876 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetUserTweets?profileId=758233674978426880&userId=48&skip=1020&count=10 +2017-12-22 12:49:37.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetUserTweets"'. +2017-12-22 12:49:37.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" +2017-12-22 12:49:40.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" with arguments (["758233674978426880", "48", "1020", "10"]) - ModelState is Valid +2017-12-22 12:49:41.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 12:49:41.165 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 12:49:41.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 12:49:41.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 12:49:41.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetUserTweets (Api.Socioboard)" in 3289.0103ms +2017-12-22 12:49:41.169 +05:30 [Information] Request finished in 3292.3247ms 200 application/json; charset=utf-8 +2017-12-22 12:49:41.169 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" completed keep alive response. +2017-12-22 12:51:08.224 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" received FIN. +2017-12-22 12:51:08.224 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" received FIN. +2017-12-22 12:51:08.224 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" disconnecting. +2017-12-22 12:51:08.224 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" disconnecting. +2017-12-22 12:51:08.224 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" received FIN. +2017-12-22 12:51:08.224 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" sending FIN. +2017-12-22 12:51:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" sending FIN. +2017-12-22 12:51:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" sent FIN with status "0". +2017-12-22 12:51:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" sent FIN with status "0". +2017-12-22 12:51:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" disconnecting. +2017-12-22 12:51:08.226 +05:30 [Debug] Connection id ""0HLA90QMUH4UC"" stopped. +2017-12-22 12:51:08.225 +05:30 [Debug] Connection id ""0HLA90QMUH4UB"" stopped. +2017-12-22 12:51:08.227 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" sending FIN. +2017-12-22 12:51:08.227 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" sent FIN with status "0". +2017-12-22 12:51:08.227 +05:30 [Debug] Connection id ""0HLA90QMUH4UA"" stopped. +2017-12-22 15:17:13.804 +05:30 [Debug] Connection id ""0HLA90QMUH4UD"" started. +2017-12-22 15:17:14.611 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-22 15:17:19.162 +05:30 [Debug] Request did not match any routes. +2017-12-22 15:17:22.270 +05:30 [Debug] The request path "" does not match the path filter +2017-12-22 15:17:22.387 +05:30 [Information] Request finished in 8248.8633ms 404 +2017-12-22 15:17:22.409 +05:30 [Debug] Connection id ""0HLA90QMUH4UD"" completed keep alive response. +2017-12-22 15:17:22.822 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-22 15:17:22.823 +05:30 [Debug] Request did not match any routes. +2017-12-22 15:17:22.823 +05:30 [Debug] The request path "" does not match the path filter +2017-12-22 15:17:22.826 +05:30 [Information] Request finished in 51.7823ms 404 +2017-12-22 15:17:22.827 +05:30 [Debug] Connection id ""0HLA90QMUH4UD"" completed keep alive response. +2017-12-22 15:18:46.311 +05:30 [Debug] Connection id ""0HLA90QMUH4UD"" received FIN. +2017-12-22 15:18:46.311 +05:30 [Debug] Connection id ""0HLA90QMUH4UD"" disconnecting. +2017-12-22 15:18:46.312 +05:30 [Debug] Connection id ""0HLA90QMUH4UD"" sending FIN. +2017-12-22 15:18:46.313 +05:30 [Debug] Connection id ""0HLA90QMUH4UD"" sent FIN with status "0". +2017-12-22 15:18:46.313 +05:30 [Debug] Connection id ""0HLA90QMUH4UD"" stopped. +2017-12-22 15:22:50.351 +05:30 [Debug] Connection id ""0HLA90QMUH4UE"" started. +2017-12-22 15:22:50.392 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-22 15:22:50.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-22 15:22:50.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-22 15:22:54.272 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-22 15:22:58.443 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:22:58.574 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:22:58.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:22:58.751 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8029.8395ms +2017-12-22 15:22:58.752 +05:30 [Information] Request finished in 8381.674ms 200 application/json; charset=utf-8 +2017-12-22 15:22:58.753 +05:30 [Debug] Connection id ""0HLA90QMUH4UE"" completed keep alive response. +2017-12-22 15:22:59.295 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-22 15:22:59.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-22 15:22:59.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-22 15:23:02.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-22 15:23:04.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:23:04.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:23:04.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:23:04.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5388.1961ms +2017-12-22 15:23:04.714 +05:30 [Information] Request finished in 5391.5967ms 200 application/json; charset=utf-8 +2017-12-22 15:23:04.715 +05:30 [Debug] Connection id ""0HLA90QMUH4UE"" completed keep alive response. +2017-12-22 15:23:21.781 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-22 15:23:21.782 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-22 15:23:21.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-22 15:23:21.854 +05:30 [Debug] Connection id ""0HLA90QMUH4UF"" started. +2017-12-22 15:23:21.919 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-22 15:23:21.919 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-22 15:23:21.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-22 15:23:22.032 +05:30 [Debug] Connection id ""0HLA90QMUH4UG"" started. +2017-12-22 15:23:22.049 +05:30 [Debug] Connection id ""0HLA90QMUH4UH"" started. +2017-12-22 15:23:22.089 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-22 15:23:22.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-22 15:23:22.090 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-22 15:23:22.133 +05:30 [Debug] Connection id ""0HLA90QMUH4UI"" started. +2017-12-22 15:23:22.155 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-22 15:23:22.155 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-22 15:23:22.156 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-22 15:23:22.171 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-22 15:23:22.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-22 15:23:22.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-22 15:23:22.178 +05:30 [Debug] Connection id ""0HLA90QMUH4UJ"" started. +2017-12-22 15:23:22.275 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-22 15:23:22.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-22 15:23:22.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-22 15:23:24.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 15:23:24.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 15:23:25.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:23:25.053 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 15:23:25.054 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:23:25.054 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:23:25.061 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2903.6144ms +2017-12-22 15:23:25.063 +05:30 [Information] Request finished in 2928.7292ms 200 application/json; charset=utf-8 +2017-12-22 15:23:25.063 +05:30 [Debug] Connection id ""0HLA90QMUH4UH"" completed keep alive response. +2017-12-22 15:23:25.124 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-22 15:23:25.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-22 15:23:25.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 15:23:25.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-22 15:23:26.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:23:26.935 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 15:23:26.935 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:23:26.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:23:27.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 15:23:27.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4943.8787ms +2017-12-22 15:23:27.119 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 15:23:27.157 +05:30 [Information] Request finished in 5083.962ms 200 application/json; charset=utf-8 +2017-12-22 15:23:27.157 +05:30 [Debug] Connection id ""0HLA90QMUH4UG"" completed keep alive response. +2017-12-22 15:23:27.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 15:23:27.495 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:23:27.495 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 15:23:27.495 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:23:27.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:23:27.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5593.8776ms +2017-12-22 15:23:27.614 +05:30 [Information] Request finished in 5620.8006ms 200 application/json; charset=utf-8 +2017-12-22 15:23:27.615 +05:30 [Debug] Connection id ""0HLA90QMUH4UF"" completed keep alive response. +2017-12-22 15:23:28.210 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:23:28.210 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 15:23:28.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:23:28.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:23:28.243 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6070.4621ms +2017-12-22 15:23:28.246 +05:30 [Information] Request finished in 6074.8218ms 200 application/json; charset=utf-8 +2017-12-22 15:23:28.246 +05:30 [Debug] Connection id ""0HLA90QMUH4UI"" completed keep alive response. +2017-12-22 15:23:29.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-22 15:23:29.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:23:29.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:23:29.280 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 15:23:29.280 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 15:23:29.281 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:23:29.281 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:23:29.302 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:23:29.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:23:29.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7520.3555ms +2017-12-22 15:23:29.364 +05:30 [Information] Request finished in 7562.966ms 200 application/json; charset=utf-8 +2017-12-22 15:23:29.364 +05:30 [Debug] Connection id ""0HLA90QMUH4UE"" completed keep alive response. +2017-12-22 15:23:29.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7067.7233ms +2017-12-22 15:23:29.371 +05:30 [Information] Request finished in 7174.6554ms 200 application/json; charset=utf-8 +2017-12-22 15:23:29.371 +05:30 [Debug] Connection id ""0HLA90QMUH4UJ"" completed keep alive response. +2017-12-22 15:23:31.649 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:23:31.650 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 15:23:31.650 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:23:31.651 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:23:31.695 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6559.5449ms +2017-12-22 15:23:31.697 +05:30 [Information] Request finished in 6591.7734ms 200 application/json; charset=utf-8 +2017-12-22 15:23:31.697 +05:30 [Debug] Connection id ""0HLA90QMUH4UH"" completed keep alive response. +2017-12-22 15:26:06.282 +05:30 [Debug] Connection id ""0HLA90QMUH4UG"" received FIN. +2017-12-22 15:26:06.282 +05:30 [Debug] Connection id ""0HLA90QMUH4UF"" received FIN. +2017-12-22 15:26:06.283 +05:30 [Debug] Connection id ""0HLA90QMUH4UJ"" received FIN. +2017-12-22 15:26:06.282 +05:30 [Debug] Connection id ""0HLA90QMUH4UI"" received FIN. +2017-12-22 15:26:06.283 +05:30 [Debug] Connection id ""0HLA90QMUH4UF"" disconnecting. +2017-12-22 15:26:06.284 +05:30 [Debug] Connection id ""0HLA90QMUH4UE"" received FIN. +2017-12-22 15:26:06.284 +05:30 [Debug] Connection id ""0HLA90QMUH4UJ"" disconnecting. +2017-12-22 15:26:06.285 +05:30 [Debug] Connection id ""0HLA90QMUH4UE"" disconnecting. +2017-12-22 15:26:06.284 +05:30 [Debug] Connection id ""0HLA90QMUH4UI"" disconnecting. +2017-12-22 15:26:06.289 +05:30 [Debug] Connection id ""0HLA90QMUH4UE"" sending FIN. +2017-12-22 15:26:06.282 +05:30 [Debug] Connection id ""0HLA90QMUH4UG"" disconnecting. +2017-12-22 15:26:06.292 +05:30 [Debug] Connection id ""0HLA90QMUH4UI"" sending FIN. +2017-12-22 15:26:06.283 +05:30 [Debug] Connection id ""0HLA90QMUH4UH"" received FIN. +2017-12-22 15:26:06.292 +05:30 [Debug] Connection id ""0HLA90QMUH4UG"" sending FIN. +2017-12-22 15:26:06.292 +05:30 [Debug] Connection id ""0HLA90QMUH4UH"" disconnecting. +2017-12-22 15:26:06.293 +05:30 [Debug] Connection id ""0HLA90QMUH4UG"" sent FIN with status "0". +2017-12-22 15:26:06.292 +05:30 [Debug] Connection id ""0HLA90QMUH4UF"" sending FIN. +2017-12-22 15:26:06.293 +05:30 [Debug] Connection id ""0HLA90QMUH4UG"" stopped. +2017-12-22 15:26:06.293 +05:30 [Debug] Connection id ""0HLA90QMUH4UJ"" sending FIN. +2017-12-22 15:26:06.294 +05:30 [Debug] Connection id ""0HLA90QMUH4UH"" sending FIN. +2017-12-22 15:26:06.294 +05:30 [Debug] Connection id ""0HLA90QMUH4UH"" sent FIN with status "0". +2017-12-22 15:26:06.294 +05:30 [Debug] Connection id ""0HLA90QMUH4UH"" stopped. +2017-12-22 15:26:06.293 +05:30 [Debug] Connection id ""0HLA90QMUH4UI"" sent FIN with status "0". +2017-12-22 15:26:06.295 +05:30 [Debug] Connection id ""0HLA90QMUH4UJ"" sent FIN with status "0". +2017-12-22 15:26:06.295 +05:30 [Debug] Connection id ""0HLA90QMUH4UI"" stopped. +2017-12-22 15:26:06.295 +05:30 [Debug] Connection id ""0HLA90QMUH4UJ"" stopped. +2017-12-22 15:26:06.295 +05:30 [Debug] Connection id ""0HLA90QMUH4UE"" sent FIN with status "0". +2017-12-22 15:26:06.296 +05:30 [Debug] Connection id ""0HLA90QMUH4UF"" sent FIN with status "0". +2017-12-22 15:26:06.296 +05:30 [Debug] Connection id ""0HLA90QMUH4UE"" stopped. +2017-12-22 15:26:06.296 +05:30 [Debug] Connection id ""0HLA90QMUH4UF"" stopped. +2017-12-22 15:39:01.208 +05:30 [Debug] Connection id ""0HLA90QMUH4UK"" started. +2017-12-22 15:39:01.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=1155481037833115 +2017-12-22 15:39:01.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-22 15:39:01.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-22 15:39:01.249 +05:30 [Debug] Connection id ""0HLA90QMUH4UL"" started. +2017-12-22 15:39:01.289 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=1155481037833115&userId=48&skip=0&count=10&type=undefined +2017-12-22 15:39:01.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-22 15:39:01.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-22 15:39:04.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["1155481037833115"]) - ModelState is Valid +2017-12-22 15:39:04.400 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["1155481037833115", "48", "0", "10"]) - ModelState is Valid +2017-12-22 15:39:05.622 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:39:05.622 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 15:39:05.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:39:05.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:39:05.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 4425.7956ms +2017-12-22 15:39:05.752 +05:30 [Information] Request finished in 4463.1958ms 200 application/json; charset=utf-8 +2017-12-22 15:39:05.753 +05:30 [Debug] Connection id ""0HLA90QMUH4UL"" completed keep alive response. +2017-12-22 15:39:06.502 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 15:39:06.503 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 15:39:06.503 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-22 15:39:06.504 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 15:39:06.524 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 5288.0651ms +2017-12-22 15:39:06.527 +05:30 [Information] Request finished in 5294.614ms 200 application/json; charset=utf-8 +2017-12-22 15:39:06.528 +05:30 [Debug] Connection id ""0HLA90QMUH4UK"" completed keep alive response. +2017-12-22 15:40:46.296 +05:30 [Debug] Connection id ""0HLA90QMUH4UL"" received FIN. +2017-12-22 15:40:46.296 +05:30 [Debug] Connection id ""0HLA90QMUH4UK"" received FIN. +2017-12-22 15:40:46.297 +05:30 [Debug] Connection id ""0HLA90QMUH4UL"" disconnecting. +2017-12-22 15:40:46.298 +05:30 [Debug] Connection id ""0HLA90QMUH4UL"" sending FIN. +2017-12-22 15:40:46.297 +05:30 [Debug] Connection id ""0HLA90QMUH4UK"" disconnecting. +2017-12-22 15:40:46.298 +05:30 [Debug] Connection id ""0HLA90QMUH4UL"" sent FIN with status "0". +2017-12-22 15:40:46.299 +05:30 [Debug] Connection id ""0HLA90QMUH4UL"" stopped. +2017-12-22 15:40:46.298 +05:30 [Debug] Connection id ""0HLA90QMUH4UK"" sending FIN. +2017-12-22 15:40:46.299 +05:30 [Debug] Connection id ""0HLA90QMUH4UK"" sent FIN with status "0". +2017-12-22 15:40:46.300 +05:30 [Debug] Connection id ""0HLA90QMUH4UK"" stopped. +2017-12-22 16:34:16.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.PostRssFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-22 16:34:16.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-22 16:34:16.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-22 16:34:16.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-22 16:34:16.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.PostRssFeeds (Api.Socioboard)" in 14234635.8711ms +2017-12-22 16:34:16.293 +05:30 [Information] Request finished in 14234641.3439ms 200 text/plain; charset=utf-8 +2017-12-22 16:34:16.322 +05:30 [Information] Connection id ""0HLA90QMUH4U6"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-22 16:34:16.323 +05:30 [Debug] Connection id ""0HLA90QMUH4U6"" disconnecting. +2017-12-22 16:34:16.360 +05:30 [Debug] Connection id ""0HLA90QMUH4U6"" stopped. +2017-12-22 16:34:16.361 +05:30 [Information] Connection id ""0HLA90QMUH4U6"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer diff --git a/src/Api.Socioboard/wwwroot/log/log-20171223.txt b/src/Api.Socioboard/wwwroot/log/log-20171223.txt new file mode 100644 index 000000000..ad90ffe0b --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171223.txt @@ -0,0 +1,155 @@ +2017-12-23 15:13:11.689 +05:30 [Debug] Hosting starting +2017-12-23 15:13:12.538 +05:30 [Debug] Hosting started +2017-12-23 15:13:12.716 +05:30 [Debug] Connection id ""0HLA9T6ANPJSR"" started. +2017-12-23 15:13:12.719 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" started. +2017-12-23 15:13:13.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-23 15:13:13.133 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-23 15:13:13.267 +05:30 [Information] Request finished in 146.9894ms 200 +2017-12-23 15:13:13.391 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" completed keep alive response. +2017-12-23 15:13:15.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-23 15:13:15.694 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0586f4c3-503b-443a-b12e-081ec90c6195"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-23 15:13:16.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-23 15:13:16.197 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-23 15:13:16.213 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-23 15:13:16.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-23 15:13:16.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:13:16.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:13:17.122 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1108.4361ms +2017-12-23 15:13:17.461 +05:30 [Information] Request finished in 4414.4305ms 200 application/json; charset=utf-8 +2017-12-23 15:13:17.463 +05:30 [Debug] Connection id ""0HLA9T6ANPJSR"" completed keep alive response. +2017-12-23 15:13:17.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-23 15:13:17.539 +05:30 [Debug] Request did not match any routes. +2017-12-23 15:13:17.559 +05:30 [Debug] The request path "" does not match the path filter +2017-12-23 15:13:17.562 +05:30 [Information] Request finished in 25.1073ms 404 +2017-12-23 15:13:17.563 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" completed keep alive response. +2017-12-23 15:13:47.037 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-23 15:13:47.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-23 15:13:47.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-23 15:13:52.952 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-23 15:14:07.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-23 15:14:07.040 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:14:07.041 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:14:07.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 20158.5766ms +2017-12-23 15:14:07.204 +05:30 [Information] Request finished in 20167.5959ms 200 application/json; charset=utf-8 +2017-12-23 15:14:07.205 +05:30 [Debug] Connection id ""0HLA9T6ANPJSR"" completed keep alive response. +2017-12-23 15:14:07.884 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-23 15:14:07.885 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-23 15:14:07.886 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-23 15:14:10.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-23 15:14:13.135 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-23 15:14:13.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:14:13.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:14:13.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5398.5209ms +2017-12-23 15:14:13.289 +05:30 [Information] Request finished in 5404.2313ms 200 application/json; charset=utf-8 +2017-12-23 15:14:13.290 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" completed keep alive response. +2017-12-23 15:14:17.988 +05:30 [Debug] Connection id ""0HLA9T6ANPJST"" started. +2017-12-23 15:14:17.988 +05:30 [Debug] Connection id ""0HLA9T6ANPJSU"" started. +2017-12-23 15:14:17.992 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-23 15:14:17.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-23 15:14:18.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-23 15:14:18.041 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-23 15:14:18.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-23 15:14:18.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-23 15:14:18.050 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-23 15:14:18.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-23 15:14:18.066 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-23 15:14:18.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-23 15:14:18.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-23 15:14:18.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-23 15:14:18.689 +05:30 [Debug] Connection id ""0HLA9T6ANPJSV"" started. +2017-12-23 15:14:19.247 +05:30 [Debug] Connection id ""0HLA9T6ANPJT0"" started. +2017-12-23 15:14:20.336 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-23 15:14:20.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-23 15:14:20.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-23 15:14:21.346 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-23 15:14:21.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-23 15:14:21.349 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-23 15:14:23.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-23 15:14:23.525 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-23 15:14:23.525 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-23 15:14:24.399 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-23 15:14:24.400 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-23 15:14:24.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-23 15:14:24.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-23 15:14:24.761 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-23 15:14:24.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:14:24.762 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:14:24.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6699.5166ms +2017-12-23 15:14:24.786 +05:30 [Information] Request finished in 6794.7927ms 200 application/json; charset=utf-8 +2017-12-23 15:14:24.786 +05:30 [Debug] Connection id ""0HLA9T6ANPJST"" completed keep alive response. +2017-12-23 15:14:24.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-23 15:14:24.796 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-23 15:14:24.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-23 15:14:25.498 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-23 15:14:25.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-23 15:14:25.499 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:14:25.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:14:25.509 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7441.323ms +2017-12-23 15:14:25.511 +05:30 [Information] Request finished in 7521.1586ms 200 application/json; charset=utf-8 +2017-12-23 15:14:25.512 +05:30 [Debug] Connection id ""0HLA9T6ANPJSU"" completed keep alive response. +2017-12-23 15:14:25.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-23 15:14:25.536 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-23 15:14:25.536 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:14:25.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:14:25.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7544.1914ms +2017-12-23 15:14:25.552 +05:30 [Information] Request finished in 7574.8704ms 200 application/json; charset=utf-8 +2017-12-23 15:14:25.553 +05:30 [Debug] Connection id ""0HLA9T6ANPJSR"" completed keep alive response. +2017-12-23 15:14:26.521 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-23 15:14:26.521 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-23 15:14:26.522 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:14:26.523 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:14:26.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 8485.9799ms +2017-12-23 15:14:26.533 +05:30 [Information] Request finished in 8545.0567ms 200 application/json; charset=utf-8 +2017-12-23 15:14:26.534 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" completed keep alive response. +2017-12-23 15:14:27.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-23 15:14:27.164 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-23 15:14:27.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:14:27.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:14:27.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5815.1945ms +2017-12-23 15:14:27.195 +05:30 [Information] Request finished in 5834.6019ms 200 application/json; charset=utf-8 +2017-12-23 15:14:27.196 +05:30 [Debug] Connection id ""0HLA9T6ANPJT0"" completed keep alive response. +2017-12-23 15:14:27.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-23 15:14:28.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-23 15:14:28.433 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-23 15:14:28.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:14:28.435 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:14:28.515 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8172.8373ms +2017-12-23 15:14:28.518 +05:30 [Information] Request finished in 8180.3742ms 200 application/json; charset=utf-8 +2017-12-23 15:14:28.519 +05:30 [Debug] Connection id ""0HLA9T6ANPJSV"" completed keep alive response. +2017-12-23 15:14:29.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-23 15:14:29.066 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-23 15:14:29.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-23 15:14:29.067 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-23 15:14:29.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4269.029ms +2017-12-23 15:14:29.075 +05:30 [Information] Request finished in 4278.9411ms 200 application/json; charset=utf-8 +2017-12-23 15:14:29.075 +05:30 [Debug] Connection id ""0HLA9T6ANPJST"" completed keep alive response. +2017-12-23 15:16:52.904 +05:30 [Debug] Connection id ""0HLA9T6ANPJSU"" received FIN. +2017-12-23 15:16:52.904 +05:30 [Debug] Connection id ""0HLA9T6ANPJSR"" received FIN. +2017-12-23 15:16:52.905 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" received FIN. +2017-12-23 15:16:52.905 +05:30 [Debug] Connection id ""0HLA9T6ANPJSV"" received FIN. +2017-12-23 15:16:52.906 +05:30 [Debug] Connection id ""0HLA9T6ANPJT0"" received FIN. +2017-12-23 15:16:52.906 +05:30 [Debug] Connection id ""0HLA9T6ANPJST"" received FIN. +2017-12-23 15:16:52.906 +05:30 [Debug] Connection id ""0HLA9T6ANPJSU"" disconnecting. +2017-12-23 15:16:52.911 +05:30 [Debug] Connection id ""0HLA9T6ANPJSU"" sending FIN. +2017-12-23 15:16:52.911 +05:30 [Debug] Connection id ""0HLA9T6ANPJSR"" disconnecting. +2017-12-23 15:16:52.912 +05:30 [Debug] Connection id ""0HLA9T6ANPJSR"" sending FIN. +2017-12-23 15:16:52.912 +05:30 [Debug] Connection id ""0HLA9T6ANPJSV"" disconnecting. +2017-12-23 15:16:52.915 +05:30 [Debug] Connection id ""0HLA9T6ANPJST"" disconnecting. +2017-12-23 15:16:52.911 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" disconnecting. +2017-12-23 15:16:52.915 +05:30 [Debug] Connection id ""0HLA9T6ANPJT0"" disconnecting. +2017-12-23 15:16:52.918 +05:30 [Debug] Connection id ""0HLA9T6ANPJSV"" sending FIN. +2017-12-23 15:16:52.918 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" sending FIN. +2017-12-23 15:16:52.918 +05:30 [Debug] Connection id ""0HLA9T6ANPJST"" sending FIN. +2017-12-23 15:16:52.918 +05:30 [Debug] Connection id ""0HLA9T6ANPJT0"" sending FIN. +2017-12-23 15:16:52.927 +05:30 [Debug] Connection id ""0HLA9T6ANPJST"" sent FIN with status "0". +2017-12-23 15:16:52.927 +05:30 [Debug] Connection id ""0HLA9T6ANPJT0"" sent FIN with status "0". +2017-12-23 15:16:52.930 +05:30 [Debug] Connection id ""0HLA9T6ANPJST"" stopped. +2017-12-23 15:16:52.930 +05:30 [Debug] Connection id ""0HLA9T6ANPJT0"" stopped. +2017-12-23 15:16:52.931 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" sent FIN with status "0". +2017-12-23 15:16:52.932 +05:30 [Debug] Connection id ""0HLA9T6ANPJSS"" stopped. +2017-12-23 15:16:52.931 +05:30 [Debug] Connection id ""0HLA9T6ANPJSV"" sent FIN with status "0". +2017-12-23 15:16:52.932 +05:30 [Debug] Connection id ""0HLA9T6ANPJSU"" sent FIN with status "0". +2017-12-23 15:16:52.933 +05:30 [Debug] Connection id ""0HLA9T6ANPJSV"" stopped. +2017-12-23 15:16:52.933 +05:30 [Debug] Connection id ""0HLA9T6ANPJSU"" stopped. +2017-12-23 15:16:52.933 +05:30 [Debug] Connection id ""0HLA9T6ANPJSR"" sent FIN with status "0". +2017-12-23 15:16:52.934 +05:30 [Debug] Connection id ""0HLA9T6ANPJSR"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171226.txt b/src/Api.Socioboard/wwwroot/log/log-20171226.txt new file mode 100644 index 000000000..5b51b72af --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171226.txt @@ -0,0 +1,7541 @@ +2017-12-26 10:29:58.786 +05:30 [Debug] Hosting starting +2017-12-26 10:29:59.214 +05:30 [Debug] Hosting started +2017-12-26 10:29:59.445 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" started. +2017-12-26 10:29:59.447 +05:30 [Debug] Connection id ""0HLAC3M1V4I21"" started. +2017-12-26 10:29:59.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-26 10:29:59.721 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-26 10:29:59.822 +05:30 [Information] Request finished in 118.4439ms 200 +2017-12-26 10:29:59.906 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" completed keep alive response. +2017-12-26 10:30:02.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-26 10:30:02.681 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"6bf4d8d0-be72-452c-a769-a70335ec2f48"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-26 10:30:03.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-26 10:30:03.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-26 10:30:03.198 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-26 10:30:03.238 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:30:03.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:30:03.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:30:03.726 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 682.2732ms +2017-12-26 10:30:03.858 +05:30 [Information] Request finished in 4182.98ms 200 application/json; charset=utf-8 +2017-12-26 10:30:03.861 +05:30 [Debug] Connection id ""0HLAC3M1V4I21"" completed keep alive response. +2017-12-26 10:30:03.915 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-26 10:30:03.918 +05:30 [Debug] Request did not match any routes. +2017-12-26 10:30:03.942 +05:30 [Debug] The request path "" does not match the path filter +2017-12-26 10:30:03.945 +05:30 [Information] Request finished in 30.6713ms 404 +2017-12-26 10:30:03.946 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" completed keep alive response. +2017-12-26 10:30:38.800 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-26 10:30:38.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-26 10:30:38.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-26 10:30:42.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-26 10:30:51.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:30:51.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:30:51.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:30:52.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 13254.8123ms +2017-12-26 10:30:52.062 +05:30 [Information] Request finished in 13270.1394ms 200 application/json; charset=utf-8 +2017-12-26 10:30:52.062 +05:30 [Debug] Connection id ""0HLAC3M1V4I21"" completed keep alive response. +2017-12-26 10:30:52.677 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-26 10:30:52.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 10:30:52.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 10:30:55.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-26 10:30:57.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:30:57.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:30:57.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:30:57.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4835.5436ms +2017-12-26 10:30:57.518 +05:30 [Information] Request finished in 4840.5175ms 200 application/json; charset=utf-8 +2017-12-26 10:30:57.518 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" completed keep alive response. +2017-12-26 10:31:00.781 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 10:31:00.781 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 10:31:00.783 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 10:31:00.783 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 10:31:00.783 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 10:31:00.785 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 10:31:00.920 +05:30 [Debug] Connection id ""0HLAC3M1V4I22"" started. +2017-12-26 10:31:00.920 +05:30 [Debug] Connection id ""0HLAC3M1V4I23"" started. +2017-12-26 10:31:00.920 +05:30 [Debug] Connection id ""0HLAC3M1V4I24"" started. +2017-12-26 10:31:00.920 +05:30 [Debug] Connection id ""0HLAC3M1V4I25"" started. +2017-12-26 10:31:00.922 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 10:31:00.923 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 10:31:00.924 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 10:31:00.986 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 10:31:00.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 10:31:01.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 10:31:01.559 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 10:31:01.560 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 10:31:01.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 10:31:02.629 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 10:31:02.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 10:31:02.632 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 10:31:05.724 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:31:05.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:31:05.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:31:05.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:31:05.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:31:05.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:31:06.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:31:06.872 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:31:06.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:31:06.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:31:06.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5951.358ms +2017-12-26 10:31:06.880 +05:30 [Information] Request finished in 5958.6542ms 200 application/json; charset=utf-8 +2017-12-26 10:31:06.881 +05:30 [Debug] Connection id ""0HLAC3M1V4I22"" completed keep alive response. +2017-12-26 10:31:06.885 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-26 10:31:06.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 10:31:06.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 10:31:07.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:31:07.796 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:31:07.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:31:07.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:31:07.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6776.764ms +2017-12-26 10:31:07.805 +05:30 [Information] Request finished in 6820.0852ms 200 application/json; charset=utf-8 +2017-12-26 10:31:07.806 +05:30 [Debug] Connection id ""0HLAC3M1V4I23"" completed keep alive response. +2017-12-26 10:31:07.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:31:07.813 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:31:07.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:31:07.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:31:07.822 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5187.405ms +2017-12-26 10:31:07.824 +05:30 [Information] Request finished in 5215.006ms 200 application/json; charset=utf-8 +2017-12-26 10:31:07.824 +05:30 [Debug] Connection id ""0HLAC3M1V4I25"" completed keep alive response. +2017-12-26 10:31:07.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:31:07.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:31:07.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:31:07.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:31:07.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6297.1037ms +2017-12-26 10:31:07.883 +05:30 [Information] Request finished in 6323.3208ms 200 application/json; charset=utf-8 +2017-12-26 10:31:07.884 +05:30 [Debug] Connection id ""0HLAC3M1V4I24"" completed keep alive response. +2017-12-26 10:31:08.319 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:31:08.319 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:31:08.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:31:08.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:31:08.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7537.9201ms +2017-12-26 10:31:08.324 +05:30 [Information] Request finished in 7543.1876ms 200 application/json; charset=utf-8 +2017-12-26 10:31:08.324 +05:30 [Debug] Connection id ""0HLAC3M1V4I21"" completed keep alive response. +2017-12-26 10:31:08.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:31:08.400 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:31:08.400 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:31:08.401 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:31:08.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 7616.2254ms +2017-12-26 10:31:08.404 +05:30 [Information] Request finished in 7621.398ms 200 application/json; charset=utf-8 +2017-12-26 10:31:08.404 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" completed keep alive response. +2017-12-26 10:31:09.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:31:12.317 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:31:12.317 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:31:12.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:31:12.318 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:31:12.366 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5477.4131ms +2017-12-26 10:31:12.368 +05:30 [Information] Request finished in 5483.6706ms 200 application/json; charset=utf-8 +2017-12-26 10:31:12.369 +05:30 [Debug] Connection id ""0HLAC3M1V4I22"" completed keep alive response. +2017-12-26 10:33:40.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I23"" received FIN. +2017-12-26 10:33:40.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I24"" received FIN. +2017-12-26 10:33:40.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I25"" received FIN. +2017-12-26 10:33:40.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" received FIN. +2017-12-26 10:33:40.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I21"" received FIN. +2017-12-26 10:33:40.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I22"" received FIN. +2017-12-26 10:33:40.216 +05:30 [Debug] Connection id ""0HLAC3M1V4I23"" disconnecting. +2017-12-26 10:33:40.239 +05:30 [Debug] Connection id ""0HLAC3M1V4I24"" disconnecting. +2017-12-26 10:33:40.239 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" disconnecting. +2017-12-26 10:33:40.239 +05:30 [Debug] Connection id ""0HLAC3M1V4I23"" sending FIN. +2017-12-26 10:33:40.239 +05:30 [Debug] Connection id ""0HLAC3M1V4I22"" disconnecting. +2017-12-26 10:33:40.239 +05:30 [Debug] Connection id ""0HLAC3M1V4I21"" disconnecting. +2017-12-26 10:33:40.239 +05:30 [Debug] Connection id ""0HLAC3M1V4I25"" disconnecting. +2017-12-26 10:33:40.240 +05:30 [Debug] Connection id ""0HLAC3M1V4I24"" sending FIN. +2017-12-26 10:33:40.242 +05:30 [Debug] Connection id ""0HLAC3M1V4I21"" sending FIN. +2017-12-26 10:33:40.242 +05:30 [Debug] Connection id ""0HLAC3M1V4I25"" sending FIN. +2017-12-26 10:33:40.242 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" sending FIN. +2017-12-26 10:33:40.242 +05:30 [Debug] Connection id ""0HLAC3M1V4I22"" sending FIN. +2017-12-26 10:33:40.248 +05:30 [Debug] Connection id ""0HLAC3M1V4I25"" sent FIN with status "0". +2017-12-26 10:33:40.248 +05:30 [Debug] Connection id ""0HLAC3M1V4I22"" sent FIN with status "0". +2017-12-26 10:33:40.250 +05:30 [Debug] Connection id ""0HLAC3M1V4I25"" stopped. +2017-12-26 10:33:40.251 +05:30 [Debug] Connection id ""0HLAC3M1V4I22"" stopped. +2017-12-26 10:33:40.251 +05:30 [Debug] Connection id ""0HLAC3M1V4I21"" sent FIN with status "0". +2017-12-26 10:33:40.251 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" sent FIN with status "0". +2017-12-26 10:33:40.251 +05:30 [Debug] Connection id ""0HLAC3M1V4I21"" stopped. +2017-12-26 10:33:40.251 +05:30 [Debug] Connection id ""0HLAC3M1V4I20"" stopped. +2017-12-26 10:33:40.251 +05:30 [Debug] Connection id ""0HLAC3M1V4I23"" sent FIN with status "0". +2017-12-26 10:33:40.252 +05:30 [Debug] Connection id ""0HLAC3M1V4I24"" sent FIN with status "0". +2017-12-26 10:33:40.252 +05:30 [Debug] Connection id ""0HLAC3M1V4I23"" stopped. +2017-12-26 10:33:40.252 +05:30 [Debug] Connection id ""0HLAC3M1V4I24"" stopped. +2017-12-26 10:34:45.271 +05:30 [Debug] Connection id ""0HLAC3M1V4I26"" started. +2017-12-26 10:34:45.273 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:34:45.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 10:34:45.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 10:34:48.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:34:52.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:34:52.775 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:34:52.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:34:52.776 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:34:52.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 7544.9616ms +2017-12-26 10:34:52.822 +05:30 [Information] Request finished in 7550.928ms 200 application/json; charset=utf-8 +2017-12-26 10:34:52.823 +05:30 [Debug] Connection id ""0HLAC3M1V4I26"" completed keep alive response. +2017-12-26 10:34:52.862 +05:30 [Debug] Connection id ""0HLAC3M1V4I27"" started. +2017-12-26 10:34:52.863 +05:30 [Debug] Connection id ""0HLAC3M1V4I28"" started. +2017-12-26 10:34:52.864 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-26 10:34:52.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 10:34:52.874 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 10:34:52.865 +05:30 [Debug] Connection id ""0HLAC3M1V4I29"" started. +2017-12-26 10:34:52.885 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-26 10:34:52.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 10:34:52.886 +05:30 [Debug] Connection id ""0HLAC3M1V4I2A"" started. +2017-12-26 10:34:52.890 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:34:52.894 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:34:52.896 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 10:34:52.898 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:34:52.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 10:34:52.907 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:34:52.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 10:34:52.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:34:52.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 10:34:52.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:34:55.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:34:55.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:34:56.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:34:56.032 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 10:34:56.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:34:58.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:34:58.101 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:34:58.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:34:58.104 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:34:58.127 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5212.1858ms +2017-12-26 10:34:58.130 +05:30 [Information] Request finished in 5227.6721ms 200 application/json; charset=utf-8 +2017-12-26 10:34:58.130 +05:30 [Debug] Connection id ""0HLAC3M1V4I2A"" completed keep alive response. +2017-12-26 10:34:58.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:34:58.596 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:34:58.596 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:34:58.597 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:34:58.599 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5723.8102ms +2017-12-26 10:34:58.602 +05:30 [Information] Request finished in 5741.5178ms 200 application/json; charset=utf-8 +2017-12-26 10:34:58.602 +05:30 [Debug] Connection id ""0HLAC3M1V4I26"" completed keep alive response. +2017-12-26 10:34:58.774 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:34:58.804 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:34:58.804 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:34:58.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:34:58.828 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5915.6029ms +2017-12-26 10:34:58.845 +05:30 [Information] Request finished in 5943.3274ms 200 application/json; charset=utf-8 +2017-12-26 10:34:58.846 +05:30 [Debug] Connection id ""0HLAC3M1V4I29"" completed keep alive response. +2017-12-26 10:34:59.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:34:59.170 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:34:59.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:34:59.174 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:34:59.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 6273.1658ms +2017-12-26 10:34:59.200 +05:30 [Information] Request finished in 6332.7216ms 200 application/json; charset=utf-8 +2017-12-26 10:34:59.200 +05:30 [Debug] Connection id ""0HLAC3M1V4I27"" completed keep alive response. +2017-12-26 10:35:00.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:35:00.818 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:35:00.818 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:35:00.826 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:35:00.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 7938.3047ms +2017-12-26 10:35:00.852 +05:30 [Information] Request finished in 7978.8766ms 200 application/json; charset=utf-8 +2017-12-26 10:35:00.852 +05:30 [Debug] Connection id ""0HLAC3M1V4I28"" completed keep alive response. +2017-12-26 10:36:24.073 +05:30 [Debug] Connection id ""0HLAC3M1V4I2A"" received FIN. +2017-12-26 10:36:24.073 +05:30 [Debug] Connection id ""0HLAC3M1V4I29"" received FIN. +2017-12-26 10:36:24.074 +05:30 [Debug] Connection id ""0HLAC3M1V4I27"" received FIN. +2017-12-26 10:36:24.074 +05:30 [Debug] Connection id ""0HLAC3M1V4I26"" received FIN. +2017-12-26 10:36:24.074 +05:30 [Debug] Connection id ""0HLAC3M1V4I2A"" disconnecting. +2017-12-26 10:36:24.074 +05:30 [Debug] Connection id ""0HLAC3M1V4I2B"" started. +2017-12-26 10:36:24.074 +05:30 [Debug] Connection id ""0HLAC3M1V4I29"" disconnecting. +2017-12-26 10:36:24.075 +05:30 [Debug] Connection id ""0HLAC3M1V4I27"" disconnecting. +2017-12-26 10:36:24.075 +05:30 [Debug] Connection id ""0HLAC3M1V4I29"" sending FIN. +2017-12-26 10:36:24.076 +05:30 [Debug] Connection id ""0HLAC3M1V4I27"" sending FIN. +2017-12-26 10:36:24.074 +05:30 [Debug] Connection id ""0HLAC3M1V4I28"" received FIN. +2017-12-26 10:36:24.084 +05:30 [Debug] Connection id ""0HLAC3M1V4I2A"" sending FIN. +2017-12-26 10:36:24.088 +05:30 [Debug] Connection id ""0HLAC3M1V4I2A"" sent FIN with status "0". +2017-12-26 10:36:24.089 +05:30 [Debug] Connection id ""0HLAC3M1V4I2A"" stopped. +2017-12-26 10:36:24.083 +05:30 [Debug] Connection id ""0HLAC3M1V4I27"" sent FIN with status "0". +2017-12-26 10:36:24.089 +05:30 [Debug] Connection id ""0HLAC3M1V4I28"" disconnecting. +2017-12-26 10:36:24.089 +05:30 [Debug] Connection id ""0HLAC3M1V4I27"" stopped. +2017-12-26 10:36:24.090 +05:30 [Debug] Connection id ""0HLAC3M1V4I29"" sent FIN with status "0". +2017-12-26 10:36:24.090 +05:30 [Debug] Connection id ""0HLAC3M1V4I29"" stopped. +2017-12-26 10:36:24.075 +05:30 [Debug] Connection id ""0HLAC3M1V4I26"" disconnecting. +2017-12-26 10:36:24.095 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:36:24.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 10:36:24.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 10:36:24.106 +05:30 [Debug] Connection id ""0HLAC3M1V4I28"" sending FIN. +2017-12-26 10:36:24.106 +05:30 [Debug] Connection id ""0HLAC3M1V4I26"" sending FIN. +2017-12-26 10:36:24.107 +05:30 [Debug] Connection id ""0HLAC3M1V4I26"" sent FIN with status "0". +2017-12-26 10:36:24.107 +05:30 [Debug] Connection id ""0HLAC3M1V4I26"" stopped. +2017-12-26 10:36:24.107 +05:30 [Debug] Connection id ""0HLAC3M1V4I28"" sent FIN with status "0". +2017-12-26 10:36:24.108 +05:30 [Debug] Connection id ""0HLAC3M1V4I28"" stopped. +2017-12-26 10:36:25.632 +05:30 [Debug] Connection id ""0HLAC3M1V4I2C"" started. +2017-12-26 10:36:25.633 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 10:36:25.635 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 10:36:25.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 10:36:27.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:36:27.413 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:27.414 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:27.414 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:27.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:27.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3318.7546ms +2017-12-26 10:36:27.419 +05:30 [Information] Request finished in 3326.457ms 200 application/json; charset=utf-8 +2017-12-26 10:36:27.420 +05:30 [Debug] Connection id ""0HLAC3M1V4I2B"" completed keep alive response. +2017-12-26 10:36:27.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I2D"" started. +2017-12-26 10:36:27.690 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:36:27.690 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 10:36:27.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:36:27.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 10:36:27.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 10:36:27.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:36:28.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 10:36:30.231 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:30.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:30.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:30.235 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4597.5437ms +2017-12-26 10:36:30.239 +05:30 [Information] Request finished in 4605.7173ms 200 application/json; charset=utf-8 +2017-12-26 10:36:30.241 +05:30 [Debug] Connection id ""0HLAC3M1V4I2C"" completed keep alive response. +2017-12-26 10:36:31.023 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 10:36:31.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:36:31.481 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:31.482 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:31.482 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:31.490 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:31.513 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3810.9783ms +2017-12-26 10:36:31.523 +05:30 [Information] Request finished in 3829.9827ms 200 application/json; charset=utf-8 +2017-12-26 10:36:31.523 +05:30 [Debug] Connection id ""0HLAC3M1V4I2B"" completed keep alive response. +2017-12-26 10:36:31.631 +05:30 [Debug] Connection id ""0HLAC3M1V4I2B"" received FIN. +2017-12-26 10:36:31.632 +05:30 [Debug] Connection id ""0HLAC3M1V4I2B"" disconnecting. +2017-12-26 10:36:31.632 +05:30 [Debug] Connection id ""0HLAC3M1V4I2B"" sending FIN. +2017-12-26 10:36:31.632 +05:30 [Debug] Connection id ""0HLAC3M1V4I2B"" sent FIN with status "0". +2017-12-26 10:36:31.633 +05:30 [Debug] Connection id ""0HLAC3M1V4I2B"" stopped. +2017-12-26 10:36:31.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:31.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:31.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:31.892 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:31.902 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4200.5177ms +2017-12-26 10:36:31.915 +05:30 [Information] Request finished in 4220.7332ms 200 application/json; charset=utf-8 +2017-12-26 10:36:31.916 +05:30 [Debug] Connection id ""0HLAC3M1V4I2D"" completed keep alive response. +2017-12-26 10:36:34.028 +05:30 [Debug] Connection id ""0HLAC3M1V4I2E"" started. +2017-12-26 10:36:34.028 +05:30 [Debug] Connection id ""0HLAC3M1V4I2F"" started. +2017-12-26 10:36:34.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 10:36:34.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 10:36:34.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 10:36:34.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 10:36:34.042 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 10:36:34.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 10:36:34.150 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 10:36:34.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 10:36:34.154 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 10:36:34.273 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 10:36:34.273 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 10:36:34.274 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 10:36:34.447 +05:30 [Debug] Connection id ""0HLAC3M1V4I2G"" started. +2017-12-26 10:36:34.449 +05:30 [Debug] Connection id ""0HLAC3M1V4I2H"" started. +2017-12-26 10:36:34.469 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 10:36:34.469 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 10:36:34.470 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 10:36:34.486 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 10:36:34.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 10:36:34.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 10:36:35.521 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:36:36.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:36.049 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:36.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:36.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:36.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 2011.92ms +2017-12-26 10:36:36.063 +05:30 [Information] Request finished in 2043.0397ms 200 application/json; charset=utf-8 +2017-12-26 10:36:36.063 +05:30 [Debug] Connection id ""0HLAC3M1V4I2C"" completed keep alive response. +2017-12-26 10:36:36.069 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:36:36.069 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 10:36:36.070 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 10:36:36.311 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:36:37.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:37.356 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:37.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:36:37.357 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:37.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:37.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3347.3654ms +2017-12-26 10:36:37.418 +05:30 [Information] Request finished in 3380.0511ms 200 application/json; charset=utf-8 +2017-12-26 10:36:37.419 +05:30 [Debug] Connection id ""0HLAC3M1V4I2E"" completed keep alive response. +2017-12-26 10:36:37.525 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:36:37.561 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:36:37.640 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:36:38.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:38.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:38.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:38.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:38.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3868.3285ms +2017-12-26 10:36:38.026 +05:30 [Information] Request finished in 3990.5823ms 200 application/json; charset=utf-8 +2017-12-26 10:36:38.027 +05:30 [Debug] Connection id ""0HLAC3M1V4I2F"" completed keep alive response. +2017-12-26 10:36:38.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:38.040 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:38.040 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:38.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:38.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3769.8344ms +2017-12-26 10:36:38.049 +05:30 [Information] Request finished in 4016.2688ms 200 application/json; charset=utf-8 +2017-12-26 10:36:38.053 +05:30 [Debug] Connection id ""0HLAC3M1V4I2D"" completed keep alive response. +2017-12-26 10:36:38.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:36:38.597 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:38.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:38.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:38.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:38.600 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:38.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:38.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:38.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:38.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4114.3523ms +2017-12-26 10:36:38.610 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 2534.8604ms +2017-12-26 10:36:38.610 +05:30 [Information] Request finished in 4148.4043ms 200 application/json; charset=utf-8 +2017-12-26 10:36:38.611 +05:30 [Debug] Connection id ""0HLAC3M1V4I2H"" completed keep alive response. +2017-12-26 10:36:38.613 +05:30 [Information] Request finished in 2546.5362ms 200 application/json; charset=utf-8 +2017-12-26 10:36:38.613 +05:30 [Debug] Connection id ""0HLAC3M1V4I2C"" completed keep alive response. +2017-12-26 10:36:38.726 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:38.726 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:38.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:38.727 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:38.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4258.1419ms +2017-12-26 10:36:38.731 +05:30 [Information] Request finished in 4281.6277ms 200 application/json; charset=utf-8 +2017-12-26 10:36:38.731 +05:30 [Debug] Connection id ""0HLAC3M1V4I2G"" completed keep alive response. +2017-12-26 10:36:38.901 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:36:38.902 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 10:36:38.902 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:36:38.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 10:36:38.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:36:38.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 10:36:38.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:36:38.904 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:36:38.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:36:41.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 10:36:42.006 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:36:42.030 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:36:42.445 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:42.446 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:42.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:42.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:42.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3543.0785ms +2017-12-26 10:36:42.455 +05:30 [Information] Request finished in 3574.4946ms 200 application/json; charset=utf-8 +2017-12-26 10:36:42.456 +05:30 [Debug] Connection id ""0HLAC3M1V4I2D"" completed keep alive response. +2017-12-26 10:36:42.792 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:42.792 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:42.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:42.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:42.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3892.305ms +2017-12-26 10:36:42.802 +05:30 [Information] Request finished in 3919.9695ms 200 application/json; charset=utf-8 +2017-12-26 10:36:42.802 +05:30 [Debug] Connection id ""0HLAC3M1V4I2F"" completed keep alive response. +2017-12-26 10:36:43.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:36:43.122 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:36:43.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:36:43.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:36:43.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4225.0217ms +2017-12-26 10:36:43.138 +05:30 [Information] Request finished in 4257.5277ms 200 application/json; charset=utf-8 +2017-12-26 10:36:43.138 +05:30 [Debug] Connection id ""0HLAC3M1V4I2E"" completed keep alive response. +2017-12-26 10:38:16.294 +05:30 [Debug] Connection id ""0HLAC3M1V4I2C"" received FIN. +2017-12-26 10:38:16.294 +05:30 [Debug] Connection id ""0HLAC3M1V4I2H"" received FIN. +2017-12-26 10:38:16.295 +05:30 [Debug] Connection id ""0HLAC3M1V4I2G"" received FIN. +2017-12-26 10:38:16.295 +05:30 [Debug] Connection id ""0HLAC3M1V4I2D"" received FIN. +2017-12-26 10:38:16.295 +05:30 [Debug] Connection id ""0HLAC3M1V4I2F"" received FIN. +2017-12-26 10:38:16.295 +05:30 [Debug] Connection id ""0HLAC3M1V4I2E"" received FIN. +2017-12-26 10:38:16.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I2C"" disconnecting. +2017-12-26 10:38:16.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I2H"" disconnecting. +2017-12-26 10:38:16.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I2I"" started. +2017-12-26 10:38:16.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I2H"" sending FIN. +2017-12-26 10:38:16.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I2G"" disconnecting. +2017-12-26 10:38:16.297 +05:30 [Debug] Connection id ""0HLAC3M1V4I2H"" sent FIN with status "0". +2017-12-26 10:38:16.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I2D"" disconnecting. +2017-12-26 10:38:16.297 +05:30 [Debug] Connection id ""0HLAC3M1V4I2F"" disconnecting. +2017-12-26 10:38:16.297 +05:30 [Debug] Connection id ""0HLAC3M1V4I2H"" stopped. +2017-12-26 10:38:16.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I2C"" sending FIN. +2017-12-26 10:38:16.297 +05:30 [Debug] Connection id ""0HLAC3M1V4I2E"" disconnecting. +2017-12-26 10:38:16.298 +05:30 [Debug] Connection id ""0HLAC3M1V4I2G"" sending FIN. +2017-12-26 10:38:16.298 +05:30 [Debug] Connection id ""0HLAC3M1V4I2D"" sending FIN. +2017-12-26 10:38:16.298 +05:30 [Debug] Connection id ""0HLAC3M1V4I2E"" sending FIN. +2017-12-26 10:38:16.299 +05:30 [Debug] Connection id ""0HLAC3M1V4I2E"" sent FIN with status "0". +2017-12-26 10:38:16.299 +05:30 [Debug] Connection id ""0HLAC3M1V4I2E"" stopped. +2017-12-26 10:38:16.298 +05:30 [Debug] Connection id ""0HLAC3M1V4I2F"" sending FIN. +2017-12-26 10:38:16.300 +05:30 [Debug] Connection id ""0HLAC3M1V4I2D"" sent FIN with status "0". +2017-12-26 10:38:16.300 +05:30 [Debug] Connection id ""0HLAC3M1V4I2F"" sent FIN with status "0". +2017-12-26 10:38:16.300 +05:30 [Debug] Connection id ""0HLAC3M1V4I2D"" stopped. +2017-12-26 10:38:16.300 +05:30 [Debug] Connection id ""0HLAC3M1V4I2F"" stopped. +2017-12-26 10:38:16.301 +05:30 [Debug] Connection id ""0HLAC3M1V4I2G"" sent FIN with status "0". +2017-12-26 10:38:16.301 +05:30 [Debug] Connection id ""0HLAC3M1V4I2G"" stopped. +2017-12-26 10:38:16.301 +05:30 [Debug] Connection id ""0HLAC3M1V4I2C"" sent FIN with status "0". +2017-12-26 10:38:16.301 +05:30 [Debug] Connection id ""0HLAC3M1V4I2C"" stopped. +2017-12-26 10:38:16.304 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:38:16.304 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 10:38:16.305 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 10:38:19.337 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:38:19.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:38:19.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:38:19.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:38:19.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:38:19.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3294.086ms +2017-12-26 10:38:19.602 +05:30 [Information] Request finished in 3298.6952ms 200 application/json; charset=utf-8 +2017-12-26 10:38:19.602 +05:30 [Debug] Connection id ""0HLAC3M1V4I2I"" completed keep alive response. +2017-12-26 10:38:19.635 +05:30 [Debug] Connection id ""0HLAC3M1V4I2J"" started. +2017-12-26 10:38:19.635 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-26 10:38:19.636 +05:30 [Debug] Connection id ""0HLAC3M1V4I2K"" started. +2017-12-26 10:38:19.636 +05:30 [Debug] Connection id ""0HLAC3M1V4I2L"" started. +2017-12-26 10:38:19.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 10:38:19.646 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 10:38:19.646 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 10:38:19.639 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-26 10:38:19.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 10:38:19.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:38:19.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 10:38:19.654 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:38:19.656 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:38:19.648 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 10:38:19.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 10:38:22.738 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:38:22.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:38:22.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 10:38:22.856 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:38:23.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:38:23.617 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:38:23.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:38:23.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:38:23.620 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 3972.5709ms +2017-12-26 10:38:23.651 +05:30 [Information] Request finished in 3998.5578ms 200 application/json; charset=utf-8 +2017-12-26 10:38:23.651 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:38:23.651 +05:30 [Debug] Connection id ""0HLAC3M1V4I2I"" completed keep alive response. +2017-12-26 10:38:23.651 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:38:23.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:38:23.654 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:38:23.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3995.0857ms +2017-12-26 10:38:23.658 +05:30 [Information] Request finished in 4020.8058ms 200 application/json; charset=utf-8 +2017-12-26 10:38:23.658 +05:30 [Debug] Connection id ""0HLAC3M1V4I2K"" completed keep alive response. +2017-12-26 10:38:26.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:38:26.143 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:38:26.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:38:26.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:38:26.149 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6489.7934ms +2017-12-26 10:38:26.172 +05:30 [Information] Request finished in 6506.7424ms 200 application/json; charset=utf-8 +2017-12-26 10:38:26.172 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:38:26.173 +05:30 [Debug] Connection id ""0HLAC3M1V4I2L"" completed keep alive response. +2017-12-26 10:38:26.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:38:26.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:38:26.798 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:38:26.798 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:38:26.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:38:26.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:38:26.801 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 7144.9045ms +2017-12-26 10:38:26.805 +05:30 [Information] Request finished in 7168.4923ms 200 application/json; charset=utf-8 +2017-12-26 10:38:26.806 +05:30 [Debug] Connection id ""0HLAC3M1V4I2J"" completed keep alive response. +2017-12-26 10:38:28.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:38:28.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:38:28.803 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:38:28.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:38:28.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:38:28.811 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2634.1264ms +2017-12-26 10:38:28.816 +05:30 [Information] Request finished in 2661.9852ms 200 application/json; charset=utf-8 +2017-12-26 10:38:28.816 +05:30 [Debug] Connection id ""0HLAC3M1V4I2I"" completed keep alive response. +2017-12-26 10:40:12.599 +05:30 [Debug] Connection id ""0HLAC3M1V4I2L"" received FIN. +2017-12-26 10:40:12.599 +05:30 [Debug] Connection id ""0HLAC3M1V4I2K"" received FIN. +2017-12-26 10:40:12.600 +05:30 [Debug] Connection id ""0HLAC3M1V4I2J"" received FIN. +2017-12-26 10:40:12.600 +05:30 [Debug] Connection id ""0HLAC3M1V4I2I"" received FIN. +2017-12-26 10:40:12.600 +05:30 [Debug] Connection id ""0HLAC3M1V4I2L"" disconnecting. +2017-12-26 10:40:12.600 +05:30 [Debug] Connection id ""0HLAC3M1V4I2J"" disconnecting. +2017-12-26 10:40:12.601 +05:30 [Debug] Connection id ""0HLAC3M1V4I2I"" disconnecting. +2017-12-26 10:40:12.600 +05:30 [Debug] Connection id ""0HLAC3M1V4I2M"" started. +2017-12-26 10:40:12.600 +05:30 [Debug] Connection id ""0HLAC3M1V4I2L"" sending FIN. +2017-12-26 10:40:12.601 +05:30 [Debug] Connection id ""0HLAC3M1V4I2I"" sending FIN. +2017-12-26 10:40:12.601 +05:30 [Debug] Connection id ""0HLAC3M1V4I2J"" sending FIN. +2017-12-26 10:40:12.602 +05:30 [Debug] Connection id ""0HLAC3M1V4I2J"" sent FIN with status "0". +2017-12-26 10:40:12.602 +05:30 [Debug] Connection id ""0HLAC3M1V4I2I"" sent FIN with status "0". +2017-12-26 10:40:12.600 +05:30 [Debug] Connection id ""0HLAC3M1V4I2K"" disconnecting. +2017-12-26 10:40:12.606 +05:30 [Debug] Connection id ""0HLAC3M1V4I2I"" stopped. +2017-12-26 10:40:12.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 10:40:12.607 +05:30 [Debug] Connection id ""0HLAC3M1V4I2K"" sending FIN. +2017-12-26 10:40:12.605 +05:30 [Debug] Connection id ""0HLAC3M1V4I2J"" stopped. +2017-12-26 10:40:12.607 +05:30 [Debug] Connection id ""0HLAC3M1V4I2K"" sent FIN with status "0". +2017-12-26 10:40:12.607 +05:30 [Debug] Connection id ""0HLAC3M1V4I2L"" sent FIN with status "0". +2017-12-26 10:40:12.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 10:40:12.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 10:40:12.607 +05:30 [Debug] Connection id ""0HLAC3M1V4I2K"" stopped. +2017-12-26 10:40:12.608 +05:30 [Debug] Connection id ""0HLAC3M1V4I2L"" stopped. +2017-12-26 10:40:15.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 10:40:17.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:17.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:17.691 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:17.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5082.0448ms +2017-12-26 10:40:17.697 +05:30 [Information] Request finished in 5091.6885ms 200 application/json; charset=utf-8 +2017-12-26 10:40:17.698 +05:30 [Debug] Connection id ""0HLAC3M1V4I2M"" completed keep alive response. +2017-12-26 10:40:20.509 +05:30 [Debug] Connection id ""0HLAC3M1V4I2N"" started. +2017-12-26 10:40:20.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 10:40:20.519 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 10:40:20.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 10:40:20.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 10:40:20.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 10:40:20.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 10:40:20.789 +05:30 [Debug] Connection id ""0HLAC3M1V4I2O"" started. +2017-12-26 10:40:20.795 +05:30 [Debug] Connection id ""0HLAC3M1V4I2P"" started. +2017-12-26 10:40:20.803 +05:30 [Debug] Connection id ""0HLAC3M1V4I2Q"" started. +2017-12-26 10:40:20.803 +05:30 [Debug] Connection id ""0HLAC3M1V4I2R"" started. +2017-12-26 10:40:20.804 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 10:40:20.823 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 10:40:20.827 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 10:40:20.883 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 10:40:20.884 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 10:40:20.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 10:40:20.939 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 10:40:20.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 10:40:20.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 10:40:20.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 10:40:20.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 10:40:20.995 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 10:40:22.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:40:23.622 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:40:23.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:40:24.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:24.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:24.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:40:24.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:24.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:24.007 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3177.9037ms +2017-12-26 10:40:24.010 +05:30 [Information] Request finished in 3213.5446ms 200 application/json; charset=utf-8 +2017-12-26 10:40:24.010 +05:30 [Debug] Connection id ""0HLAC3M1V4I2O"" completed keep alive response. +2017-12-26 10:40:24.017 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:40:24.018 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 10:40:24.018 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 10:40:24.113 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:40:24.183 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:40:24.542 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:24.542 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:24.543 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:24.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:24.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3664.9781ms +2017-12-26 10:40:24.557 +05:30 [Information] Request finished in 3752.0056ms 200 application/json; charset=utf-8 +2017-12-26 10:40:24.558 +05:30 [Debug] Connection id ""0HLAC3M1V4I2R"" completed keep alive response. +2017-12-26 10:40:24.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:24.703 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:24.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:24.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:24.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4147.9934ms +2017-12-26 10:40:24.710 +05:30 [Information] Request finished in 4192.1105ms 200 application/json; charset=utf-8 +2017-12-26 10:40:24.711 +05:30 [Debug] Connection id ""0HLAC3M1V4I2N"" completed keep alive response. +2017-12-26 10:40:24.879 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:24.879 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:24.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:24.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:24.882 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4361.5543ms +2017-12-26 10:40:24.884 +05:30 [Information] Request finished in 4390.7887ms 200 application/json; charset=utf-8 +2017-12-26 10:40:24.885 +05:30 [Debug] Connection id ""0HLAC3M1V4I2M"" completed keep alive response. +2017-12-26 10:40:26.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:26.081 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:26.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:26.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:26.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5141.7328ms +2017-12-26 10:40:26.090 +05:30 [Information] Request finished in 5284.1105ms 200 application/json; charset=utf-8 +2017-12-26 10:40:26.090 +05:30 [Debug] Connection id ""0HLAC3M1V4I2P"" completed keep alive response. +2017-12-26 10:40:26.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:26.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:26.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:26.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:26.169 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5171.8748ms +2017-12-26 10:40:26.172 +05:30 [Information] Request finished in 5343.4987ms 200 application/json; charset=utf-8 +2017-12-26 10:40:26.173 +05:30 [Debug] Connection id ""0HLAC3M1V4I2Q"" completed keep alive response. +2017-12-26 10:40:27.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:40:27.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:27.324 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:27.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:27.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:27.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3308.937ms +2017-12-26 10:40:27.335 +05:30 [Information] Request finished in 3317.9991ms 200 application/json; charset=utf-8 +2017-12-26 10:40:27.335 +05:30 [Debug] Connection id ""0HLAC3M1V4I2O"" completed keep alive response. +2017-12-26 10:40:27.382 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 10:40:27.385 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 10:40:27.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 10:40:27.390 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-26 10:40:27.393 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-26 10:40:27.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 10:40:27.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 10:40:27.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 10:40:27.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 10:40:27.396 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:40:27.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:40:27.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:40:30.469 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:40:30.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 10:40:30.523 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:40:30.527 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:40:31.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:31.406 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:31.407 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:31.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:31.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4014.6332ms +2017-12-26 10:40:31.415 +05:30 [Information] Request finished in 4033.6432ms 200 application/json; charset=utf-8 +2017-12-26 10:40:31.415 +05:30 [Debug] Connection id ""0HLAC3M1V4I2N"" completed keep alive response. +2017-12-26 10:40:31.526 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:31.526 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:31.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:31.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:31.534 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4142.3294ms +2017-12-26 10:40:31.536 +05:30 [Information] Request finished in 4168.3841ms 200 application/json; charset=utf-8 +2017-12-26 10:40:31.537 +05:30 [Debug] Connection id ""0HLAC3M1V4I2R"" completed keep alive response. +2017-12-26 10:40:31.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:31.822 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:31.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:31.824 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:31.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4432.4193ms +2017-12-26 10:40:31.853 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:40:31.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:40:31.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:40:31.858 +05:30 [Information] Request finished in 4483.9549ms 200 application/json; charset=utf-8 +2017-12-26 10:40:31.859 +05:30 [Debug] Connection id ""0HLAC3M1V4I2P"" completed keep alive response. +2017-12-26 10:40:32.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:32.870 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:32.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:32.891 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:32.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 5495.9088ms +2017-12-26 10:40:32.918 +05:30 [Information] Request finished in 5545.6962ms 200 application/json; charset=utf-8 +2017-12-26 10:40:32.918 +05:30 [Debug] Connection id ""0HLAC3M1V4I2M"" completed keep alive response. +2017-12-26 10:40:34.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:40:35.370 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:40:35.371 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:40:35.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:40:35.372 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:40:35.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3523.1472ms +2017-12-26 10:40:35.397 +05:30 [Information] Request finished in 3564.9327ms 200 application/json; charset=utf-8 +2017-12-26 10:40:35.399 +05:30 [Debug] Connection id ""0HLAC3M1V4I2Q"" completed keep alive response. +2017-12-26 10:42:50.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2O"" received FIN. +2017-12-26 10:42:50.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2N"" received FIN. +2017-12-26 10:42:50.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2O"" disconnecting. +2017-12-26 10:42:50.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2P"" received FIN. +2017-12-26 10:42:50.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2N"" disconnecting. +2017-12-26 10:42:50.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2Q"" received FIN. +2017-12-26 10:42:50.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2P"" disconnecting. +2017-12-26 10:42:50.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2N"" sending FIN. +2017-12-26 10:42:50.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2P"" sending FIN. +2017-12-26 10:42:50.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2Q"" disconnecting. +2017-12-26 10:42:50.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2R"" received FIN. +2017-12-26 10:42:50.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2P"" sent FIN with status "0". +2017-12-26 10:42:50.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I2M"" received FIN. +2017-12-26 10:42:50.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I2P"" stopped. +2017-12-26 10:42:50.216 +05:30 [Debug] Connection id ""0HLAC3M1V4I2O"" sending FIN. +2017-12-26 10:42:50.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I2M"" disconnecting. +2017-12-26 10:42:50.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I2R"" disconnecting. +2017-12-26 10:42:50.217 +05:30 [Debug] Connection id ""0HLAC3M1V4I2N"" sent FIN with status "0". +2017-12-26 10:42:50.217 +05:30 [Debug] Connection id ""0HLAC3M1V4I2N"" stopped. +2017-12-26 10:42:50.217 +05:30 [Debug] Connection id ""0HLAC3M1V4I2O"" sent FIN with status "0". +2017-12-26 10:42:50.218 +05:30 [Debug] Connection id ""0HLAC3M1V4I2O"" stopped. +2017-12-26 10:42:50.217 +05:30 [Debug] Connection id ""0HLAC3M1V4I2Q"" sending FIN. +2017-12-26 10:42:50.218 +05:30 [Debug] Connection id ""0HLAC3M1V4I2M"" sending FIN. +2017-12-26 10:42:50.218 +05:30 [Debug] Connection id ""0HLAC3M1V4I2Q"" sent FIN with status "0". +2017-12-26 10:42:50.218 +05:30 [Debug] Connection id ""0HLAC3M1V4I2Q"" stopped. +2017-12-26 10:42:50.218 +05:30 [Debug] Connection id ""0HLAC3M1V4I2R"" sending FIN. +2017-12-26 10:42:50.219 +05:30 [Debug] Connection id ""0HLAC3M1V4I2R"" sent FIN with status "0". +2017-12-26 10:42:50.219 +05:30 [Debug] Connection id ""0HLAC3M1V4I2R"" stopped. +2017-12-26 10:42:50.219 +05:30 [Debug] Connection id ""0HLAC3M1V4I2M"" sent FIN with status "0". +2017-12-26 10:42:50.219 +05:30 [Debug] Connection id ""0HLAC3M1V4I2M"" stopped. +2017-12-26 10:42:57.457 +05:30 [Debug] Connection id ""0HLAC3M1V4I2S"" started. +2017-12-26 10:42:57.459 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 10:42:57.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 10:42:57.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 10:43:00.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 10:43:02.022 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:02.023 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:02.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:02.025 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4563.8457ms +2017-12-26 10:43:02.027 +05:30 [Information] Request finished in 4567.6708ms 200 application/json; charset=utf-8 +2017-12-26 10:43:02.027 +05:30 [Debug] Connection id ""0HLAC3M1V4I2S"" completed keep alive response. +2017-12-26 10:43:04.964 +05:30 [Debug] Connection id ""0HLAC3M1V4I2T"" started. +2017-12-26 10:43:04.965 +05:30 [Debug] Connection id ""0HLAC3M1V4I2U"" started. +2017-12-26 10:43:04.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I2V"" started. +2017-12-26 10:43:04.977 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 10:43:04.985 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 10:43:04.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 10:43:04.992 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 10:43:04.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 10:43:04.993 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 10:43:05.030 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 10:43:05.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 10:43:05.061 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 10:43:05.088 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 10:43:05.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 10:43:05.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 10:43:05.336 +05:30 [Debug] Connection id ""0HLAC3M1V4I30"" started. +2017-12-26 10:43:05.343 +05:30 [Debug] Connection id ""0HLAC3M1V4I31"" started. +2017-12-26 10:43:05.360 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 10:43:05.360 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 10:43:05.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 10:43:05.374 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 10:43:05.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 10:43:05.375 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 10:43:07.092 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:43:07.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:07.748 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:07.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:07.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:07.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2756.7509ms +2017-12-26 10:43:07.754 +05:30 [Information] Request finished in 2788.637ms 200 application/json; charset=utf-8 +2017-12-26 10:43:07.755 +05:30 [Debug] Connection id ""0HLAC3M1V4I2U"" completed keep alive response. +2017-12-26 10:43:07.761 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:43:07.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 10:43:07.762 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 10:43:08.115 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:43:08.155 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:43:08.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:43:08.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:43:08.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:43:08.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:08.659 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:08.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:08.661 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:08.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3671.2436ms +2017-12-26 10:43:08.663 +05:30 [Information] Request finished in 3704.3622ms 200 application/json; charset=utf-8 +2017-12-26 10:43:08.664 +05:30 [Debug] Connection id ""0HLAC3M1V4I2S"" completed keep alive response. +2017-12-26 10:43:08.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:08.755 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:08.755 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:08.756 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:08.758 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3694.6778ms +2017-12-26 10:43:08.760 +05:30 [Information] Request finished in 3784.565ms 200 application/json; charset=utf-8 +2017-12-26 10:43:08.761 +05:30 [Debug] Connection id ""0HLAC3M1V4I2V"" completed keep alive response. +2017-12-26 10:43:09.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:09.158 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:09.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:09.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:09.160 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4068.1157ms +2017-12-26 10:43:09.162 +05:30 [Information] Request finished in 4195.6489ms 200 application/json; charset=utf-8 +2017-12-26 10:43:09.162 +05:30 [Debug] Connection id ""0HLAC3M1V4I2T"" completed keep alive response. +2017-12-26 10:43:09.467 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:09.467 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:09.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:09.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:09.469 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4107.0943ms +2017-12-26 10:43:09.474 +05:30 [Information] Request finished in 4114.9924ms 200 application/json; charset=utf-8 +2017-12-26 10:43:09.474 +05:30 [Debug] Connection id ""0HLAC3M1V4I30"" completed keep alive response. +2017-12-26 10:43:09.571 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:09.571 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:09.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:09.576 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:09.579 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4200.8042ms +2017-12-26 10:43:09.582 +05:30 [Information] Request finished in 4223.6514ms 200 application/json; charset=utf-8 +2017-12-26 10:43:09.583 +05:30 [Debug] Connection id ""0HLAC3M1V4I31"" completed keep alive response. +2017-12-26 10:43:10.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:43:11.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:11.098 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:11.098 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:11.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:11.100 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3336.8108ms +2017-12-26 10:43:11.102 +05:30 [Information] Request finished in 3341.1779ms 200 application/json; charset=utf-8 +2017-12-26 10:43:11.102 +05:30 [Debug] Connection id ""0HLAC3M1V4I2U"" completed keep alive response. +2017-12-26 10:43:11.134 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:43:11.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:43:11.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:43:11.137 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-26 10:43:11.137 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 10:43:11.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 10:43:11.138 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-26 10:43:11.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 10:43:11.146 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 10:43:11.149 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 10:43:11.149 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 10:43:11.150 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 10:43:14.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:43:14.294 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:43:14.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 10:43:14.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 10:43:15.108 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:15.108 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:15.109 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:15.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:15.145 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:15.146 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:15.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:15.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3995.411ms +2017-12-26 10:43:15.148 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:15.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4012.3324ms +2017-12-26 10:43:15.175 +05:30 [Information] Request finished in 4018.7071ms 200 application/json; charset=utf-8 +2017-12-26 10:43:15.176 +05:30 [Information] Request finished in 4019.252ms 200 application/json; charset=utf-8 +2017-12-26 10:43:15.179 +05:30 [Debug] Connection id ""0HLAC3M1V4I2T"" completed keep alive response. +2017-12-26 10:43:15.176 +05:30 [Debug] Connection id ""0HLAC3M1V4I2V"" completed keep alive response. +2017-12-26 10:43:15.867 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:15.868 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:15.868 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:15.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:15.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4736.2965ms +2017-12-26 10:43:15.874 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 10:43:15.878 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 10:43:15.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 10:43:15.882 +05:30 [Information] Request finished in 4756.7124ms 200 application/json; charset=utf-8 +2017-12-26 10:43:15.883 +05:30 [Debug] Connection id ""0HLAC3M1V4I2S"" completed keep alive response. +2017-12-26 10:43:17.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:17.599 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:17.599 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:17.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:17.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 6454.9571ms +2017-12-26 10:43:17.605 +05:30 [Information] Request finished in 6469.7798ms 200 application/json; charset=utf-8 +2017-12-26 10:43:17.605 +05:30 [Debug] Connection id ""0HLAC3M1V4I30"" completed keep alive response. +2017-12-26 10:43:18.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 10:43:19.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 10:43:19.952 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 10:43:19.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 10:43:19.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 10:43:19.957 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4077.2391ms +2017-12-26 10:43:19.966 +05:30 [Information] Request finished in 4088.8599ms 200 application/json; charset=utf-8 +2017-12-26 10:43:19.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I31"" completed keep alive response. +2017-12-26 10:44:40.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2V"" received FIN. +2017-12-26 10:44:40.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2U"" received FIN. +2017-12-26 10:44:40.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2T"" received FIN. +2017-12-26 10:44:40.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I2S"" received FIN. +2017-12-26 10:44:40.213 +05:30 [Debug] Connection id ""0HLAC3M1V4I31"" received FIN. +2017-12-26 10:44:40.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I30"" received FIN. +2017-12-26 10:44:40.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2V"" disconnecting. +2017-12-26 10:44:40.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2U"" disconnecting. +2017-12-26 10:44:40.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2S"" disconnecting. +2017-12-26 10:44:40.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I30"" disconnecting. +2017-12-26 10:44:40.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I31"" disconnecting. +2017-12-26 10:44:40.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I2U"" sending FIN. +2017-12-26 10:44:40.216 +05:30 [Debug] Connection id ""0HLAC3M1V4I2S"" sending FIN. +2017-12-26 10:44:40.216 +05:30 [Debug] Connection id ""0HLAC3M1V4I30"" sending FIN. +2017-12-26 10:44:40.216 +05:30 [Debug] Connection id ""0HLAC3M1V4I30"" sent FIN with status "0". +2017-12-26 10:44:40.217 +05:30 [Debug] Connection id ""0HLAC3M1V4I30"" stopped. +2017-12-26 10:44:40.217 +05:30 [Debug] Connection id ""0HLAC3M1V4I2S"" sent FIN with status "0". +2017-12-26 10:44:40.214 +05:30 [Debug] Connection id ""0HLAC3M1V4I2V"" sending FIN. +2017-12-26 10:44:40.218 +05:30 [Debug] Connection id ""0HLAC3M1V4I2S"" stopped. +2017-12-26 10:44:40.218 +05:30 [Debug] Connection id ""0HLAC3M1V4I31"" sending FIN. +2017-12-26 10:44:40.218 +05:30 [Debug] Connection id ""0HLAC3M1V4I2U"" sent FIN with status "0". +2017-12-26 10:44:40.217 +05:30 [Debug] Connection id ""0HLAC3M1V4I2T"" disconnecting. +2017-12-26 10:44:40.219 +05:30 [Debug] Connection id ""0HLAC3M1V4I2U"" stopped. +2017-12-26 10:44:40.218 +05:30 [Debug] Connection id ""0HLAC3M1V4I31"" sent FIN with status "0". +2017-12-26 10:44:40.219 +05:30 [Debug] Connection id ""0HLAC3M1V4I31"" stopped. +2017-12-26 10:44:40.219 +05:30 [Debug] Connection id ""0HLAC3M1V4I2V"" sent FIN with status "0". +2017-12-26 10:44:40.220 +05:30 [Debug] Connection id ""0HLAC3M1V4I2V"" stopped. +2017-12-26 10:44:40.220 +05:30 [Debug] Connection id ""0HLAC3M1V4I2T"" sending FIN. +2017-12-26 10:44:40.220 +05:30 [Debug] Connection id ""0HLAC3M1V4I2T"" sent FIN with status "0". +2017-12-26 10:44:40.220 +05:30 [Debug] Connection id ""0HLAC3M1V4I2T"" stopped. +2017-12-26 12:08:58.635 +05:30 [Debug] Connection id ""0HLAC3M1V4I32"" started. +2017-12-26 12:08:58.637 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-26 12:08:58.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-26 12:08:58.638 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-26 12:09:00.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-26 12:09:03.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:09:03.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:09:03.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:09:03.882 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5244.1637ms +2017-12-26 12:09:03.891 +05:30 [Information] Request finished in 5253.1484ms 200 application/json; charset=utf-8 +2017-12-26 12:09:03.892 +05:30 [Debug] Connection id ""0HLAC3M1V4I32"" completed keep alive response. +2017-12-26 12:09:03.957 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-26 12:09:03.959 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 12:09:03.960 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 12:09:07.020 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-26 12:09:09.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:09:09.185 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:09:09.186 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:09:09.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5225.7249ms +2017-12-26 12:09:09.191 +05:30 [Information] Request finished in 5232.931ms 200 application/json; charset=utf-8 +2017-12-26 12:09:09.191 +05:30 [Debug] Connection id ""0HLAC3M1V4I32"" completed keep alive response. +2017-12-26 12:09:10.059 +05:30 [Debug] Connection id ""0HLAC3M1V4I33"" started. +2017-12-26 12:09:10.059 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 12:09:10.059 +05:30 [Debug] Connection id ""0HLAC3M1V4I35"" started. +2017-12-26 12:09:10.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 12:09:10.059 +05:30 [Debug] Connection id ""0HLAC3M1V4I34"" started. +2017-12-26 12:09:10.080 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 12:09:10.084 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 12:09:10.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 12:09:10.086 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 12:09:10.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 12:09:10.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 12:09:10.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 12:09:10.108 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 12:09:10.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 12:09:10.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 12:09:10.138 +05:30 [Debug] Connection id ""0HLAC3M1V4I36"" started. +2017-12-26 12:09:10.138 +05:30 [Debug] Connection id ""0HLAC3M1V4I37"" started. +2017-12-26 12:09:10.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 12:09:10.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 12:09:10.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 12:09:11.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 12:09:11.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 12:09:11.858 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 12:09:14.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:09:15.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:09:15.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:09:15.091 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:09:15.091 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:09:15.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:09:15.479 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:09:15.479 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:09:15.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:09:15.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:09:15.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5371.3977ms +2017-12-26 12:09:15.488 +05:30 [Information] Request finished in 5378.4ms 200 application/json; charset=utf-8 +2017-12-26 12:09:15.489 +05:30 [Debug] Connection id ""0HLAC3M1V4I35"" completed keep alive response. +2017-12-26 12:09:15.493 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-26 12:09:15.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 12:09:15.495 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 12:09:17.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:09:17.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:09:17.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:09:17.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:09:17.020 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6932.2646ms +2017-12-26 12:09:17.030 +05:30 [Information] Request finished in 6968.6457ms 200 application/json; charset=utf-8 +2017-12-26 12:09:17.030 +05:30 [Debug] Connection id ""0HLAC3M1V4I33"" completed keep alive response. +2017-12-26 12:09:17.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:09:17.563 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:09:17.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:09:17.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:09:17.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6705.6719ms +2017-12-26 12:09:17.572 +05:30 [Information] Request finished in 6714.3496ms 200 application/json; charset=utf-8 +2017-12-26 12:09:17.572 +05:30 [Debug] Connection id ""0HLAC3M1V4I36"" completed keep alive response. +2017-12-26 12:09:17.921 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:09:17.921 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:09:17.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:09:17.923 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:09:17.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7831.4575ms +2017-12-26 12:09:17.928 +05:30 [Information] Request finished in 7839.606ms 200 application/json; charset=utf-8 +2017-12-26 12:09:17.928 +05:30 [Debug] Connection id ""0HLAC3M1V4I34"" completed keep alive response. +2017-12-26 12:09:18.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:09:18.218 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:09:18.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:09:18.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:09:18.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8138.7699ms +2017-12-26 12:09:18.224 +05:30 [Information] Request finished in 8164.5562ms 200 application/json; charset=utf-8 +2017-12-26 12:09:18.224 +05:30 [Debug] Connection id ""0HLAC3M1V4I32"" completed keep alive response. +2017-12-26 12:09:18.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:09:18.423 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:09:18.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:09:18.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:09:18.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6567.3113ms +2017-12-26 12:09:18.427 +05:30 [Information] Request finished in 6570.7404ms 200 application/json; charset=utf-8 +2017-12-26 12:09:18.427 +05:30 [Debug] Connection id ""0HLAC3M1V4I37"" completed keep alive response. +2017-12-26 12:09:18.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:09:20.815 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:09:20.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:09:20.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:09:20.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:09:20.817 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5321.0013ms +2017-12-26 12:09:20.821 +05:30 [Information] Request finished in 5326.7963ms 200 application/json; charset=utf-8 +2017-12-26 12:09:20.821 +05:30 [Debug] Connection id ""0HLAC3M1V4I35"" completed keep alive response. +2017-12-26 12:10:53.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I33"" received FIN. +2017-12-26 12:10:53.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I32"" received FIN. +2017-12-26 12:10:53.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I37"" received FIN. +2017-12-26 12:10:53.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I36"" received FIN. +2017-12-26 12:10:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I35"" received FIN. +2017-12-26 12:10:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I34"" received FIN. +2017-12-26 12:10:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I37"" disconnecting. +2017-12-26 12:10:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I37"" sending FIN. +2017-12-26 12:10:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I32"" disconnecting. +2017-12-26 12:10:53.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I33"" disconnecting. +2017-12-26 12:10:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I37"" sent FIN with status "0". +2017-12-26 12:10:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I34"" disconnecting. +2017-12-26 12:10:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I36"" disconnecting. +2017-12-26 12:10:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I37"" stopped. +2017-12-26 12:10:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I35"" disconnecting. +2017-12-26 12:10:53.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I32"" sending FIN. +2017-12-26 12:10:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I33"" sending FIN. +2017-12-26 12:10:53.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I35"" sending FIN. +2017-12-26 12:10:53.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I34"" sending FIN. +2017-12-26 12:10:53.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I35"" sent FIN with status "0". +2017-12-26 12:10:53.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I36"" sending FIN. +2017-12-26 12:10:53.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I35"" stopped. +2017-12-26 12:10:53.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I36"" sent FIN with status "0". +2017-12-26 12:10:53.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I32"" sent FIN with status "0". +2017-12-26 12:10:53.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I36"" stopped. +2017-12-26 12:10:53.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I32"" stopped. +2017-12-26 12:10:53.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I34"" sent FIN with status "0". +2017-12-26 12:10:53.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I34"" stopped. +2017-12-26 12:10:53.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I33"" sent FIN with status "0". +2017-12-26 12:10:53.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I33"" stopped. +2017-12-26 12:14:39.119 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" started. +2017-12-26 12:14:39.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 12:14:39.120 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 12:14:39.121 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 12:14:42.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 12:14:43.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:14:43.882 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:14:43.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:14:43.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:14:43.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4762.9058ms +2017-12-26 12:14:43.887 +05:30 [Information] Request finished in 4767.3967ms 200 application/json; charset=utf-8 +2017-12-26 12:14:43.887 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" completed keep alive response. +2017-12-26 12:14:43.905 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" started. +2017-12-26 12:14:43.905 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-26 12:14:43.905 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" started. +2017-12-26 12:14:43.905 +05:30 [Debug] Connection id ""0HLAC3M1V4I3A"" started. +2017-12-26 12:14:43.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 12:14:43.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 12:14:43.913 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 12:14:43.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 12:14:43.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 12:14:43.921 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-26 12:14:43.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 12:14:43.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 12:14:43.928 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 12:14:43.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 12:14:43.929 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 12:14:46.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:14:47.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 12:14:47.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:14:47.088 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 12:14:49.019 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:14:49.019 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:14:49.019 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:14:49.021 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:14:49.037 +05:30 [Debug] Connection id ""0HLAC3M1V4I3C"" started. +2017-12-26 12:14:49.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5110.7176ms +2017-12-26 12:14:49.041 +05:30 [Information] Request finished in 5131.5884ms 200 application/json; charset=utf-8 +2017-12-26 12:14:49.042 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" completed keep alive response. +2017-12-26 12:14:49.044 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 12:14:49.044 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 12:14:49.045 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 12:14:50.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:14:50.036 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:14:50.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:14:50.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:14:50.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 6108.7364ms +2017-12-26 12:14:50.041 +05:30 [Information] Request finished in 6132.2642ms 200 application/json; charset=utf-8 +2017-12-26 12:14:50.041 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" completed keep alive response. +2017-12-26 12:14:52.094 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 12:14:52.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:14:52.524 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:14:52.524 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:14:52.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:14:52.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3483.2924ms +2017-12-26 12:14:52.533 +05:30 [Information] Request finished in 3488.5407ms 200 application/json; charset=utf-8 +2017-12-26 12:14:52.534 +05:30 [Debug] Connection id ""0HLAC3M1V4I3C"" completed keep alive response. +2017-12-26 12:14:53.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:14:53.945 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:14:53.945 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:14:53.947 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:14:53.948 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 10025.0056ms +2017-12-26 12:14:53.951 +05:30 [Information] Request finished in 10039.0358ms 200 application/json; charset=utf-8 +2017-12-26 12:14:53.952 +05:30 [Debug] Connection id ""0HLAC3M1V4I3A"" completed keep alive response. +2017-12-26 12:14:55.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:14:55.823 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:14:55.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:14:55.824 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:14:55.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 11911.6964ms +2017-12-26 12:14:55.827 +05:30 [Information] Request finished in 11923.6416ms 200 application/json; charset=utf-8 +2017-12-26 12:14:55.828 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" completed keep alive response. +2017-12-26 12:14:58.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 12:14:58.341 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 12:14:58.342 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 12:15:00.443 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 12:15:02.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:02.094 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:02.095 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:02.096 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3753.407ms +2017-12-26 12:15:02.100 +05:30 [Information] Request finished in 3758.9936ms 200 application/json; charset=utf-8 +2017-12-26 12:15:02.101 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" completed keep alive response. +2017-12-26 12:15:06.097 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 12:15:06.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 12:15:06.099 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 12:15:06.099 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 12:15:06.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 12:15:06.100 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 12:15:06.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 12:15:06.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 12:15:06.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 12:15:06.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 12:15:06.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 12:15:06.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 12:15:06.203 +05:30 [Debug] Connection id ""0HLAC3M1V4I3D"" started. +2017-12-26 12:15:06.204 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 12:15:06.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 12:15:06.205 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 12:15:07.521 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 12:15:07.522 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 12:15:07.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 12:15:10.659 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:15:10.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:15:10.708 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:15:10.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:15:10.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:15:10.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:15:11.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:11.291 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:11.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:11.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:11.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5191.9563ms +2017-12-26 12:15:11.296 +05:30 [Information] Request finished in 5199.3772ms 200 application/json; charset=utf-8 +2017-12-26 12:15:11.297 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" completed keep alive response. +2017-12-26 12:15:11.303 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 12:15:11.304 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 12:15:11.304 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 12:15:11.312 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:11.313 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:11.313 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:11.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:11.320 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5219.1421ms +2017-12-26 12:15:11.322 +05:30 [Information] Request finished in 5226.8872ms 200 application/json; charset=utf-8 +2017-12-26 12:15:11.323 +05:30 [Debug] Connection id ""0HLAC3M1V4I3C"" completed keep alive response. +2017-12-26 12:15:11.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:11.854 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:11.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:11.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:11.856 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5650.5236ms +2017-12-26 12:15:11.858 +05:30 [Information] Request finished in 5654.7397ms 200 application/json; charset=utf-8 +2017-12-26 12:15:11.858 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" completed keep alive response. +2017-12-26 12:15:12.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:12.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:12.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:12.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:12.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6723.9265ms +2017-12-26 12:15:12.863 +05:30 [Information] Request finished in 6752.6773ms 200 application/json; charset=utf-8 +2017-12-26 12:15:12.863 +05:30 [Debug] Connection id ""0HLAC3M1V4I3A"" completed keep alive response. +2017-12-26 12:15:13.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:13.395 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:13.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:13.396 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:13.397 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5872.7827ms +2017-12-26 12:15:13.400 +05:30 [Information] Request finished in 5878.1059ms 200 application/json; charset=utf-8 +2017-12-26 12:15:13.400 +05:30 [Debug] Connection id ""0HLAC3M1V4I3D"" completed keep alive response. +2017-12-26 12:15:14.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 12:15:14.627 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:14.627 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:14.627 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:14.628 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:14.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3323.6231ms +2017-12-26 12:15:14.631 +05:30 [Information] Request finished in 3329.3223ms 200 application/json; charset=utf-8 +2017-12-26 12:15:14.632 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" completed keep alive response. +2017-12-26 12:15:14.648 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 12:15:14.649 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 12:15:14.650 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 12:15:14.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 12:15:14.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 12:15:14.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 12:15:14.660 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-26 12:15:14.666 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 12:15:14.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 12:15:14.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-26 12:15:14.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 12:15:14.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 12:15:16.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:16.292 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:16.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:16.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:16.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 10162.1465ms +2017-12-26 12:15:16.301 +05:30 [Information] Request finished in 10190.4115ms 200 application/json; charset=utf-8 +2017-12-26 12:15:16.302 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" completed keep alive response. +2017-12-26 12:15:16.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 12:15:17.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 12:15:17.766 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:15:17.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:17.805 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:17.806 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:17.807 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:15:17.808 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:17.811 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3151.5604ms +2017-12-26 12:15:17.816 +05:30 [Information] Request finished in 3164.0971ms 200 application/json; charset=utf-8 +2017-12-26 12:15:17.816 +05:30 [Debug] Connection id ""0HLAC3M1V4I3A"" completed keep alive response. +2017-12-26 12:15:18.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:18.618 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:18.618 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:18.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:18.626 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 12:15:18.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 12:15:18.627 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 12:15:18.628 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3976.2305ms +2017-12-26 12:15:18.632 +05:30 [Information] Request finished in 3983.9355ms 200 application/json; charset=utf-8 +2017-12-26 12:15:18.633 +05:30 [Debug] Connection id ""0HLAC3M1V4I3C"" completed keep alive response. +2017-12-26 12:15:19.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:19.433 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:19.433 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:19.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:19.436 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 4761.1442ms +2017-12-26 12:15:19.442 +05:30 [Information] Request finished in 4793.517ms 200 application/json; charset=utf-8 +2017-12-26 12:15:19.443 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" completed keep alive response. +2017-12-26 12:15:20.149 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:20.149 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:20.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:20.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:20.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 5483.1491ms +2017-12-26 12:15:20.155 +05:30 [Information] Request finished in 5503.8989ms 200 application/json; charset=utf-8 +2017-12-26 12:15:20.155 +05:30 [Debug] Connection id ""0HLAC3M1V4I3D"" completed keep alive response. +2017-12-26 12:15:21.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 12:15:22.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:22.085 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:22.086 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:22.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:15:22.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3465.2198ms +2017-12-26 12:15:22.103 +05:30 [Information] Request finished in 3472.8205ms 200 application/json; charset=utf-8 +2017-12-26 12:15:22.104 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" completed keep alive response. +2017-12-26 12:15:23.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 12:15:23.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 12:15:23.407 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 12:15:25.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:15:57.759 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:15:57.759 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:15:57.761 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:15:57.762 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:16:09.942 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 46513.06ms +2017-12-26 12:16:09.945 +05:30 [Information] Request finished in 46538.757ms 200 application/json; charset=utf-8 +2017-12-26 12:16:09.946 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" completed keep alive response. +2017-12-26 12:16:23.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I3A"" received FIN. +2017-12-26 12:16:23.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I3A"" disconnecting. +2017-12-26 12:16:23.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" received FIN. +2017-12-26 12:16:23.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I3D"" received FIN. +2017-12-26 12:16:23.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I3A"" sending FIN. +2017-12-26 12:16:23.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" disconnecting. +2017-12-26 12:16:23.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I3C"" received FIN. +2017-12-26 12:16:23.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I3A"" sent FIN with status "0". +2017-12-26 12:16:23.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" received FIN. +2017-12-26 12:16:23.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I3A"" stopped. +2017-12-26 12:16:23.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I3C"" disconnecting. +2017-12-26 12:16:23.973 +05:30 [Debug] Connection id ""0HLAC3M1V4I3C"" sending FIN. +2017-12-26 12:16:23.973 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" sending FIN. +2017-12-26 12:16:23.974 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" disconnecting. +2017-12-26 12:16:23.975 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" sent FIN with status "0". +2017-12-26 12:16:23.977 +05:30 [Debug] Connection id ""0HLAC3M1V4I39"" stopped. +2017-12-26 12:16:23.974 +05:30 [Debug] Connection id ""0HLAC3M1V4I3C"" sent FIN with status "0". +2017-12-26 12:16:23.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I3D"" disconnecting. +2017-12-26 12:16:23.978 +05:30 [Debug] Connection id ""0HLAC3M1V4I3C"" stopped. +2017-12-26 12:16:23.978 +05:30 [Debug] Connection id ""0HLAC3M1V4I3D"" sending FIN. +2017-12-26 12:16:23.979 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" sending FIN. +2017-12-26 12:16:23.979 +05:30 [Debug] Connection id ""0HLAC3M1V4I3D"" sent FIN with status "0". +2017-12-26 12:16:23.979 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" sent FIN with status "0". +2017-12-26 12:16:23.980 +05:30 [Debug] Connection id ""0HLAC3M1V4I3D"" stopped. +2017-12-26 12:16:23.980 +05:30 [Debug] Connection id ""0HLAC3M1V4I3B"" stopped. +2017-12-26 12:18:13.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" received FIN. +2017-12-26 12:18:13.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" disconnecting. +2017-12-26 12:18:13.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" sending FIN. +2017-12-26 12:18:13.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" sent FIN with status "0". +2017-12-26 12:18:13.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I38"" stopped. +2017-12-26 12:23:49.684 +05:30 [Debug] Connection id ""0HLAC3M1V4I3E"" started. +2017-12-26 12:23:49.685 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 12:23:49.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 12:23:49.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 12:23:52.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:23:57.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:23:57.069 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:23:57.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:23:57.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:23:57.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 7384.4759ms +2017-12-26 12:23:57.075 +05:30 [Information] Request finished in 7390.1241ms 200 application/json; charset=utf-8 +2017-12-26 12:23:57.075 +05:30 [Debug] Connection id ""0HLAC3M1V4I3E"" completed keep alive response. +2017-12-26 12:25:33.673 +05:30 [Debug] Connection id ""0HLAC3M1V4I3E"" received FIN. +2017-12-26 12:25:33.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3E"" disconnecting. +2017-12-26 12:25:33.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3E"" sending FIN. +2017-12-26 12:25:33.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3E"" sent FIN with status "0". +2017-12-26 12:25:33.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I3E"" stopped. +2017-12-26 12:25:39.722 +05:30 [Debug] Connection id ""0HLAC3M1V4I3F"" started. +2017-12-26 12:25:39.723 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 12:25:39.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 12:25:39.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 12:25:42.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:26:04.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:26:04.082 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:26:04.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:26:04.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:26:04.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 24360.7267ms +2017-12-26 12:26:04.089 +05:30 [Information] Request finished in 24365.4291ms 200 application/json; charset=utf-8 +2017-12-26 12:26:04.090 +05:30 [Debug] Connection id ""0HLAC3M1V4I3F"" completed keep alive response. +2017-12-26 12:26:26.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 12:26:26.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 12:26:26.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 12:26:29.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:26:33.574 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:26:33.574 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:26:33.575 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:26:33.575 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:26:33.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 7175.2032ms +2017-12-26 12:26:33.579 +05:30 [Information] Request finished in 7194.157ms 200 application/json; charset=utf-8 +2017-12-26 12:26:33.579 +05:30 [Debug] Connection id ""0HLAC3M1V4I3F"" completed keep alive response. +2017-12-26 12:29:13.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I3F"" received FIN. +2017-12-26 12:29:13.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I3F"" disconnecting. +2017-12-26 12:29:13.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I3F"" sending FIN. +2017-12-26 12:29:13.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I3F"" sent FIN with status "0". +2017-12-26 12:29:13.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I3F"" stopped. +2017-12-26 12:30:18.230 +05:30 [Debug] Connection id ""0HLAC3M1V4I3G"" started. +2017-12-26 12:30:18.230 +05:30 [Debug] Connection id ""0HLAC3M1V4I3H"" started. +2017-12-26 12:30:18.231 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=1155481037833115 +2017-12-26 12:30:18.232 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=1155481037833115&userId=48&skip=0&count=10&type=undefined +2017-12-26 12:30:18.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 12:30:18.233 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 12:30:18.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 12:30:18.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 12:30:21.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["1155481037833115"]) - ModelState is Valid +2017-12-26 12:30:21.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["1155481037833115", "48", "0", "10"]) - ModelState is Valid +2017-12-26 12:30:21.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:30:21.848 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:30:21.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:30:21.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:30:21.857 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3617.962ms +2017-12-26 12:30:21.861 +05:30 [Information] Request finished in 3629.6755ms 200 application/json; charset=utf-8 +2017-12-26 12:30:21.861 +05:30 [Debug] Connection id ""0HLAC3M1V4I3G"" completed keep alive response. +2017-12-26 12:30:23.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:30:23.427 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:30:23.427 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:30:23.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:30:23.463 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 5220.3339ms +2017-12-26 12:30:23.468 +05:30 [Information] Request finished in 5236.255ms 200 application/json; charset=utf-8 +2017-12-26 12:30:23.468 +05:30 [Debug] Connection id ""0HLAC3M1V4I3H"" completed keep alive response. +2017-12-26 12:32:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I3G"" received FIN. +2017-12-26 12:32:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I3G"" disconnecting. +2017-12-26 12:32:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I3H"" received FIN. +2017-12-26 12:32:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I3G"" sending FIN. +2017-12-26 12:32:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I3H"" disconnecting. +2017-12-26 12:32:53.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I3G"" sent FIN with status "0". +2017-12-26 12:32:53.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I3H"" sending FIN. +2017-12-26 12:32:53.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I3G"" stopped. +2017-12-26 12:32:53.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I3H"" sent FIN with status "0". +2017-12-26 12:32:53.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I3H"" stopped. +2017-12-26 12:38:15.533 +05:30 [Debug] Connection id ""0HLAC3M1V4I3I"" started. +2017-12-26 12:38:15.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 12:38:15.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 12:38:15.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 12:38:17.640 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:38:22.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:38:22.555 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:38:22.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:38:22.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:38:22.558 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 7017.9647ms +2017-12-26 12:38:22.562 +05:30 [Information] Request finished in 7025.7362ms 200 application/json; charset=utf-8 +2017-12-26 12:38:22.563 +05:30 [Debug] Connection id ""0HLAC3M1V4I3I"" completed keep alive response. +2017-12-26 12:40:00.361 +05:30 [Debug] Connection id ""0HLAC3M1V4I3I"" received FIN. +2017-12-26 12:40:00.362 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" started. +2017-12-26 12:40:00.362 +05:30 [Debug] Connection id ""0HLAC3M1V4I3I"" disconnecting. +2017-12-26 12:40:00.363 +05:30 [Debug] Connection id ""0HLAC3M1V4I3I"" sending FIN. +2017-12-26 12:40:00.364 +05:30 [Debug] Connection id ""0HLAC3M1V4I3I"" sent FIN with status "0". +2017-12-26 12:40:00.364 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPagesDet application/x-www-form-urlencoded 228 +2017-12-26 12:40:00.364 +05:30 [Debug] Connection id ""0HLAC3M1V4I3I"" stopped. +2017-12-26 12:40:00.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPagesDet"'. +2017-12-26 12:40:00.367 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" +2017-12-26 12:40:03.430 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBALRZCBQkwOg7CFqAvL956q1e9ZCPFVQpJEY4ZCMjj1apr4w88nPmi3lhY1xfPTySuLMuuw5iJTdAC3Pq9MmrKW1zZAHnwUp4gU9GYxEDwKy8VQohHqTMs9EqAyb3ZBx5e4OP4dL9fZCGRYGzv7u9rZCq8lS0UBTPgZDZD", "48"]) - ModelState is Valid +2017-12-26 12:40:09.528 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:09.528 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:09.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:09.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" in 9175.9248ms +2017-12-26 12:40:09.548 +05:30 [Information] Request finished in 9184.3549ms 200 application/json; charset=utf-8 +2017-12-26 12:40:09.548 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" completed keep alive response. +2017-12-26 12:40:09.666 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 12:40:09.666 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 12:40:09.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 12:40:11.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 12:40:13.352 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:13.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:13.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:13.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3686.9946ms +2017-12-26 12:40:13.358 +05:30 [Information] Request finished in 3691.6246ms 200 application/json; charset=utf-8 +2017-12-26 12:40:13.358 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" completed keep alive response. +2017-12-26 12:40:14.315 +05:30 [Debug] Connection id ""0HLAC3M1V4I3K"" started. +2017-12-26 12:40:14.315 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" started. +2017-12-26 12:40:14.316 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" started. +2017-12-26 12:40:14.317 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 12:40:14.318 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 12:40:14.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 12:40:14.319 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 12:40:14.319 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 12:40:14.320 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 12:40:14.320 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 12:40:14.323 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 12:40:14.324 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 12:40:14.351 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 12:40:14.352 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 12:40:14.354 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 12:40:14.420 +05:30 [Debug] Connection id ""0HLAC3M1V4I3N"" started. +2017-12-26 12:40:14.422 +05:30 [Debug] Connection id ""0HLAC3M1V4I3O"" started. +2017-12-26 12:40:15.059 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 12:40:15.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 12:40:15.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 12:40:16.061 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 12:40:16.061 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 12:40:16.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 12:40:19.182 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:19.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:19.336 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:19.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:19.371 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:19.384 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:19.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:19.847 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:19.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:19.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:19.850 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5528.4676ms +2017-12-26 12:40:19.852 +05:30 [Information] Request finished in 5535.1984ms 200 application/json; charset=utf-8 +2017-12-26 12:40:19.852 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" completed keep alive response. +2017-12-26 12:40:19.869 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-26 12:40:19.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 12:40:19.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 12:40:21.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:21.359 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:21.359 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:21.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:21.362 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7006.654ms +2017-12-26 12:40:21.364 +05:30 [Information] Request finished in 7046.6869ms 200 application/json; charset=utf-8 +2017-12-26 12:40:21.364 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" completed keep alive response. +2017-12-26 12:40:21.371 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/ReconnFacebookPages?userId=48&groupId=48&accessToken=EAAKYvwDVmnUBAAkDeoAMApZBpBMZBvU2laoMogUwZAbFyWJIFovsCpUDgY2h3sCJXeaFbS7kYMN3AJGKjTPmUEJZBOZAUB7cKchhymip3YIJw8dWpvdoB4YzNSLmUsLlZBY5BGiY2z6N8wlsP7F33YobFAxYJ7scM7IlOGJKsemQZDZD 0 +2017-12-26 12:40:21.372 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/ReconnFacebookPages"'. +2017-12-26 12:40:21.373 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" +2017-12-26 12:40:21.509 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:21.510 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:21.510 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:21.511 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:21.513 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7193.2868ms +2017-12-26 12:40:21.516 +05:30 [Information] Request finished in 7200.2132ms 200 application/json; charset=utf-8 +2017-12-26 12:40:21.517 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" completed keep alive response. +2017-12-26 12:40:21.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:21.772 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:21.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:21.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:21.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7449.9082ms +2017-12-26 12:40:21.777 +05:30 [Information] Request finished in 7460.5379ms 200 application/json; charset=utf-8 +2017-12-26 12:40:21.778 +05:30 [Debug] Connection id ""0HLAC3M1V4I3K"" completed keep alive response. +2017-12-26 12:40:21.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:21.849 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:21.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:21.851 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:21.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:21.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:21.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:21.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5793.0042ms +2017-12-26 12:40:21.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:21.866 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6800.3443ms +2017-12-26 12:40:21.866 +05:30 [Information] Request finished in 5805.0642ms 200 application/json; charset=utf-8 +2017-12-26 12:40:21.869 +05:30 [Debug] Connection id ""0HLAC3M1V4I3O"" completed keep alive response. +2017-12-26 12:40:21.869 +05:30 [Information] Request finished in 6809.0031ms 200 application/json; charset=utf-8 +2017-12-26 12:40:21.895 +05:30 [Debug] Connection id ""0HLAC3M1V4I3N"" completed keep alive response. +2017-12-26 12:40:22.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:24.457 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" with arguments (["48", "48", "EAAKYvwDVmnUBAAkDeoAMApZBpBMZBvU2laoMogUwZAbFyWJIFovsCpUDgY2h3sCJXeaFbS7kYMN3AJGKjTPmUEJZBOZAUB7cKchhymip3YIJw8dWpvdoB4YzNSLmUsLlZBY5BGiY2z6N8wlsP7F33YobFAxYJ7scM7IlOGJKsemQZDZD"]) - ModelState is Valid +2017-12-26 12:40:25.020 +05:30 [Error] {"id":"1155481037833115","name":"Samplepage45","username":"Samplepage45","fan_count":42,"cover":{"cover_id":"1201817283199490","offset_x":0,"offset_y":35,"source":"https://scontent.xx.fbcdn.net/v/t1.0-9/s720x720/16427802_1201817283199490_7514067372103749116_n.png?oh=ef2f3f63ba209f8f61a9ddb8495def71&oe=5AB4281A","id":"1201817283199490"},"emails":["sachinupadhyay@globussoft.in"]} +2017-12-26 12:40:25.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:25.162 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:25.162 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:25.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:25.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5294.5762ms +2017-12-26 12:40:25.169 +05:30 [Information] Request finished in 5303.6971ms 200 application/json; charset=utf-8 +2017-12-26 12:40:25.169 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" completed keep alive response. +2017-12-26 12:40:26.767 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:26.768 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:26.768 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-26 12:40:26.769 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:26.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" in 5398.3462ms +2017-12-26 12:40:26.776 +05:30 [Information] Request finished in 5405.5031ms 200 text/plain; charset=utf-8 +2017-12-26 12:40:26.776 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" completed keep alive response. +2017-12-26 12:40:26.850 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 12:40:26.852 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 12:40:26.853 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 12:40:29.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 12:40:31.461 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:31.462 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:31.463 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:31.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4610.227ms +2017-12-26 12:40:31.477 +05:30 [Information] Request finished in 4625.3363ms 200 application/json; charset=utf-8 +2017-12-26 12:40:31.478 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" completed keep alive response. +2017-12-26 12:40:31.959 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 12:40:31.960 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 12:40:31.960 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 12:40:31.962 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 12:40:31.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 12:40:31.965 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 12:40:31.968 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 12:40:31.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 12:40:31.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 12:40:31.989 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 12:40:31.990 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 12:40:31.991 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 12:40:32.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 12:40:32.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 12:40:32.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 12:40:32.051 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 12:40:32.052 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 12:40:32.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 12:40:34.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:34.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:35.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:35.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:35.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:35.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:35.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:35.276 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:35.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:35.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:35.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3225.742ms +2017-12-26 12:40:35.284 +05:30 [Information] Request finished in 3234.2378ms 200 application/json; charset=utf-8 +2017-12-26 12:40:35.285 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" completed keep alive response. +2017-12-26 12:40:35.289 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-26 12:40:35.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 12:40:35.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 12:40:35.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:35.638 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:35.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:35.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:35.640 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3667.9964ms +2017-12-26 12:40:35.641 +05:30 [Information] Request finished in 3684.4611ms 200 application/json; charset=utf-8 +2017-12-26 12:40:35.642 +05:30 [Debug] Connection id ""0HLAC3M1V4I3O"" completed keep alive response. +2017-12-26 12:40:35.712 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:35.713 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:35.713 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:35.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:35.715 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3749.2569ms +2017-12-26 12:40:35.717 +05:30 [Information] Request finished in 3759.6548ms 200 application/json; charset=utf-8 +2017-12-26 12:40:35.718 +05:30 [Debug] Connection id ""0HLAC3M1V4I3N"" completed keep alive response. +2017-12-26 12:40:35.759 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:35.759 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:35.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:35.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:35.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3800.1757ms +2017-12-26 12:40:35.765 +05:30 [Information] Request finished in 3807.0639ms 200 application/json; charset=utf-8 +2017-12-26 12:40:35.765 +05:30 [Debug] Connection id ""0HLAC3M1V4I3K"" completed keep alive response. +2017-12-26 12:40:36.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:36.202 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:36.202 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:36.204 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:36.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:36.205 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:36.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:36.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4213.6628ms +2017-12-26 12:40:36.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:36.211 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4168.9594ms +2017-12-26 12:40:36.211 +05:30 [Information] Request finished in 4252.4349ms 200 application/json; charset=utf-8 +2017-12-26 12:40:36.212 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" completed keep alive response. +2017-12-26 12:40:36.215 +05:30 [Information] Request finished in 4182.957ms 200 application/json; charset=utf-8 +2017-12-26 12:40:36.215 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" completed keep alive response. +2017-12-26 12:40:38.332 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:40.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 12:40:40.240 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 12:40:40.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 12:40:40.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:40.606 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:40.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:40.607 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:40.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5316.135ms +2017-12-26 12:40:40.610 +05:30 [Information] Request finished in 5320.5752ms 200 application/json; charset=utf-8 +2017-12-26 12:40:40.611 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" completed keep alive response. +2017-12-26 12:40:43.267 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 12:40:44.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:44.797 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:44.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:44.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:44.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4558.0056ms +2017-12-26 12:40:44.801 +05:30 [Information] Request finished in 4561.7962ms 200 application/json; charset=utf-8 +2017-12-26 12:40:44.802 +05:30 [Debug] Connection id ""0HLAC3M1V4I3O"" completed keep alive response. +2017-12-26 12:40:44.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 12:40:44.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 12:40:44.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 12:40:44.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 12:40:44.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 12:40:44.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 12:40:44.884 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-26 12:40:44.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-26 12:40:44.887 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 12:40:44.887 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 12:40:44.887 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 12:40:44.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 12:40:47.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:48.009 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:40:48.012 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 12:40:48.016 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 12:40:49.875 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:49.875 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:49.875 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:49.876 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:49.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5041.4856ms +2017-12-26 12:40:49.884 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 12:40:49.885 +05:30 [Information] Request finished in 5062.5685ms 200 application/json; charset=utf-8 +2017-12-26 12:40:49.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 12:40:49.886 +05:30 [Debug] Connection id ""0HLAC3M1V4I3N"" completed keep alive response. +2017-12-26 12:40:49.886 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 12:40:50.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:50.516 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:50.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:50.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:50.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5629.9175ms +2017-12-26 12:40:50.520 +05:30 [Information] Request finished in 5683.456ms 200 application/json; charset=utf-8 +2017-12-26 12:40:50.520 +05:30 [Debug] Connection id ""0HLAC3M1V4I3K"" completed keep alive response. +2017-12-26 12:40:50.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:50.623 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:50.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:50.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:50.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5733.0646ms +2017-12-26 12:40:50.629 +05:30 [Information] Request finished in 5787.6238ms 200 application/json; charset=utf-8 +2017-12-26 12:40:50.629 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" completed keep alive response. +2017-12-26 12:40:52.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:52.319 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:52.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:52.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:52.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 7432.5126ms +2017-12-26 12:40:52.327 +05:30 [Information] Request finished in 7484.0479ms 200 application/json; charset=utf-8 +2017-12-26 12:40:52.328 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" completed keep alive response. +2017-12-26 12:40:52.943 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 12:40:53.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:40:53.507 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:40:53.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:40:53.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:40:53.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3623.8152ms +2017-12-26 12:40:53.529 +05:30 [Information] Request finished in 3637.4308ms 200 application/json; charset=utf-8 +2017-12-26 12:40:53.531 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" completed keep alive response. +2017-12-26 12:42:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3O"" received FIN. +2017-12-26 12:42:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3N"" received FIN. +2017-12-26 12:42:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" received FIN. +2017-12-26 12:42:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3K"" received FIN. +2017-12-26 12:42:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" received FIN. +2017-12-26 12:42:03.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" received FIN. +2017-12-26 12:42:03.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I3N"" disconnecting. +2017-12-26 12:42:03.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I3O"" disconnecting. +2017-12-26 12:42:03.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I3N"" sending FIN. +2017-12-26 12:42:03.676 +05:30 [Debug] Connection id ""0HLAC3M1V4I3O"" sending FIN. +2017-12-26 12:42:03.676 +05:30 [Debug] Connection id ""0HLAC3M1V4I3N"" sent FIN with status "0". +2017-12-26 12:42:03.676 +05:30 [Debug] Connection id ""0HLAC3M1V4I3O"" sent FIN with status "0". +2017-12-26 12:42:03.676 +05:30 [Debug] Connection id ""0HLAC3M1V4I3O"" stopped. +2017-12-26 12:42:03.676 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" disconnecting. +2017-12-26 12:42:03.677 +05:30 [Debug] Connection id ""0HLAC3M1V4I3K"" disconnecting. +2017-12-26 12:42:03.677 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" disconnecting. +2017-12-26 12:42:03.677 +05:30 [Debug] Connection id ""0HLAC3M1V4I3N"" stopped. +2017-12-26 12:42:03.683 +05:30 [Debug] Connection id ""0HLAC3M1V4I3K"" sending FIN. +2017-12-26 12:42:03.684 +05:30 [Debug] Connection id ""0HLAC3M1V4I3K"" sent FIN with status "0". +2017-12-26 12:42:03.684 +05:30 [Debug] Connection id ""0HLAC3M1V4I3K"" stopped. +2017-12-26 12:42:03.677 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" disconnecting. +2017-12-26 12:42:03.677 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" sending FIN. +2017-12-26 12:42:03.686 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" sending FIN. +2017-12-26 12:42:03.686 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" sent FIN with status "0". +2017-12-26 12:42:03.687 +05:30 [Debug] Connection id ""0HLAC3M1V4I3M"" stopped. +2017-12-26 12:42:03.687 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" sending FIN. +2017-12-26 12:42:03.687 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" sent FIN with status "0". +2017-12-26 12:42:03.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" sent FIN with status "0". +2017-12-26 12:42:03.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I3L"" stopped. +2017-12-26 12:42:03.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I3J"" stopped. +2017-12-26 12:53:59.813 +05:30 [Debug] Connection id ""0HLAC3M1V4I3P"" started. +2017-12-26 12:53:59.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 12:53:59.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 12:53:59.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 12:54:01.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 12:54:06.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 12:54:06.614 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 12:54:06.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 12:54:06.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 12:54:06.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 6777.6883ms +2017-12-26 12:54:06.622 +05:30 [Information] Request finished in 6796.1329ms 200 application/json; charset=utf-8 +2017-12-26 12:54:06.623 +05:30 [Debug] Connection id ""0HLAC3M1V4I3P"" completed keep alive response. +2017-12-26 12:56:43.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I3P"" received FIN. +2017-12-26 12:56:43.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I3P"" disconnecting. +2017-12-26 12:56:43.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I3P"" sending FIN. +2017-12-26 12:56:43.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I3P"" sent FIN with status "0". +2017-12-26 12:56:43.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I3P"" stopped. +2017-12-26 13:23:29.565 +05:30 [Debug] Connection id ""0HLAC3M1V4I3R"" started. +2017-12-26 13:23:29.565 +05:30 [Debug] Connection id ""0HLAC3M1V4I3Q"" started. +2017-12-26 13:23:29.588 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=1155481037833115 +2017-12-26 13:23:29.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 13:23:29.589 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=1155481037833115&userId=48&skip=0&count=10&type=undefined +2017-12-26 13:23:29.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 13:23:29.589 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 13:23:29.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 13:23:31.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["1155481037833115"]) - ModelState is Valid +2017-12-26 13:23:32.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["1155481037833115", "48", "0", "10"]) - ModelState is Valid +2017-12-26 13:23:33.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:23:33.602 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:23:33.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:23:33.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:23:33.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 4015.1457ms +2017-12-26 13:23:33.608 +05:30 [Information] Request finished in 4040.1772ms 200 application/json; charset=utf-8 +2017-12-26 13:23:33.608 +05:30 [Debug] Connection id ""0HLAC3M1V4I3Q"" completed keep alive response. +2017-12-26 13:23:34.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:23:34.641 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:23:34.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:23:34.642 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:23:34.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 5051.6099ms +2017-12-26 13:23:34.651 +05:30 [Information] Request finished in 5083.1436ms 200 application/json; charset=utf-8 +2017-12-26 13:23:34.652 +05:30 [Debug] Connection id ""0HLAC3M1V4I3R"" completed keep alive response. +2017-12-26 13:26:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3Q"" received FIN. +2017-12-26 13:26:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I3R"" received FIN. +2017-12-26 13:26:03.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I3R"" disconnecting. +2017-12-26 13:26:03.676 +05:30 [Debug] Connection id ""0HLAC3M1V4I3R"" sending FIN. +2017-12-26 13:26:03.677 +05:30 [Debug] Connection id ""0HLAC3M1V4I3R"" sent FIN with status "0". +2017-12-26 13:26:03.678 +05:30 [Debug] Connection id ""0HLAC3M1V4I3R"" stopped. +2017-12-26 13:26:03.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I3Q"" disconnecting. +2017-12-26 13:26:03.678 +05:30 [Debug] Connection id ""0HLAC3M1V4I3Q"" sending FIN. +2017-12-26 13:26:03.679 +05:30 [Debug] Connection id ""0HLAC3M1V4I3Q"" sent FIN with status "0". +2017-12-26 13:26:03.679 +05:30 [Debug] Connection id ""0HLAC3M1V4I3Q"" stopped. +2017-12-26 13:37:54.524 +05:30 [Debug] Connection id ""0HLAC3M1V4I3S"" started. +2017-12-26 13:37:54.531 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:37:54.532 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 13:37:54.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 13:37:57.633 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:37:59.560 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:37:59.561 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:37:59.561 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:37:59.629 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:37:59.639 +05:30 [Debug] Connection id ""0HLAC3M1V4I3S"" received FIN. +2017-12-26 13:37:59.695 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 5098.5192ms +2017-12-26 13:37:59.716 +05:30 [Information] Request finished in 5181.0635ms 200 application/json; charset=utf-8 +2017-12-26 13:37:59.717 +05:30 [Debug] Connection id ""0HLAC3M1V4I3S"" completed keep alive response. +2017-12-26 13:37:59.718 +05:30 [Debug] Connection id ""0HLAC3M1V4I3S"" disconnecting. +2017-12-26 13:37:59.734 +05:30 [Information] Connection id ""0HLAC3M1V4I3S"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 13:37:59.742 +05:30 [Debug] Connection id ""0HLAC3M1V4I3S"" sending FIN. +2017-12-26 13:37:59.744 +05:30 [Debug] Connection id ""0HLAC3M1V4I3S"" sent FIN with status "0". +2017-12-26 13:37:59.744 +05:30 [Debug] Connection id ""0HLAC3M1V4I3S"" stopped. +2017-12-26 13:38:01.191 +05:30 [Debug] Connection id ""0HLAC3M1V4I3T"" started. +2017-12-26 13:38:01.193 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-26 13:38:01.194 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-26 13:38:01.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-26 13:38:04.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-26 13:38:07.279 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:38:07.280 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:38:07.281 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:38:07.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 6082.7673ms +2017-12-26 13:38:07.285 +05:30 [Information] Request finished in 6092.9702ms 200 application/json; charset=utf-8 +2017-12-26 13:38:07.286 +05:30 [Debug] Connection id ""0HLAC3M1V4I3T"" completed keep alive response. +2017-12-26 13:38:07.331 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-26 13:38:07.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 13:38:07.332 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 13:38:10.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-26 13:38:11.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:38:11.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:38:11.967 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:38:11.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4636.8054ms +2017-12-26 13:38:11.973 +05:30 [Information] Request finished in 4642.095ms 200 application/json; charset=utf-8 +2017-12-26 13:38:11.974 +05:30 [Debug] Connection id ""0HLAC3M1V4I3T"" completed keep alive response. +2017-12-26 13:38:12.691 +05:30 [Debug] Connection id ""0HLAC3M1V4I3V"" started. +2017-12-26 13:38:12.712 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 13:38:12.691 +05:30 [Debug] Connection id ""0HLAC3M1V4I3U"" started. +2017-12-26 13:38:12.740 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 13:38:12.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 13:38:12.741 +05:30 [Debug] Connection id ""0HLAC3M1V4I40"" started. +2017-12-26 13:38:12.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 13:38:12.741 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 13:38:12.742 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 13:38:12.743 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 13:38:12.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 13:38:12.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 13:38:12.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 13:38:12.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 13:38:12.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 13:38:12.827 +05:30 [Debug] Connection id ""0HLAC3M1V4I41"" started. +2017-12-26 13:38:12.828 +05:30 [Debug] Connection id ""0HLAC3M1V4I42"" started. +2017-12-26 13:38:13.370 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 13:38:13.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 13:38:13.371 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 13:38:14.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 13:38:14.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 13:38:14.374 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 13:38:17.492 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:38:17.519 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:38:17.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:38:17.556 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:38:17.570 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:38:17.573 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:38:18.579 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:38:18.580 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:38:18.580 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:38:18.581 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:38:18.583 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5838.9444ms +2017-12-26 13:38:18.586 +05:30 [Information] Request finished in 5872.7233ms 200 application/json; charset=utf-8 +2017-12-26 13:38:18.586 +05:30 [Debug] Connection id ""0HLAC3M1V4I3V"" completed keep alive response. +2017-12-26 13:38:18.591 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-26 13:38:18.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 13:38:18.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 13:38:19.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:38:19.454 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:38:19.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:38:19.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:38:19.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6704.4829ms +2017-12-26 13:38:19.462 +05:30 [Information] Request finished in 6718.8092ms 200 application/json; charset=utf-8 +2017-12-26 13:38:19.463 +05:30 [Debug] Connection id ""0HLAC3M1V4I3U"" completed keep alive response. +2017-12-26 13:38:19.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:38:19.484 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:38:19.485 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:38:19.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:38:19.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6743.1334ms +2017-12-26 13:38:19.493 +05:30 [Information] Request finished in 6800.9001ms 200 application/json; charset=utf-8 +2017-12-26 13:38:19.493 +05:30 [Debug] Connection id ""0HLAC3M1V4I3T"" completed keep alive response. +2017-12-26 13:38:19.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:38:19.616 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:38:19.616 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:38:19.617 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:38:19.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6867.1843ms +2017-12-26 13:38:19.621 +05:30 [Information] Request finished in 6878.6328ms 200 application/json; charset=utf-8 +2017-12-26 13:38:19.621 +05:30 [Debug] Connection id ""0HLAC3M1V4I40"" completed keep alive response. +2017-12-26 13:38:20.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:38:20.036 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:38:20.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:38:20.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:38:20.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5662.3096ms +2017-12-26 13:38:20.039 +05:30 [Information] Request finished in 5667.0957ms 200 application/json; charset=utf-8 +2017-12-26 13:38:20.040 +05:30 [Debug] Connection id ""0HLAC3M1V4I42"" completed keep alive response. +2017-12-26 13:38:20.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:38:20.053 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:38:20.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:38:20.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:38:20.056 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6683.455ms +2017-12-26 13:38:20.059 +05:30 [Information] Request finished in 6687.9578ms 200 application/json; charset=utf-8 +2017-12-26 13:38:20.059 +05:30 [Debug] Connection id ""0HLAC3M1V4I41"" completed keep alive response. +2017-12-26 13:38:21.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:38:23.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:38:23.912 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:38:23.913 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:38:23.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:38:23.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5320.3037ms +2017-12-26 13:38:23.919 +05:30 [Information] Request finished in 5328.4132ms 200 application/json; charset=utf-8 +2017-12-26 13:38:23.920 +05:30 [Debug] Connection id ""0HLAC3M1V4I3V"" completed keep alive response. +2017-12-26 13:40:24.097 +05:30 [Debug] Connection id ""0HLAC3M1V4I3U"" received FIN. +2017-12-26 13:40:24.097 +05:30 [Debug] Connection id ""0HLAC3M1V4I40"" received FIN. +2017-12-26 13:40:24.097 +05:30 [Debug] Connection id ""0HLAC3M1V4I3T"" received FIN. +2017-12-26 13:40:24.097 +05:30 [Debug] Connection id ""0HLAC3M1V4I42"" received FIN. +2017-12-26 13:40:24.097 +05:30 [Debug] Connection id ""0HLAC3M1V4I41"" received FIN. +2017-12-26 13:40:24.097 +05:30 [Debug] Connection id ""0HLAC3M1V4I3V"" received FIN. +2017-12-26 13:40:24.098 +05:30 [Debug] Connection id ""0HLAC3M1V4I3U"" disconnecting. +2017-12-26 13:40:24.098 +05:30 [Debug] Connection id ""0HLAC3M1V4I3U"" sending FIN. +2017-12-26 13:40:24.098 +05:30 [Debug] Connection id ""0HLAC3M1V4I3T"" disconnecting. +2017-12-26 13:40:24.098 +05:30 [Debug] Connection id ""0HLAC3M1V4I3U"" sent FIN with status "0". +2017-12-26 13:40:24.099 +05:30 [Debug] Connection id ""0HLAC3M1V4I42"" disconnecting. +2017-12-26 13:40:24.099 +05:30 [Debug] Connection id ""0HLAC3M1V4I42"" sending FIN. +2017-12-26 13:40:24.099 +05:30 [Debug] Connection id ""0HLAC3M1V4I3U"" stopped. +2017-12-26 13:40:24.099 +05:30 [Debug] Connection id ""0HLAC3M1V4I42"" sent FIN with status "0". +2017-12-26 13:40:24.099 +05:30 [Debug] Connection id ""0HLAC3M1V4I3T"" sending FIN. +2017-12-26 13:40:24.100 +05:30 [Debug] Connection id ""0HLAC3M1V4I3V"" disconnecting. +2017-12-26 13:40:24.100 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" started. +2017-12-26 13:40:24.099 +05:30 [Debug] Connection id ""0HLAC3M1V4I42"" stopped. +2017-12-26 13:40:24.100 +05:30 [Debug] Connection id ""0HLAC3M1V4I3T"" sent FIN with status "0". +2017-12-26 13:40:24.100 +05:30 [Debug] Connection id ""0HLAC3M1V4I3T"" stopped. +2017-12-26 13:40:24.100 +05:30 [Debug] Connection id ""0HLAC3M1V4I3V"" sending FIN. +2017-12-26 13:40:24.101 +05:30 [Debug] Connection id ""0HLAC3M1V4I3V"" sent FIN with status "0". +2017-12-26 13:40:24.101 +05:30 [Debug] Connection id ""0HLAC3M1V4I3V"" stopped. +2017-12-26 13:40:24.099 +05:30 [Debug] Connection id ""0HLAC3M1V4I41"" disconnecting. +2017-12-26 13:40:24.098 +05:30 [Debug] Connection id ""0HLAC3M1V4I40"" disconnecting. +2017-12-26 13:40:24.105 +05:30 [Debug] Connection id ""0HLAC3M1V4I41"" sending FIN. +2017-12-26 13:40:24.105 +05:30 [Debug] Connection id ""0HLAC3M1V4I40"" sending FIN. +2017-12-26 13:40:24.106 +05:30 [Debug] Connection id ""0HLAC3M1V4I41"" sent FIN with status "0". +2017-12-26 13:40:24.106 +05:30 [Debug] Connection id ""0HLAC3M1V4I40"" sent FIN with status "0". +2017-12-26 13:40:24.106 +05:30 [Debug] Connection id ""0HLAC3M1V4I41"" stopped. +2017-12-26 13:40:24.106 +05:30 [Debug] Connection id ""0HLAC3M1V4I40"" stopped. +2017-12-26 13:40:24.107 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:40:24.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 13:40:24.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 13:40:27.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:40:27.415 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:40:27.416 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:40:27.416 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:40:27.417 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:40:27.418 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3309.2495ms +2017-12-26 13:40:27.420 +05:30 [Information] Request finished in 3316.0494ms 200 application/json; charset=utf-8 +2017-12-26 13:40:27.420 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" completed keep alive response. +2017-12-26 13:40:27.666 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 13:40:27.666 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" started. +2017-12-26 13:40:27.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 13:40:27.668 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:40:27.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 13:40:27.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:40:27.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:40:29.797 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 13:40:30.587 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:40:30.588 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:40:30.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:40:30.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:40:30.590 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 2920.5082ms +2017-12-26 13:40:30.592 +05:30 [Information] Request finished in 2925.7064ms 200 application/json; charset=utf-8 +2017-12-26 13:40:30.593 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" completed keep alive response. +2017-12-26 13:40:30.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:40:32.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:40:32.649 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:40:32.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:40:32.650 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:40:32.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4982.5683ms +2017-12-26 13:40:32.655 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:40:32.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:40:32.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:40:32.658 +05:30 [Information] Request finished in 4988.3944ms 200 application/json; charset=utf-8 +2017-12-26 13:40:32.659 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" completed keep alive response. +2017-12-26 13:40:35.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:40:36.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:40:36.080 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:40:36.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:40:36.082 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:40:36.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3430.8481ms +2017-12-26 13:40:36.093 +05:30 [Information] Request finished in 3437.2098ms 200 application/json; charset=utf-8 +2017-12-26 13:40:36.094 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" completed keep alive response. +2017-12-26 13:41:15.316 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 13:41:15.316 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 13:41:15.317 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 13:41:18.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 13:41:19.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:19.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:19.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:19.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4563.66ms +2017-12-26 13:41:19.886 +05:30 [Information] Request finished in 4571.4862ms 200 application/json; charset=utf-8 +2017-12-26 13:41:19.887 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" completed keep alive response. +2017-12-26 13:41:22.566 +05:30 [Debug] Connection id ""0HLAC3M1V4I45"" started. +2017-12-26 13:41:22.575 +05:30 [Debug] Connection id ""0HLAC3M1V4I46"" started. +2017-12-26 13:41:22.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 13:41:22.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 13:41:22.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 13:41:22.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 13:41:22.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 13:41:22.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 13:41:22.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 13:41:22.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 13:41:22.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 13:41:22.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 13:41:22.643 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 13:41:22.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 13:41:23.134 +05:30 [Debug] Connection id ""0HLAC3M1V4I47"" started. +2017-12-26 13:41:23.136 +05:30 [Debug] Connection id ""0HLAC3M1V4I48"" started. +2017-12-26 13:41:23.185 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 13:41:23.187 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 13:41:23.188 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 13:41:23.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 13:41:23.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 13:41:23.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 13:41:27.013 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:41:27.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:41:27.128 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:41:27.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:41:27.179 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:41:27.181 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:41:27.672 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:27.672 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:27.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:27.673 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:27.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5043.3741ms +2017-12-26 13:41:27.677 +05:30 [Information] Request finished in 5108.2631ms 200 application/json; charset=utf-8 +2017-12-26 13:41:27.677 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" completed keep alive response. +2017-12-26 13:41:27.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:41:27.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 13:41:27.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 13:41:27.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:27.701 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:27.702 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:27.704 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:27.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5092.7258ms +2017-12-26 13:41:27.708 +05:30 [Information] Request finished in 5139.934ms 200 application/json; charset=utf-8 +2017-12-26 13:41:27.709 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" completed keep alive response. +2017-12-26 13:41:27.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:27.793 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:27.793 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:27.794 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:27.795 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5149.9752ms +2017-12-26 13:41:27.797 +05:30 [Information] Request finished in 5189.9095ms 200 application/json; charset=utf-8 +2017-12-26 13:41:27.797 +05:30 [Debug] Connection id ""0HLAC3M1V4I46"" completed keep alive response. +2017-12-26 13:41:28.061 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:28.061 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:28.061 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:28.062 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:28.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4158.6623ms +2017-12-26 13:41:28.068 +05:30 [Information] Request finished in 4164.5499ms 200 application/json; charset=utf-8 +2017-12-26 13:41:28.068 +05:30 [Debug] Connection id ""0HLAC3M1V4I47"" completed keep alive response. +2017-12-26 13:41:28.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:28.187 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:28.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:28.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:28.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5559.3457ms +2017-12-26 13:41:28.191 +05:30 [Information] Request finished in 5584.7025ms 200 application/json; charset=utf-8 +2017-12-26 13:41:28.192 +05:30 [Debug] Connection id ""0HLAC3M1V4I45"" completed keep alive response. +2017-12-26 13:41:28.233 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:28.234 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:28.234 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:28.235 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:28.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5047.3161ms +2017-12-26 13:41:28.238 +05:30 [Information] Request finished in 5083.2484ms 200 application/json; charset=utf-8 +2017-12-26 13:41:28.239 +05:30 [Debug] Connection id ""0HLAC3M1V4I48"" completed keep alive response. +2017-12-26 13:41:29.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:41:30.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:30.012 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:30.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:30.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:30.015 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 2324.6071ms +2017-12-26 13:41:30.017 +05:30 [Information] Request finished in 2332.7148ms 200 application/json; charset=utf-8 +2017-12-26 13:41:30.017 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" completed keep alive response. +2017-12-26 13:41:30.061 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:41:30.061 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 13:41:30.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:41:30.063 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:41:30.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 13:41:30.064 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:41:30.064 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 13:41:30.064 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:41:30.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:41:33.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 13:41:33.126 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:41:33.152 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:41:33.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:33.589 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:33.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:33.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:33.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3530.3492ms +2017-12-26 13:41:33.598 +05:30 [Information] Request finished in 3556.9625ms 200 application/json; charset=utf-8 +2017-12-26 13:41:33.598 +05:30 [Debug] Connection id ""0HLAC3M1V4I47"" completed keep alive response. +2017-12-26 13:41:33.919 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:33.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:33.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:33.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:33.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3856.6091ms +2017-12-26 13:41:33.925 +05:30 [Information] Request finished in 3884.0291ms 200 application/json; charset=utf-8 +2017-12-26 13:41:33.925 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" completed keep alive response. +2017-12-26 13:41:35.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:35.295 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:35.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:35.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:35.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5235.9443ms +2017-12-26 13:41:35.308 +05:30 [Information] Request finished in 5267.3667ms 200 application/json; charset=utf-8 +2017-12-26 13:41:35.308 +05:30 [Debug] Connection id ""0HLAC3M1V4I46"" completed keep alive response. +2017-12-26 13:41:44.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 13:41:44.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 13:41:44.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 13:41:47.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:41:52.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:41:52.115 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:41:52.116 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:41:52.117 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:41:52.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 7276.6096ms +2017-12-26 13:41:52.120 +05:30 [Information] Request finished in 7280.8163ms 200 application/json; charset=utf-8 +2017-12-26 13:41:52.121 +05:30 [Debug] Connection id ""0HLAC3M1V4I45"" completed keep alive response. +2017-12-26 13:42:27.232 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 13:42:27.233 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 13:42:27.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 13:42:30.285 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:42:33.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:42:33.638 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:42:33.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:42:33.640 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:42:33.642 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 6407.7103ms +2017-12-26 13:42:33.647 +05:30 [Information] Request finished in 6415.4174ms 200 application/json; charset=utf-8 +2017-12-26 13:42:33.648 +05:30 [Debug] Connection id ""0HLAC3M1V4I48"" completed keep alive response. +2017-12-26 13:42:33.673 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" received FIN. +2017-12-26 13:42:33.673 +05:30 [Debug] Connection id ""0HLAC3M1V4I47"" received FIN. +2017-12-26 13:42:33.673 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" disconnecting. +2017-12-26 13:42:33.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" sending FIN. +2017-12-26 13:42:33.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I47"" disconnecting. +2017-12-26 13:42:33.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" sent FIN with status "0". +2017-12-26 13:42:33.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I43"" stopped. +2017-12-26 13:42:33.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I47"" sending FIN. +2017-12-26 13:42:33.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I47"" sent FIN with status "0". +2017-12-26 13:42:33.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I47"" stopped. +2017-12-26 13:43:44.907 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" received FIN. +2017-12-26 13:43:44.907 +05:30 [Debug] Connection id ""0HLAC3M1V4I45"" received FIN. +2017-12-26 13:43:44.907 +05:30 [Debug] Connection id ""0HLAC3M1V4I46"" received FIN. +2017-12-26 13:43:44.907 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" disconnecting. +2017-12-26 13:43:44.908 +05:30 [Debug] Connection id ""0HLAC3M1V4I48"" received FIN. +2017-12-26 13:43:44.908 +05:30 [Debug] Connection id ""0HLAC3M1V4I45"" disconnecting. +2017-12-26 13:43:44.908 +05:30 [Debug] Connection id ""0HLAC3M1V4I46"" disconnecting. +2017-12-26 13:43:44.908 +05:30 [Debug] Connection id ""0HLAC3M1V4I48"" disconnecting. +2017-12-26 13:43:44.908 +05:30 [Debug] Connection id ""0HLAC3M1V4I49"" started. +2017-12-26 13:43:44.908 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" sending FIN. +2017-12-26 13:43:44.909 +05:30 [Debug] Connection id ""0HLAC3M1V4I45"" sending FIN. +2017-12-26 13:43:44.909 +05:30 [Debug] Connection id ""0HLAC3M1V4I46"" sending FIN. +2017-12-26 13:43:44.910 +05:30 [Debug] Connection id ""0HLAC3M1V4I45"" sent FIN with status "0". +2017-12-26 13:43:44.910 +05:30 [Debug] Connection id ""0HLAC3M1V4I48"" sending FIN. +2017-12-26 13:43:44.910 +05:30 [Debug] Connection id ""0HLAC3M1V4I45"" stopped. +2017-12-26 13:43:44.911 +05:30 [Debug] Connection id ""0HLAC3M1V4I48"" sent FIN with status "0". +2017-12-26 13:43:44.911 +05:30 [Debug] Connection id ""0HLAC3M1V4I48"" stopped. +2017-12-26 13:43:44.911 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 13:43:44.911 +05:30 [Debug] Connection id ""0HLAC3M1V4I46"" sent FIN with status "0". +2017-12-26 13:43:44.912 +05:30 [Debug] Connection id ""0HLAC3M1V4I46"" stopped. +2017-12-26 13:43:44.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 13:43:44.912 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" sent FIN with status "0". +2017-12-26 13:43:44.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 13:43:44.912 +05:30 [Debug] Connection id ""0HLAC3M1V4I44"" stopped. +2017-12-26 13:43:47.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:44:07.405 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:44:07.405 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:44:07.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:44:07.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:44:09.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 24096.405ms +2017-12-26 13:44:09.037 +05:30 [Information] Request finished in 24124.9586ms 200 application/json; charset=utf-8 +2017-12-26 13:44:09.038 +05:30 [Debug] Connection id ""0HLAC3M1V4I49"" completed keep alive response. +2017-12-26 13:46:10.231 +05:30 [Debug] Connection id ""0HLAC3M1V4I49"" received FIN. +2017-12-26 13:46:10.232 +05:30 [Debug] Connection id ""0HLAC3M1V4I49"" disconnecting. +2017-12-26 13:46:10.232 +05:30 [Debug] Connection id ""0HLAC3M1V4I4A"" started. +2017-12-26 13:46:10.232 +05:30 [Debug] Connection id ""0HLAC3M1V4I49"" sending FIN. +2017-12-26 13:46:10.233 +05:30 [Debug] Connection id ""0HLAC3M1V4I49"" sent FIN with status "0". +2017-12-26 13:46:10.233 +05:30 [Debug] Connection id ""0HLAC3M1V4I49"" stopped. +2017-12-26 13:46:10.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 13:46:10.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 13:46:10.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 13:46:13.266 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 13:46:14.804 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:14.805 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:14.806 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:14.809 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4572.4659ms +2017-12-26 13:46:14.812 +05:30 [Information] Request finished in 4578.8509ms 200 application/json; charset=utf-8 +2017-12-26 13:46:14.813 +05:30 [Debug] Connection id ""0HLAC3M1V4I4A"" completed keep alive response. +2017-12-26 13:46:18.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I4B"" started. +2017-12-26 13:46:18.297 +05:30 [Debug] Connection id ""0HLAC3M1V4I4D"" started. +2017-12-26 13:46:18.297 +05:30 [Debug] Connection id ""0HLAC3M1V4I4C"" started. +2017-12-26 13:46:18.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 13:46:18.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 13:46:18.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 13:46:18.354 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 13:46:18.382 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 13:46:18.383 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 13:46:18.404 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 13:46:18.405 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 13:46:18.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 13:46:18.408 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 13:46:18.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 13:46:18.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 13:46:18.855 +05:30 [Debug] Connection id ""0HLAC3M1V4I4E"" started. +2017-12-26 13:46:18.857 +05:30 [Debug] Connection id ""0HLAC3M1V4I4F"" started. +2017-12-26 13:46:20.817 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 13:46:20.818 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 13:46:20.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 13:46:21.818 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 13:46:21.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 13:46:21.819 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 13:46:24.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:46:24.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:46:24.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:46:24.999 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:46:25.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:46:25.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:46:25.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:25.549 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:25.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:25.550 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:25.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7143.9911ms +2017-12-26 13:46:25.553 +05:30 [Information] Request finished in 7251.8981ms 200 application/json; charset=utf-8 +2017-12-26 13:46:25.553 +05:30 [Debug] Connection id ""0HLAC3M1V4I4B"" completed keep alive response. +2017-12-26 13:46:25.559 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:46:25.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 13:46:25.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 13:46:26.048 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:26.048 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:26.048 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:26.049 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:26.050 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5231.222ms +2017-12-26 13:46:26.052 +05:30 [Information] Request finished in 5235.6451ms 200 application/json; charset=utf-8 +2017-12-26 13:46:26.053 +05:30 [Debug] Connection id ""0HLAC3M1V4I4E"" completed keep alive response. +2017-12-26 13:46:26.100 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:26.100 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:26.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:26.101 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:26.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4281.7325ms +2017-12-26 13:46:26.105 +05:30 [Information] Request finished in 4286.6452ms 200 application/json; charset=utf-8 +2017-12-26 13:46:26.105 +05:30 [Debug] Connection id ""0HLAC3M1V4I4F"" completed keep alive response. +2017-12-26 13:46:26.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:26.947 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:26.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:26.948 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:26.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8602.4228ms +2017-12-26 13:46:26.954 +05:30 [Information] Request finished in 8661.6705ms 200 application/json; charset=utf-8 +2017-12-26 13:46:26.954 +05:30 [Debug] Connection id ""0HLAC3M1V4I4A"" completed keep alive response. +2017-12-26 13:46:27.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:27.071 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:27.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:27.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:27.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8663.3677ms +2017-12-26 13:46:27.075 +05:30 [Information] Request finished in 8777.0818ms 200 application/json; charset=utf-8 +2017-12-26 13:46:27.076 +05:30 [Debug] Connection id ""0HLAC3M1V4I4D"" completed keep alive response. +2017-12-26 13:46:27.604 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:27.605 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:27.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:27.606 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:27.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 9223.941ms +2017-12-26 13:46:27.610 +05:30 [Information] Request finished in 9310.6581ms 200 application/json; charset=utf-8 +2017-12-26 13:46:27.610 +05:30 [Debug] Connection id ""0HLAC3M1V4I4C"" completed keep alive response. +2017-12-26 13:46:28.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:46:28.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:28.829 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:28.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:28.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:28.831 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3270.4127ms +2017-12-26 13:46:28.833 +05:30 [Information] Request finished in 3276.4634ms 200 application/json; charset=utf-8 +2017-12-26 13:46:28.833 +05:30 [Debug] Connection id ""0HLAC3M1V4I4B"" completed keep alive response. +2017-12-26 13:46:28.856 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 13:46:28.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:46:28.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 13:46:28.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:46:28.857 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 13:46:28.858 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:46:28.863 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:46:28.864 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:46:28.864 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:46:31.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:46:31.959 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 13:46:31.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:46:32.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:32.439 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:32.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:32.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:32.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3584.8624ms +2017-12-26 13:46:32.447 +05:30 [Information] Request finished in 3591.6548ms 200 application/json; charset=utf-8 +2017-12-26 13:46:32.448 +05:30 [Debug] Connection id ""0HLAC3M1V4I4F"" completed keep alive response. +2017-12-26 13:46:32.468 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:32.469 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:32.469 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:32.471 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:32.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3609.2827ms +2017-12-26 13:46:32.509 +05:30 [Information] Request finished in 3643.5829ms 200 application/json; charset=utf-8 +2017-12-26 13:46:32.509 +05:30 [Debug] Connection id ""0HLAC3M1V4I4A"" completed keep alive response. +2017-12-26 13:46:32.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:46:32.796 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:46:32.796 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:46:32.797 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:46:32.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3939.8115ms +2017-12-26 13:46:32.804 +05:30 [Information] Request finished in 3951.3092ms 200 application/json; charset=utf-8 +2017-12-26 13:46:32.805 +05:30 [Debug] Connection id ""0HLAC3M1V4I4E"" completed keep alive response. +2017-12-26 13:47:01.789 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 13:47:01.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 13:47:01.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 13:47:04.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:47:07.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:47:07.707 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:47:07.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:47:07.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:47:07.711 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 5918.8754ms +2017-12-26 13:47:07.712 +05:30 [Information] Request finished in 5926.8201ms 200 application/json; charset=utf-8 +2017-12-26 13:47:07.713 +05:30 [Debug] Connection id ""0HLAC3M1V4I4D"" completed keep alive response. +2017-12-26 13:47:30.641 +05:30 [Debug] Connection id ""0HLAC3M1V4I4C"" received FIN. +2017-12-26 13:47:30.642 +05:30 [Debug] Connection id ""0HLAC3M1V4I4C"" disconnecting. +2017-12-26 13:47:30.642 +05:30 [Debug] Connection id ""0HLAC3M1V4I4B"" received FIN. +2017-12-26 13:47:30.643 +05:30 [Debug] Connection id ""0HLAC3M1V4I4C"" sending FIN. +2017-12-26 13:47:30.643 +05:30 [Debug] Connection id ""0HLAC3M1V4I4C"" sent FIN with status "0". +2017-12-26 13:47:30.663 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 13:47:30.664 +05:30 [Debug] Connection id ""0HLAC3M1V4I4C"" stopped. +2017-12-26 13:47:30.643 +05:30 [Debug] Connection id ""0HLAC3M1V4I4B"" disconnecting. +2017-12-26 13:47:30.664 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 13:47:30.665 +05:30 [Debug] Connection id ""0HLAC3M1V4I4B"" sending FIN. +2017-12-26 13:47:30.665 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 13:47:30.665 +05:30 [Debug] Connection id ""0HLAC3M1V4I4B"" sent FIN with status "0". +2017-12-26 13:47:30.666 +05:30 [Debug] Connection id ""0HLAC3M1V4I4B"" stopped. +2017-12-26 13:47:33.735 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:47:37.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:47:37.884 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:47:37.884 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:47:37.885 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:47:37.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 7220.7678ms +2017-12-26 13:47:37.891 +05:30 [Information] Request finished in 7247.6861ms 200 application/json; charset=utf-8 +2017-12-26 13:47:37.893 +05:30 [Debug] Connection id ""0HLAC3M1V4I4F"" completed keep alive response. +2017-12-26 13:48:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I4A"" received FIN. +2017-12-26 13:48:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I4E"" received FIN. +2017-12-26 13:48:03.674 +05:30 [Debug] Connection id ""0HLAC3M1V4I4A"" disconnecting. +2017-12-26 13:48:03.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I4E"" disconnecting. +2017-12-26 13:48:03.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I4A"" sending FIN. +2017-12-26 13:48:03.676 +05:30 [Debug] Connection id ""0HLAC3M1V4I4E"" sending FIN. +2017-12-26 13:48:03.676 +05:30 [Debug] Connection id ""0HLAC3M1V4I4E"" sent FIN with status "0". +2017-12-26 13:48:03.677 +05:30 [Debug] Connection id ""0HLAC3M1V4I4E"" stopped. +2017-12-26 13:48:03.677 +05:30 [Debug] Connection id ""0HLAC3M1V4I4A"" sent FIN with status "0". +2017-12-26 13:48:03.678 +05:30 [Debug] Connection id ""0HLAC3M1V4I4A"" stopped. +2017-12-26 13:49:43.686 +05:30 [Debug] Connection id ""0HLAC3M1V4I4D"" received FIN. +2017-12-26 13:49:43.686 +05:30 [Debug] Connection id ""0HLAC3M1V4I4F"" received FIN. +2017-12-26 13:49:43.686 +05:30 [Debug] Connection id ""0HLAC3M1V4I4D"" disconnecting. +2017-12-26 13:49:43.687 +05:30 [Debug] Connection id ""0HLAC3M1V4I4G"" started. +2017-12-26 13:49:43.687 +05:30 [Debug] Connection id ""0HLAC3M1V4I4F"" disconnecting. +2017-12-26 13:49:43.691 +05:30 [Debug] Connection id ""0HLAC3M1V4I4F"" sending FIN. +2017-12-26 13:49:43.691 +05:30 [Debug] Connection id ""0HLAC3M1V4I4D"" sending FIN. +2017-12-26 13:49:43.692 +05:30 [Debug] Connection id ""0HLAC3M1V4I4F"" sent FIN with status "0". +2017-12-26 13:49:43.692 +05:30 [Debug] Connection id ""0HLAC3M1V4I4D"" sent FIN with status "0". +2017-12-26 13:49:43.692 +05:30 [Debug] Connection id ""0HLAC3M1V4I4D"" stopped. +2017-12-26 13:49:43.693 +05:30 [Debug] Connection id ""0HLAC3M1V4I4F"" stopped. +2017-12-26 13:49:43.695 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 13:49:43.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 13:49:43.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 13:49:46.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 13:49:48.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:49:48.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:49:48.278 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:49:48.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4582.4455ms +2017-12-26 13:49:48.281 +05:30 [Information] Request finished in 4587.5411ms 200 application/json; charset=utf-8 +2017-12-26 13:49:48.281 +05:30 [Debug] Connection id ""0HLAC3M1V4I4G"" completed keep alive response. +2017-12-26 13:49:51.591 +05:30 [Debug] Connection id ""0HLAC3M1V4I4H"" started. +2017-12-26 13:49:51.591 +05:30 [Debug] Connection id ""0HLAC3M1V4I4J"" started. +2017-12-26 13:49:51.591 +05:30 [Debug] Connection id ""0HLAC3M1V4I4I"" started. +2017-12-26 13:49:51.601 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 13:49:51.601 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 13:49:51.602 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 13:49:51.649 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 13:49:51.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 13:49:51.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 13:49:51.702 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 13:49:51.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 13:49:51.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 13:49:51.723 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 13:49:51.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 13:49:51.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 13:49:52.209 +05:30 [Debug] Connection id ""0HLAC3M1V4I4K"" started. +2017-12-26 13:49:52.209 +05:30 [Debug] Connection id ""0HLAC3M1V4I4L"" started. +2017-12-26 13:49:52.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 13:49:52.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 13:49:52.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 13:49:54.339 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 13:49:54.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 13:49:54.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 13:49:57.457 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:49:57.563 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:49:57.589 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:49:57.593 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:49:57.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:49:57.610 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:49:58.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:49:58.040 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:49:58.041 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:49:58.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:49:58.064 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6462.0472ms +2017-12-26 13:49:58.067 +05:30 [Information] Request finished in 6494.944ms 200 application/json; charset=utf-8 +2017-12-26 13:49:58.067 +05:30 [Debug] Connection id ""0HLAC3M1V4I4G"" completed keep alive response. +2017-12-26 13:49:58.073 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:49:58.074 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 13:49:58.074 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 13:49:58.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:49:58.161 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:49:58.162 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:49:58.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:49:58.169 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6441.1219ms +2017-12-26 13:49:58.175 +05:30 [Information] Request finished in 6576.7687ms 200 application/json; charset=utf-8 +2017-12-26 13:49:58.176 +05:30 [Debug] Connection id ""0HLAC3M1V4I4I"" completed keep alive response. +2017-12-26 13:49:58.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:49:58.262 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:49:58.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:49:58.264 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:49:58.266 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6558.3545ms +2017-12-26 13:49:58.269 +05:30 [Information] Request finished in 6676.3874ms 200 application/json; charset=utf-8 +2017-12-26 13:49:58.269 +05:30 [Debug] Connection id ""0HLAC3M1V4I4H"" completed keep alive response. +2017-12-26 13:49:58.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:49:58.645 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:49:58.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:49:58.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:49:58.648 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4306.2844ms +2017-12-26 13:49:58.651 +05:30 [Information] Request finished in 4310.956ms 200 application/json; charset=utf-8 +2017-12-26 13:49:58.651 +05:30 [Debug] Connection id ""0HLAC3M1V4I4L"" completed keep alive response. +2017-12-26 13:49:58.651 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:49:58.652 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:49:58.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:49:58.653 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:49:58.655 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6998.3314ms +2017-12-26 13:49:58.659 +05:30 [Information] Request finished in 7066.3075ms 200 application/json; charset=utf-8 +2017-12-26 13:49:58.660 +05:30 [Debug] Connection id ""0HLAC3M1V4I4J"" completed keep alive response. +2017-12-26 13:49:58.672 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:49:58.672 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:49:58.673 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:49:58.673 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:49:58.680 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5839.1037ms +2017-12-26 13:49:58.682 +05:30 [Information] Request finished in 5845.9533ms 200 application/json; charset=utf-8 +2017-12-26 13:49:58.683 +05:30 [Debug] Connection id ""0HLAC3M1V4I4K"" completed keep alive response. +2017-12-26 13:50:01.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:50:01.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:50:01.422 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:50:01.422 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:50:01.422 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:50:01.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3348.0378ms +2017-12-26 13:50:01.426 +05:30 [Information] Request finished in 3354.513ms 200 application/json; charset=utf-8 +2017-12-26 13:50:01.427 +05:30 [Debug] Connection id ""0HLAC3M1V4I4G"" completed keep alive response. +2017-12-26 13:50:01.455 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:50:01.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:50:01.459 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 13:50:01.461 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:50:01.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 13:50:01.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:50:01.462 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 13:50:01.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:50:01.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:50:04.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:50:04.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:50:04.570 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 13:50:06.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:50:06.432 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:50:06.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:50:06.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:50:06.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:50:06.437 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:50:06.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:50:06.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:50:06.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4966.435ms +2017-12-26 13:50:06.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4988.8376ms +2017-12-26 13:50:06.462 +05:30 [Information] Request finished in 5002.1204ms 200 application/json; charset=utf-8 +2017-12-26 13:50:06.465 +05:30 [Information] Request finished in 5013.8653ms 200 application/json; charset=utf-8 +2017-12-26 13:50:06.465 +05:30 [Debug] Connection id ""0HLAC3M1V4I4L"" completed keep alive response. +2017-12-26 13:50:06.466 +05:30 [Debug] Connection id ""0HLAC3M1V4I4I"" completed keep alive response. +2017-12-26 13:50:06.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:50:06.906 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:50:06.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:50:06.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:50:06.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5442.8937ms +2017-12-26 13:50:06.940 +05:30 [Information] Request finished in 5471.7553ms 200 application/json; charset=utf-8 +2017-12-26 13:50:06.941 +05:30 [Debug] Connection id ""0HLAC3M1V4I4H"" completed keep alive response. +2017-12-26 13:50:08.939 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 13:50:08.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 13:50:08.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 13:50:11.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:50:15.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:50:15.088 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:50:15.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:50:15.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:50:15.095 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 6148.9725ms +2017-12-26 13:50:15.101 +05:30 [Information] Request finished in 6158.6408ms 200 application/json; charset=utf-8 +2017-12-26 13:50:15.102 +05:30 [Debug] Connection id ""0HLAC3M1V4I4J"" completed keep alive response. +2017-12-26 13:51:43.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I4G"" received FIN. +2017-12-26 13:51:43.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I4K"" received FIN. +2017-12-26 13:51:43.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I4G"" disconnecting. +2017-12-26 13:51:43.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I4L"" received FIN. +2017-12-26 13:51:43.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I4K"" disconnecting. +2017-12-26 13:51:43.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I4I"" received FIN. +2017-12-26 13:51:43.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I4J"" received FIN. +2017-12-26 13:51:43.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I4L"" disconnecting. +2017-12-26 13:51:43.971 +05:30 [Debug] Connection id ""0HLAC3M1V4I4G"" sending FIN. +2017-12-26 13:51:43.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I4L"" sending FIN. +2017-12-26 13:51:43.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I4I"" disconnecting. +2017-12-26 13:51:43.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I4H"" received FIN. +2017-12-26 13:51:43.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I4L"" sent FIN with status "0". +2017-12-26 13:51:43.973 +05:30 [Debug] Connection id ""0HLAC3M1V4I4L"" stopped. +2017-12-26 13:51:43.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I4K"" sending FIN. +2017-12-26 13:51:43.973 +05:30 [Debug] Connection id ""0HLAC3M1V4I4G"" sent FIN with status "0". +2017-12-26 13:51:43.973 +05:30 [Debug] Connection id ""0HLAC3M1V4I4H"" disconnecting. +2017-12-26 13:51:43.973 +05:30 [Debug] Connection id ""0HLAC3M1V4I4G"" stopped. +2017-12-26 13:51:43.973 +05:30 [Debug] Connection id ""0HLAC3M1V4I4I"" sending FIN. +2017-12-26 13:51:43.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I4J"" disconnecting. +2017-12-26 13:51:43.975 +05:30 [Debug] Connection id ""0HLAC3M1V4I4H"" sending FIN. +2017-12-26 13:51:43.975 +05:30 [Debug] Connection id ""0HLAC3M1V4I4J"" sending FIN. +2017-12-26 13:51:43.975 +05:30 [Debug] Connection id ""0HLAC3M1V4I4J"" sent FIN with status "0". +2017-12-26 13:51:43.976 +05:30 [Debug] Connection id ""0HLAC3M1V4I4H"" sent FIN with status "0". +2017-12-26 13:51:43.976 +05:30 [Debug] Connection id ""0HLAC3M1V4I4J"" stopped. +2017-12-26 13:51:43.976 +05:30 [Debug] Connection id ""0HLAC3M1V4I4H"" stopped. +2017-12-26 13:51:43.977 +05:30 [Debug] Connection id ""0HLAC3M1V4I4I"" sent FIN with status "0". +2017-12-26 13:51:43.977 +05:30 [Debug] Connection id ""0HLAC3M1V4I4I"" stopped. +2017-12-26 13:51:43.977 +05:30 [Debug] Connection id ""0HLAC3M1V4I4K"" sent FIN with status "0". +2017-12-26 13:51:43.978 +05:30 [Debug] Connection id ""0HLAC3M1V4I4K"" stopped. +2017-12-26 13:52:27.487 +05:30 [Debug] Connection id ""0HLAC3M1V4I4M"" started. +2017-12-26 13:52:27.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 13:52:27.489 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 13:52:27.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 13:52:30.521 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 13:52:32.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:32.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:32.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:32.085 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4593.792ms +2017-12-26 13:52:32.090 +05:30 [Information] Request finished in 4599.634ms 200 application/json; charset=utf-8 +2017-12-26 13:52:32.090 +05:30 [Debug] Connection id ""0HLAC3M1V4I4M"" completed keep alive response. +2017-12-26 13:52:35.523 +05:30 [Debug] Connection id ""0HLAC3M1V4I4N"" started. +2017-12-26 13:52:35.535 +05:30 [Debug] Connection id ""0HLAC3M1V4I4P"" started. +2017-12-26 13:52:35.535 +05:30 [Debug] Connection id ""0HLAC3M1V4I4O"" started. +2017-12-26 13:52:35.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 13:52:35.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 13:52:35.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 13:52:35.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 13:52:35.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 13:52:35.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 13:52:35.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 13:52:35.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 13:52:35.562 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 13:52:35.593 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 13:52:35.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 13:52:35.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 13:52:36.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I4Q"" started. +2017-12-26 13:52:36.297 +05:30 [Debug] Connection id ""0HLAC3M1V4I4R"" started. +2017-12-26 13:52:37.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 13:52:37.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 13:52:37.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 13:52:38.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 13:52:38.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 13:52:38.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 13:52:41.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:52:41.248 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:52:41.311 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:52:41.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:52:41.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:52:41.385 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:52:41.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:41.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:41.904 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:41.903 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:41.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:41.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:41.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:41.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:41.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6312.5714ms +2017-12-26 13:52:41.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6342.5523ms +2017-12-26 13:52:41.950 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:41.951 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:41.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:41.953 +05:30 [Information] Request finished in 6417.0169ms 200 application/json; charset=utf-8 +2017-12-26 13:52:41.953 +05:30 [Debug] Connection id ""0HLAC3M1V4I4N"" completed keep alive response. +2017-12-26 13:52:41.964 +05:30 [Information] Request finished in 6417.2726ms 200 application/json; charset=utf-8 +2017-12-26 13:52:41.964 +05:30 [Debug] Connection id ""0HLAC3M1V4I4P"" completed keep alive response. +2017-12-26 13:52:41.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:41.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:52:41.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 13:52:41.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6425.714ms +2017-12-26 13:52:41.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 13:52:41.982 +05:30 [Information] Request finished in 6459.3442ms 200 application/json; charset=utf-8 +2017-12-26 13:52:41.983 +05:30 [Debug] Connection id ""0HLAC3M1V4I4M"" completed keep alive response. +2017-12-26 13:52:42.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:42.291 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:42.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:42.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:42.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6740.2411ms +2017-12-26 13:52:42.294 +05:30 [Information] Request finished in 6756.7854ms 200 application/json; charset=utf-8 +2017-12-26 13:52:42.295 +05:30 [Debug] Connection id ""0HLAC3M1V4I4O"" completed keep alive response. +2017-12-26 13:52:42.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:42.418 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:42.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:42.419 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:42.420 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5284.5393ms +2017-12-26 13:52:42.422 +05:30 [Information] Request finished in 5298.0051ms 200 application/json; charset=utf-8 +2017-12-26 13:52:42.423 +05:30 [Debug] Connection id ""0HLAC3M1V4I4Q"" completed keep alive response. +2017-12-26 13:52:42.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:42.464 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:42.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:42.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:42.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4356.6285ms +2017-12-26 13:52:42.470 +05:30 [Information] Request finished in 4360.5839ms 200 application/json; charset=utf-8 +2017-12-26 13:52:42.470 +05:30 [Debug] Connection id ""0HLAC3M1V4I4R"" completed keep alive response. +2017-12-26 13:52:45.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:52:45.311 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:45.311 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:45.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:45.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:45.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3338.4457ms +2017-12-26 13:52:45.316 +05:30 [Information] Request finished in 3353.4758ms 200 application/json; charset=utf-8 +2017-12-26 13:52:45.316 +05:30 [Debug] Connection id ""0HLAC3M1V4I4N"" completed keep alive response. +2017-12-26 13:52:45.594 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:52:45.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:52:45.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:52:45.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 13:52:45.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 13:52:45.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 13:52:47.674 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 13:52:48.445 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:48.446 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:48.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:48.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:48.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 2850.3566ms +2017-12-26 13:52:48.450 +05:30 [Information] Request finished in 2878.6443ms 200 application/json; charset=utf-8 +2017-12-26 13:52:48.452 +05:30 [Debug] Connection id ""0HLAC3M1V4I4P"" completed keep alive response. +2017-12-26 13:52:48.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:52:50.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:50.014 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:50.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:50.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:50.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4424.9691ms +2017-12-26 13:52:50.037 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:52:50.037 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:52:50.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:52:50.053 +05:30 [Information] Request finished in 4473.8397ms 200 application/json; charset=utf-8 +2017-12-26 13:52:50.053 +05:30 [Debug] Connection id ""0HLAC3M1V4I4M"" completed keep alive response. +2017-12-26 13:52:53.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:52:53.474 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:52:53.474 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:52:53.474 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:52:53.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:52:53.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3439.9958ms +2017-12-26 13:52:53.482 +05:30 [Information] Request finished in 3449.2144ms 200 application/json; charset=utf-8 +2017-12-26 13:52:53.483 +05:30 [Debug] Connection id ""0HLAC3M1V4I4O"" completed keep alive response. +2017-12-26 13:53:00.532 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 13:53:00.532 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 13:53:00.532 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 13:53:03.585 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:53:06.733 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:53:06.734 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:53:06.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:53:06.735 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:53:06.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 6202.4824ms +2017-12-26 13:53:06.740 +05:30 [Information] Request finished in 6207.3963ms 200 application/json; charset=utf-8 +2017-12-26 13:53:06.741 +05:30 [Debug] Connection id ""0HLAC3M1V4I4Q"" completed keep alive response. +2017-12-26 13:53:45.264 +05:30 [Debug] Connection id ""0HLAC3M1V4I4R"" received FIN. +2017-12-26 13:53:45.265 +05:30 [Debug] Connection id ""0HLAC3M1V4I4R"" disconnecting. +2017-12-26 13:53:45.266 +05:30 [Debug] Connection id ""0HLAC3M1V4I4R"" sending FIN. +2017-12-26 13:53:45.267 +05:30 [Debug] Connection id ""0HLAC3M1V4I4R"" sent FIN with status "0". +2017-12-26 13:53:45.267 +05:30 [Debug] Connection id ""0HLAC3M1V4I4R"" stopped. +2017-12-26 13:53:45.267 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 13:53:45.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 13:53:45.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 13:53:48.342 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:53:51.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:53:51.763 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:53:51.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:53:51.764 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:53:51.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 6496.8378ms +2017-12-26 13:53:51.767 +05:30 [Information] Request finished in 6502.0745ms 200 application/json; charset=utf-8 +2017-12-26 13:53:51.768 +05:30 [Debug] Connection id ""0HLAC3M1V4I4N"" completed keep alive response. +2017-12-26 13:55:23.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I4P"" received FIN. +2017-12-26 13:55:23.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I4O"" received FIN. +2017-12-26 13:55:23.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I4N"" received FIN. +2017-12-26 13:55:23.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I4P"" disconnecting. +2017-12-26 13:55:23.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I4O"" disconnecting. +2017-12-26 13:55:23.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I4N"" disconnecting. +2017-12-26 13:55:23.967 +05:30 [Debug] Connection id ""0HLAC3M1V4I4M"" received FIN. +2017-12-26 13:55:23.992 +05:30 [Debug] Connection id ""0HLAC3M1V4I4Q"" received FIN. +2017-12-26 13:55:23.992 +05:30 [Debug] Connection id ""0HLAC3M1V4I4M"" disconnecting. +2017-12-26 13:55:23.992 +05:30 [Debug] Connection id ""0HLAC3M1V4I4Q"" disconnecting. +2017-12-26 13:55:23.992 +05:30 [Debug] Connection id ""0HLAC3M1V4I4O"" sending FIN. +2017-12-26 13:55:23.992 +05:30 [Debug] Connection id ""0HLAC3M1V4I4P"" sending FIN. +2017-12-26 13:55:23.993 +05:30 [Debug] Connection id ""0HLAC3M1V4I4N"" sending FIN. +2017-12-26 13:55:23.993 +05:30 [Debug] Connection id ""0HLAC3M1V4I4M"" sending FIN. +2017-12-26 13:55:23.993 +05:30 [Debug] Connection id ""0HLAC3M1V4I4N"" sent FIN with status "0". +2017-12-26 13:55:23.993 +05:30 [Debug] Connection id ""0HLAC3M1V4I4Q"" sending FIN. +2017-12-26 13:55:23.993 +05:30 [Debug] Connection id ""0HLAC3M1V4I4N"" stopped. +2017-12-26 13:55:23.994 +05:30 [Debug] Connection id ""0HLAC3M1V4I4Q"" sent FIN with status "0". +2017-12-26 13:55:23.994 +05:30 [Debug] Connection id ""0HLAC3M1V4I4O"" sent FIN with status "0". +2017-12-26 13:55:23.994 +05:30 [Debug] Connection id ""0HLAC3M1V4I4Q"" stopped. +2017-12-26 13:55:23.994 +05:30 [Debug] Connection id ""0HLAC3M1V4I4O"" stopped. +2017-12-26 13:55:23.994 +05:30 [Debug] Connection id ""0HLAC3M1V4I4M"" sent FIN with status "0". +2017-12-26 13:55:23.995 +05:30 [Debug] Connection id ""0HLAC3M1V4I4M"" stopped. +2017-12-26 13:55:23.995 +05:30 [Debug] Connection id ""0HLAC3M1V4I4P"" sent FIN with status "0". +2017-12-26 13:55:23.996 +05:30 [Debug] Connection id ""0HLAC3M1V4I4P"" stopped. +2017-12-26 13:56:50.456 +05:30 [Debug] Connection id ""0HLAC3M1V4I4S"" started. +2017-12-26 13:56:50.457 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 13:56:50.458 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 13:56:50.459 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 13:56:53.492 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 13:56:55.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:56:55.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:56:55.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:56:55.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4593.2879ms +2017-12-26 13:56:55.058 +05:30 [Information] Request finished in 4600.2134ms 200 application/json; charset=utf-8 +2017-12-26 13:56:55.058 +05:30 [Debug] Connection id ""0HLAC3M1V4I4S"" completed keep alive response. +2017-12-26 13:56:57.976 +05:30 [Debug] Connection id ""0HLAC3M1V4I4T"" started. +2017-12-26 13:56:57.977 +05:30 [Debug] Connection id ""0HLAC3M1V4I4V"" started. +2017-12-26 13:56:57.977 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 13:56:57.977 +05:30 [Debug] Connection id ""0HLAC3M1V4I4U"" started. +2017-12-26 13:56:58.004 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 13:56:58.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 13:56:58.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 13:56:57.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 13:56:58.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 13:56:57.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 13:56:58.023 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 13:56:58.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 13:56:58.033 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 13:56:58.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 13:56:58.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 13:56:58.313 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" started. +2017-12-26 13:56:58.315 +05:30 [Debug] Connection id ""0HLAC3M1V4I51"" started. +2017-12-26 13:56:59.626 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 13:56:59.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 13:56:59.627 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 13:57:00.563 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 13:57:00.564 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 13:57:00.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 13:57:03.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:57:03.719 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:57:03.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:57:03.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:57:03.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:57:03.790 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:57:04.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:04.144 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:04.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:04.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:04.148 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6120.3274ms +2017-12-26 13:57:04.152 +05:30 [Information] Request finished in 6173.5132ms 200 application/json; charset=utf-8 +2017-12-26 13:57:04.152 +05:30 [Debug] Connection id ""0HLAC3M1V4I4V"" completed keep alive response. +2017-12-26 13:57:04.157 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:57:04.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 13:57:04.160 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 13:57:04.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:04.391 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:04.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:04.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:04.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6358.8143ms +2017-12-26 13:57:04.433 +05:30 [Information] Request finished in 6400.495ms 200 application/json; charset=utf-8 +2017-12-26 13:57:04.434 +05:30 [Debug] Connection id ""0HLAC3M1V4I4U"" completed keep alive response. +2017-12-26 13:57:04.434 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:04.435 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:04.436 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:04.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:04.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6426.2436ms +2017-12-26 13:57:04.454 +05:30 [Information] Request finished in 6480.9975ms 200 application/json; charset=utf-8 +2017-12-26 13:57:04.455 +05:30 [Debug] Connection id ""0HLAC3M1V4I4S"" completed keep alive response. +2017-12-26 13:57:04.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:04.804 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:04.804 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:04.805 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:04.806 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6799.0841ms +2017-12-26 13:57:04.808 +05:30 [Information] Request finished in 6830.4365ms 200 application/json; charset=utf-8 +2017-12-26 13:57:04.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:04.808 +05:30 [Debug] Connection id ""0HLAC3M1V4I4T"" completed keep alive response. +2017-12-26 13:57:04.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:04.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:04.811 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:04.813 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5184.1519ms +2017-12-26 13:57:04.816 +05:30 [Information] Request finished in 5219.0594ms 200 application/json; charset=utf-8 +2017-12-26 13:57:04.820 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" completed keep alive response. +2017-12-26 13:57:04.941 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:04.942 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:04.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:04.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:04.945 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4379.0606ms +2017-12-26 13:57:04.951 +05:30 [Information] Request finished in 4385.7494ms 200 application/json; charset=utf-8 +2017-12-26 13:57:04.951 +05:30 [Debug] Connection id ""0HLAC3M1V4I51"" completed keep alive response. +2017-12-26 13:57:07.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:57:07.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:07.477 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:07.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:07.480 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:07.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3320.5886ms +2017-12-26 13:57:07.488 +05:30 [Information] Request finished in 3330.1913ms 200 application/json; charset=utf-8 +2017-12-26 13:57:07.489 +05:30 [Debug] Connection id ""0HLAC3M1V4I4V"" completed keep alive response. +2017-12-26 13:57:07.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 13:57:07.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:57:07.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 13:57:07.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:57:07.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 13:57:07.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:57:07.540 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:57:07.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:57:07.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:57:09.626 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 13:57:10.413 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:10.414 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:10.414 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:10.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:10.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 2875.5541ms +2017-12-26 13:57:10.420 +05:30 [Information] Request finished in 2899.4035ms 200 application/json; charset=utf-8 +2017-12-26 13:57:10.420 +05:30 [Debug] Connection id ""0HLAC3M1V4I4U"" completed keep alive response. +2017-12-26 13:57:10.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:57:10.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:57:11.123 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:11.124 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:11.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:11.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:11.125 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:11.125 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:11.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:11.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:11.156 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3592.4413ms +2017-12-26 13:57:11.160 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3586.2977ms +2017-12-26 13:57:11.162 +05:30 [Information] Request finished in 3638.2671ms 200 application/json; charset=utf-8 +2017-12-26 13:57:11.163 +05:30 [Debug] Connection id ""0HLAC3M1V4I4S"" completed keep alive response. +2017-12-26 13:57:11.163 +05:30 [Information] Request finished in 3644.1032ms 200 application/json; charset=utf-8 +2017-12-26 13:57:11.164 +05:30 [Debug] Connection id ""0HLAC3M1V4I4T"" completed keep alive response. +2017-12-26 13:57:24.676 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 13:57:24.676 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 13:57:24.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 13:57:27.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:57:30.726 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:57:30.727 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:57:30.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:57:30.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:57:30.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 6056.7965ms +2017-12-26 13:57:30.744 +05:30 [Information] Request finished in 6068.1036ms 200 application/json; charset=utf-8 +2017-12-26 13:57:30.744 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" completed keep alive response. +2017-12-26 13:58:16.449 +05:30 [Debug] Connection id ""0HLAC3M1V4I4V"" received FIN. +2017-12-26 13:58:16.449 +05:30 [Debug] Connection id ""0HLAC3M1V4I51"" received FIN. +2017-12-26 13:58:16.449 +05:30 [Debug] Connection id ""0HLAC3M1V4I4V"" disconnecting. +2017-12-26 13:58:16.449 +05:30 [Debug] Connection id ""0HLAC3M1V4I4S"" received FIN. +2017-12-26 13:58:16.450 +05:30 [Debug] Connection id ""0HLAC3M1V4I51"" disconnecting. +2017-12-26 13:58:16.450 +05:30 [Debug] Connection id ""0HLAC3M1V4I4V"" sending FIN. +2017-12-26 13:58:16.450 +05:30 [Debug] Connection id ""0HLAC3M1V4I4S"" disconnecting. +2017-12-26 13:58:16.451 +05:30 [Debug] Connection id ""0HLAC3M1V4I4V"" sent FIN with status "0". +2017-12-26 13:58:16.452 +05:30 [Debug] Connection id ""0HLAC3M1V4I4V"" stopped. +2017-12-26 13:58:16.450 +05:30 [Debug] Connection id ""0HLAC3M1V4I4U"" received FIN. +2017-12-26 13:58:16.452 +05:30 [Debug] Connection id ""0HLAC3M1V4I4S"" sending FIN. +2017-12-26 13:58:16.455 +05:30 [Debug] Connection id ""0HLAC3M1V4I4T"" received FIN. +2017-12-26 13:58:16.456 +05:30 [Debug] Connection id ""0HLAC3M1V4I51"" sending FIN. +2017-12-26 13:58:16.456 +05:30 [Debug] Connection id ""0HLAC3M1V4I51"" sent FIN with status "0". +2017-12-26 13:58:16.456 +05:30 [Debug] Connection id ""0HLAC3M1V4I4S"" sent FIN with status "0". +2017-12-26 13:58:16.456 +05:30 [Debug] Connection id ""0HLAC3M1V4I51"" stopped. +2017-12-26 13:58:16.456 +05:30 [Debug] Connection id ""0HLAC3M1V4I4S"" stopped. +2017-12-26 13:58:16.457 +05:30 [Debug] Connection id ""0HLAC3M1V4I4T"" disconnecting. +2017-12-26 13:58:16.453 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 13:58:16.478 +05:30 [Debug] Connection id ""0HLAC3M1V4I4T"" sending FIN. +2017-12-26 13:58:16.478 +05:30 [Debug] Connection id ""0HLAC3M1V4I4U"" disconnecting. +2017-12-26 13:58:16.479 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 13:58:16.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 13:58:16.480 +05:30 [Debug] Connection id ""0HLAC3M1V4I4T"" sent FIN with status "0". +2017-12-26 13:58:16.480 +05:30 [Debug] Connection id ""0HLAC3M1V4I4T"" stopped. +2017-12-26 13:58:16.481 +05:30 [Debug] Connection id ""0HLAC3M1V4I4U"" sending FIN. +2017-12-26 13:58:16.482 +05:30 [Debug] Connection id ""0HLAC3M1V4I4U"" sent FIN with status "0". +2017-12-26 13:58:16.483 +05:30 [Debug] Connection id ""0HLAC3M1V4I4U"" stopped. +2017-12-26 13:58:18.580 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 13:58:20.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:20.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:20.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:20.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3687.0425ms +2017-12-26 13:58:20.171 +05:30 [Information] Request finished in 3719.2247ms 200 application/json; charset=utf-8 +2017-12-26 13:58:20.171 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" completed keep alive response. +2017-12-26 13:58:23.668 +05:30 [Debug] Connection id ""0HLAC3M1V4I52"" started. +2017-12-26 13:58:23.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I53"" started. +2017-12-26 13:58:23.675 +05:30 [Debug] Connection id ""0HLAC3M1V4I54"" started. +2017-12-26 13:58:23.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 13:58:23.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 13:58:23.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 13:58:23.806 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 13:58:23.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 13:58:23.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 13:58:23.879 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 13:58:23.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 13:58:23.955 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 13:58:23.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 13:58:23.961 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 13:58:23.961 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 13:58:24.147 +05:30 [Debug] Connection id ""0HLAC3M1V4I55"" started. +2017-12-26 13:58:24.156 +05:30 [Debug] Connection id ""0HLAC3M1V4I56"" started. +2017-12-26 13:58:25.695 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 13:58:25.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 13:58:25.696 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 13:58:26.698 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 13:58:26.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 13:58:26.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 13:58:30.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:58:30.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:58:30.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:58:30.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:58:30.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:58:30.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 13:58:30.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:30.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:30.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:30.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:30.978 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7017.1922ms +2017-12-26 13:58:30.980 +05:30 [Information] Request finished in 7189.4502ms 200 application/json; charset=utf-8 +2017-12-26 13:58:30.981 +05:30 [Debug] Connection id ""0HLAC3M1V4I52"" completed keep alive response. +2017-12-26 13:58:30.998 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:58:30.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 13:58:30.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 13:58:31.027 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:31.027 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:31.028 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:31.028 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:31.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7231.7215ms +2017-12-26 13:58:31.039 +05:30 [Information] Request finished in 7363.2804ms 200 application/json; charset=utf-8 +2017-12-26 13:58:31.040 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" completed keep alive response. +2017-12-26 13:58:31.092 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:31.092 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:31.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:31.093 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:31.096 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7131.8621ms +2017-12-26 13:58:31.097 +05:30 [Information] Request finished in 7371.0475ms 200 application/json; charset=utf-8 +2017-12-26 13:58:31.098 +05:30 [Debug] Connection id ""0HLAC3M1V4I53"" completed keep alive response. +2017-12-26 13:58:31.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:31.313 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:31.313 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:31.314 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:31.315 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5617.0169ms +2017-12-26 13:58:31.317 +05:30 [Information] Request finished in 5620.9079ms 200 application/json; charset=utf-8 +2017-12-26 13:58:31.317 +05:30 [Debug] Connection id ""0HLAC3M1V4I55"" completed keep alive response. +2017-12-26 13:58:31.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:31.362 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:31.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:31.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:31.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4664.8897ms +2017-12-26 13:58:31.371 +05:30 [Information] Request finished in 4673.5675ms 200 application/json; charset=utf-8 +2017-12-26 13:58:31.371 +05:30 [Debug] Connection id ""0HLAC3M1V4I56"" completed keep alive response. +2017-12-26 13:58:31.434 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:31.434 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:31.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:31.435 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:31.439 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7565.1264ms +2017-12-26 13:58:31.445 +05:30 [Information] Request finished in 7716.8806ms 200 application/json; charset=utf-8 +2017-12-26 13:58:31.446 +05:30 [Debug] Connection id ""0HLAC3M1V4I54"" completed keep alive response. +2017-12-26 13:58:34.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:58:34.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:34.325 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:34.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:34.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:34.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3327.242ms +2017-12-26 13:58:34.329 +05:30 [Information] Request finished in 3332.2725ms 200 application/json; charset=utf-8 +2017-12-26 13:58:34.330 +05:30 [Debug] Connection id ""0HLAC3M1V4I52"" completed keep alive response. +2017-12-26 13:58:34.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:58:34.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 13:58:34.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:58:34.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 13:58:34.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:58:34.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 13:58:36.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:58:37.261 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:37.262 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:37.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:37.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:37.267 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2570.2469ms +2017-12-26 13:58:37.268 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 13:58:37.269 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 13:58:37.270 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 13:58:37.270 +05:30 [Information] Request finished in 2594.5926ms 200 application/json; charset=utf-8 +2017-12-26 13:58:37.273 +05:30 [Debug] Connection id ""0HLAC3M1V4I53"" completed keep alive response. +2017-12-26 13:58:37.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 13:58:38.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:38.514 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:38.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:38.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:38.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3819.9801ms +2017-12-26 13:58:38.519 +05:30 [Information] Request finished in 3844.1516ms 200 application/json; charset=utf-8 +2017-12-26 13:58:38.520 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" completed keep alive response. +2017-12-26 13:58:39.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 13:58:39.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 13:58:39.773 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 13:58:39.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 13:58:39.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 13:58:39.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2505.9335ms +2017-12-26 13:58:39.781 +05:30 [Information] Request finished in 2511.9002ms 200 application/json; charset=utf-8 +2017-12-26 13:58:39.782 +05:30 [Debug] Connection id ""0HLAC3M1V4I55"" completed keep alive response. +2017-12-26 14:00:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I56"" received FIN. +2017-12-26 14:00:53.968 +05:30 [Debug] Connection id ""0HLAC3M1V4I53"" received FIN. +2017-12-26 14:00:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I54"" received FIN. +2017-12-26 14:00:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I53"" disconnecting. +2017-12-26 14:00:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I52"" received FIN. +2017-12-26 14:00:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I54"" disconnecting. +2017-12-26 14:00:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I55"" received FIN. +2017-12-26 14:00:53.969 +05:30 [Debug] Connection id ""0HLAC3M1V4I56"" disconnecting. +2017-12-26 14:00:53.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I53"" sending FIN. +2017-12-26 14:00:53.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" received FIN. +2017-12-26 14:00:53.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I55"" disconnecting. +2017-12-26 14:00:53.973 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" disconnecting. +2017-12-26 14:00:53.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I53"" sent FIN with status "0". +2017-12-26 14:00:53.974 +05:30 [Debug] Connection id ""0HLAC3M1V4I53"" stopped. +2017-12-26 14:00:53.970 +05:30 [Debug] Connection id ""0HLAC3M1V4I52"" disconnecting. +2017-12-26 14:00:53.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I54"" sending FIN. +2017-12-26 14:00:53.975 +05:30 [Debug] Connection id ""0HLAC3M1V4I55"" sending FIN. +2017-12-26 14:00:53.976 +05:30 [Debug] Connection id ""0HLAC3M1V4I56"" sending FIN. +2017-12-26 14:00:53.977 +05:30 [Debug] Connection id ""0HLAC3M1V4I55"" sent FIN with status "0". +2017-12-26 14:00:53.977 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" sending FIN. +2017-12-26 14:00:53.979 +05:30 [Debug] Connection id ""0HLAC3M1V4I52"" sending FIN. +2017-12-26 14:00:53.977 +05:30 [Debug] Connection id ""0HLAC3M1V4I55"" stopped. +2017-12-26 14:00:53.979 +05:30 [Debug] Connection id ""0HLAC3M1V4I52"" sent FIN with status "0". +2017-12-26 14:00:53.980 +05:30 [Debug] Connection id ""0HLAC3M1V4I52"" stopped. +2017-12-26 14:00:53.980 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" sent FIN with status "0". +2017-12-26 14:00:53.981 +05:30 [Debug] Connection id ""0HLAC3M1V4I50"" stopped. +2017-12-26 14:00:53.981 +05:30 [Debug] Connection id ""0HLAC3M1V4I56"" sent FIN with status "0". +2017-12-26 14:00:53.981 +05:30 [Debug] Connection id ""0HLAC3M1V4I56"" stopped. +2017-12-26 14:00:53.982 +05:30 [Debug] Connection id ""0HLAC3M1V4I54"" sent FIN with status "0". +2017-12-26 14:00:53.982 +05:30 [Debug] Connection id ""0HLAC3M1V4I54"" stopped. +2017-12-26 14:58:49.696 +05:30 [Debug] Connection id ""0HLAC3M1V4I57"" started. +2017-12-26 14:58:49.697 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 14:58:49.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 14:58:49.698 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 14:58:52.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 14:58:57.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 14:58:57.491 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 14:58:57.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 14:58:57.493 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 14:58:57.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 7795.6655ms +2017-12-26 14:58:57.502 +05:30 [Information] Request finished in 7803.0712ms 200 application/json; charset=utf-8 +2017-12-26 14:58:57.503 +05:30 [Debug] Connection id ""0HLAC3M1V4I57"" completed keep alive response. +2017-12-26 15:01:38.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I57"" received FIN. +2017-12-26 15:01:38.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I57"" disconnecting. +2017-12-26 15:01:38.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I57"" sending FIN. +2017-12-26 15:01:38.690 +05:30 [Debug] Connection id ""0HLAC3M1V4I57"" sent FIN with status "0". +2017-12-26 15:01:38.690 +05:30 [Debug] Connection id ""0HLAC3M1V4I57"" stopped. +2017-12-26 15:19:12.992 +05:30 [Debug] Connection id ""0HLAC3M1V4I58"" started. +2017-12-26 15:19:12.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 15:19:12.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 15:19:12.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 15:19:16.096 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:19:20.727 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:19:20.727 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:19:20.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:19:20.728 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:19:20.730 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 7732.0168ms +2017-12-26 15:19:20.732 +05:30 [Information] Request finished in 7737.4305ms 200 application/json; charset=utf-8 +2017-12-26 15:19:20.733 +05:30 [Debug] Connection id ""0HLAC3M1V4I58"" completed keep alive response. +2017-12-26 15:21:48.394 +05:30 [Debug] Connection id ""0HLAC3M1V4I58"" received FIN. +2017-12-26 15:21:48.394 +05:30 [Debug] Connection id ""0HLAC3M1V4I58"" disconnecting. +2017-12-26 15:21:48.395 +05:30 [Debug] Connection id ""0HLAC3M1V4I58"" sending FIN. +2017-12-26 15:21:48.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I58"" sent FIN with status "0". +2017-12-26 15:21:48.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I58"" stopped. +2017-12-26 15:23:00.962 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" started. +2017-12-26 15:23:00.965 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-26 15:23:00.967 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-26 15:23:00.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-26 15:23:04.213 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-26 15:23:06.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:23:06.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:23:06.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:23:06.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5587.4587ms +2017-12-26 15:23:06.557 +05:30 [Information] Request finished in 5593.1837ms 200 application/json; charset=utf-8 +2017-12-26 15:23:06.557 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" completed keep alive response. +2017-12-26 15:23:07.260 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-26 15:23:07.260 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:23:07.261 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:23:10.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-26 15:23:13.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:23:13.194 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:23:13.195 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:23:13.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5943.7681ms +2017-12-26 15:23:13.209 +05:30 [Information] Request finished in 5949.1896ms 200 application/json; charset=utf-8 +2017-12-26 15:23:13.209 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" completed keep alive response. +2017-12-26 15:23:15.678 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 15:23:15.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:23:15.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:23:15.738 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" started. +2017-12-26 15:23:15.748 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" started. +2017-12-26 15:23:15.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 15:23:15.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:23:15.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:23:15.796 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" started. +2017-12-26 15:23:15.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 15:23:15.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:23:15.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:23:15.821 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 15:23:15.821 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:23:15.822 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:23:15.832 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" started. +2017-12-26 15:23:15.883 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" started. +2017-12-26 15:23:16.608 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 15:23:16.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:23:16.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:23:17.591 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 15:23:17.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:23:17.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:23:20.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:23:20.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:23:20.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:23:20.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:23:21.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:23:21.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:23:21.454 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:23:21.455 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:23:21.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:23:21.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:23:21.457 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5775.5849ms +2017-12-26 15:23:21.458 +05:30 [Information] Request finished in 5779.2048ms 200 application/json; charset=utf-8 +2017-12-26 15:23:21.458 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" completed keep alive response. +2017-12-26 15:23:21.504 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-26 15:23:21.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 15:23:21.506 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 15:23:23.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:23:23.033 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:23:23.033 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:23:23.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:23:23.061 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7309.7904ms +2017-12-26 15:23:23.064 +05:30 [Information] Request finished in 7314.4624ms 200 application/json; charset=utf-8 +2017-12-26 15:23:23.064 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" completed keep alive response. +2017-12-26 15:23:23.615 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:23:23.693 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:23:23.693 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:23:23.693 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:23:23.694 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:23:23.696 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7896.6669ms +2017-12-26 15:23:23.698 +05:30 [Information] Request finished in 7901.3547ms 200 application/json; charset=utf-8 +2017-12-26 15:23:23.698 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" completed keep alive response. +2017-12-26 15:23:23.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:23:23.766 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:23:23.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:23:23.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:23:23.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6176.5648ms +2017-12-26 15:23:23.770 +05:30 [Information] Request finished in 6179.6768ms 200 application/json; charset=utf-8 +2017-12-26 15:23:23.770 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" completed keep alive response. +2017-12-26 15:23:23.916 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:23:23.916 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:23:23.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:23:23.918 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:23:23.939 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 8116.5014ms +2017-12-26 15:23:23.943 +05:30 [Information] Request finished in 8121.8405ms 200 application/json; charset=utf-8 +2017-12-26 15:23:23.943 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" completed keep alive response. +2017-12-26 15:23:24.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:23:24.925 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:23:24.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:23:24.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:23:24.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 8318.1798ms +2017-12-26 15:23:24.931 +05:30 [Information] Request finished in 8323.4147ms 200 application/json; charset=utf-8 +2017-12-26 15:23:24.932 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" completed keep alive response. +2017-12-26 15:23:25.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:23:25.879 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:23:25.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:23:25.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:23:25.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4374.1072ms +2017-12-26 15:23:25.883 +05:30 [Information] Request finished in 4383.5282ms 200 application/json; charset=utf-8 +2017-12-26 15:23:25.884 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" completed keep alive response. +2017-12-26 15:23:58.483 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 15:23:58.483 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 15:23:58.484 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 15:24:01.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 15:24:03.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:24:03.193 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:24:03.193 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:24:03.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:24:03.195 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4710.8349ms +2017-12-26 15:24:03.196 +05:30 [Information] Request finished in 4714.1652ms 200 application/json; charset=utf-8 +2017-12-26 15:24:03.197 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" completed keep alive response. +2017-12-26 15:24:03.517 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 15:24:03.518 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:24:03.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:24:03.581 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 15:24:03.581 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 15:24:03.582 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 15:24:06.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 15:24:06.622 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 15:24:08.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:24:08.544 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:24:08.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:24:08.546 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:24:08.610 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 15:24:08.611 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:24:08.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:24:08.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5091.8814ms +2017-12-26 15:24:08.617 +05:30 [Information] Request finished in 5101.0051ms 200 application/json; charset=utf-8 +2017-12-26 15:24:08.617 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" completed keep alive response. +2017-12-26 15:24:08.987 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:24:08.987 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:24:08.987 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:24:08.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:24:08.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5406.2943ms +2017-12-26 15:24:08.990 +05:30 [Information] Request finished in 5410.0796ms 200 application/json; charset=utf-8 +2017-12-26 15:24:08.991 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" completed keep alive response. +2017-12-26 15:24:11.693 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 15:24:12.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:24:12.278 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:24:12.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:24:12.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:24:12.380 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3766.5987ms +2017-12-26 15:24:12.382 +05:30 [Information] Request finished in 3793.6713ms 200 application/json; charset=utf-8 +2017-12-26 15:24:12.383 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" completed keep alive response. +2017-12-26 15:24:15.068 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=48 +2017-12-26 15:24:15.069 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 15:24:15.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 15:24:18.128 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:24:21.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:24:21.224 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:24:21.224 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:24:21.226 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:24:21.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 6157.3884ms +2017-12-26 15:24:21.243 +05:30 [Information] Request finished in 6173.6286ms 200 application/json; charset=utf-8 +2017-12-26 15:24:21.244 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" completed keep alive response. +2017-12-26 15:24:52.950 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" received FIN. +2017-12-26 15:24:52.950 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" disconnecting. +2017-12-26 15:24:52.950 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" sending FIN. +2017-12-26 15:24:52.952 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" sent FIN with status "0". +2017-12-26 15:24:52.952 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPagesDet application/x-www-form-urlencoded 227 +2017-12-26 15:24:52.953 +05:30 [Debug] Connection id ""0HLAC3M1V4I59"" stopped. +2017-12-26 15:24:52.953 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPagesDet"'. +2017-12-26 15:24:52.953 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" +2017-12-26 15:24:55.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAPQW9dP4V89Y9xF2fxuJ6AllwtFjb6QvHHAZBJdSp45912sZCHCKMKc6Vr8eTWvcjAuiK5t5eEBkSkOKrxfDnFsJlvZB1MDlnWYKgAfgR5Saq5I5iW731spx57jNce9X0MAnC4GVZAuKkRadi2RsLnIZB1aZBzWwZDZD", "48"]) - ModelState is Valid +2017-12-26 15:25:01.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:01.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:01.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:01.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" in 8719.8647ms +2017-12-26 15:25:01.678 +05:30 [Information] Request finished in 8727.3314ms 200 application/json; charset=utf-8 +2017-12-26 15:25:01.679 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" completed keep alive response. +2017-12-26 15:25:01.762 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 15:25:01.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:25:01.763 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:25:04.818 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 15:25:06.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:06.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:06.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:06.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4628.9272ms +2017-12-26 15:25:06.398 +05:30 [Information] Request finished in 4635.501ms 200 application/json; charset=utf-8 +2017-12-26 15:25:06.399 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" completed keep alive response. +2017-12-26 15:25:07.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 15:25:07.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:25:07.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:25:07.265 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 15:25:07.266 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:25:07.267 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:25:07.287 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 15:25:07.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:25:07.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:25:07.332 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 15:25:07.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:25:07.332 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:25:07.377 +05:30 [Debug] Connection id ""0HLAC3M1V4I5F"" started. +2017-12-26 15:25:08.178 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 15:25:08.179 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:25:08.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:25:09.179 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 15:25:09.179 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:25:09.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:25:12.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:12.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:12.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:12.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:12.360 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:12.371 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:12.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:12.886 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:12.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:12.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:12.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5635.1241ms +2017-12-26 15:25:12.892 +05:30 [Information] Request finished in 5647.0808ms 200 application/json; charset=utf-8 +2017-12-26 15:25:12.893 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" completed keep alive response. +2017-12-26 15:25:12.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:12.894 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:12.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:12.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:12.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5607.9771ms +2017-12-26 15:25:12.909 +05:30 [Information] Request finished in 5654.4371ms 200 application/json; charset=utf-8 +2017-12-26 15:25:12.910 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" completed keep alive response. +2017-12-26 15:25:12.931 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-26 15:25:12.932 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/ReconnFacebookPages?userId=48&groupId=48&accessToken=EAAKYvwDVmnUBAE1kMuL8rbOmqMgoZAD0S3eo7r5TXwrVUACSeNWsFCGGczMabBtdCmWGMxardZCVoMlTaSwGjKHPPwWfuVRjZCrBSCpMqfOAkRdKhvfOOBnCvcZCHzZCZAYmspNpbeKsxbRtMAxOFe2mRb0cHQTrhrMJEON3WzIgZDZD 0 +2017-12-26 15:25:12.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 15:25:12.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/ReconnFacebookPages"'. +2017-12-26 15:25:12.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 15:25:12.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" +2017-12-26 15:25:12.983 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:12.983 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:12.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:12.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:12.988 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5652.4752ms +2017-12-26 15:25:12.990 +05:30 [Information] Request finished in 5740.3207ms 200 application/json; charset=utf-8 +2017-12-26 15:25:12.991 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" completed keep alive response. +2017-12-26 15:25:13.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:13.427 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:13.427 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:13.429 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:13.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6162.6855ms +2017-12-26 15:25:13.434 +05:30 [Information] Request finished in 6185.4261ms 200 application/json; charset=utf-8 +2017-12-26 15:25:13.435 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" completed keep alive response. +2017-12-26 15:25:13.463 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:13.464 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:13.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:13.465 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:13.466 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5285.4537ms +2017-12-26 15:25:13.468 +05:30 [Information] Request finished in 5289.5674ms 200 application/json; charset=utf-8 +2017-12-26 15:25:13.468 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" completed keep alive response. +2017-12-26 15:25:13.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:13.518 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:13.518 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:13.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:13.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4340.4636ms +2017-12-26 15:25:13.523 +05:30 [Information] Request finished in 4344.7191ms 200 application/json; charset=utf-8 +2017-12-26 15:25:13.523 +05:30 [Debug] Connection id ""0HLAC3M1V4I5F"" completed keep alive response. +2017-12-26 15:25:15.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" with arguments (["48", "48", "EAAKYvwDVmnUBAE1kMuL8rbOmqMgoZAD0S3eo7r5TXwrVUACSeNWsFCGGczMabBtdCmWGMxardZCVoMlTaSwGjKHPPwWfuVRjZCrBSCpMqfOAkRdKhvfOOBnCvcZCHzZCZAYmspNpbeKsxbRtMAxOFe2mRb0cHQTrhrMJEON3WzIgZDZD"]) - ModelState is Valid +2017-12-26 15:25:15.517 +05:30 [Error] {"id":"1155481037833115","name":"Samplepage45","username":"Samplepage45","fan_count":42,"cover":{"cover_id":"1201817283199490","offset_x":0,"offset_y":35,"source":"https://scontent.xx.fbcdn.net/v/t1.0-9/s720x720/16427802_1201817283199490_7514067372103749116_n.png?oh=ef2f3f63ba209f8f61a9ddb8495def71&oe=5AB4281A","id":"1201817283199490"},"emails":["sachinupadhyay@globussoft.in"]} +2017-12-26 15:25:15.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:17.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:17.455 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:17.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-26 15:25:17.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:17.478 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" in 4544.6574ms +2017-12-26 15:25:17.498 +05:30 [Information] Request finished in 4569.9679ms 200 text/plain; charset=utf-8 +2017-12-26 15:25:17.498 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" completed keep alive response. +2017-12-26 15:25:17.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-26 15:25:17.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:25:17.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:25:18.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:18.760 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:18.761 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:18.762 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:18.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5829.808ms +2017-12-26 15:25:18.766 +05:30 [Information] Request finished in 5840.2261ms 200 application/json; charset=utf-8 +2017-12-26 15:25:18.766 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" completed keep alive response. +2017-12-26 15:25:20.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-26 15:25:22.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:22.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:22.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:22.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4645.0353ms +2017-12-26 15:25:22.258 +05:30 [Information] Request finished in 4651.2219ms 200 application/json; charset=utf-8 +2017-12-26 15:25:22.258 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" completed keep alive response. +2017-12-26 15:25:22.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 15:25:22.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:25:22.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:25:22.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 15:25:23.003 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:25:23.004 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:25:23.011 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 15:25:23.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:25:23.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:25:23.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 15:25:23.018 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:25:23.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:25:23.074 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 15:25:23.074 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 15:25:23.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:25:23.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:25:23.075 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:25:23.075 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:25:25.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:25.232 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:25.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:25.762 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:25.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:25.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:25.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 2744.7102ms +2017-12-26 15:25:25.766 +05:30 [Information] Request finished in 2786.0902ms 200 application/json; charset=utf-8 +2017-12-26 15:25:25.767 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" completed keep alive response. +2017-12-26 15:25:25.786 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-26 15:25:25.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 15:25:25.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 15:25:26.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:26.113 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:26.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:26.183 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:26.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:26.389 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:26.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:26.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:26.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3314.9345ms +2017-12-26 15:25:26.394 +05:30 [Information] Request finished in 3319.7535ms 200 application/json; charset=utf-8 +2017-12-26 15:25:26.394 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" completed keep alive response. +2017-12-26 15:25:26.659 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:26.659 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:26.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:26.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:26.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3672.8889ms +2017-12-26 15:25:26.663 +05:30 [Information] Request finished in 3703.4205ms 200 application/json; charset=utf-8 +2017-12-26 15:25:26.663 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" completed keep alive response. +2017-12-26 15:25:26.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:26.789 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:26.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:26.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:26.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3787.9929ms +2017-12-26 15:25:26.796 +05:30 [Information] Request finished in 3836.201ms 200 application/json; charset=utf-8 +2017-12-26 15:25:26.796 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" completed keep alive response. +2017-12-26 15:25:27.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:27.257 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:27.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:27.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:27.263 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:27.263 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:27.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:27.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4185.3642ms +2017-12-26 15:25:27.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:27.267 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4251.4412ms +2017-12-26 15:25:27.271 +05:30 [Information] Request finished in 4193.3869ms 200 application/json; charset=utf-8 +2017-12-26 15:25:27.272 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" completed keep alive response. +2017-12-26 15:25:27.296 +05:30 [Information] Request finished in 4312.4081ms 200 application/json; charset=utf-8 +2017-12-26 15:25:27.296 +05:30 [Debug] Connection id ""0HLAC3M1V4I5F"" completed keep alive response. +2017-12-26 15:25:28.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:25:31.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:31.125 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:31.126 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:31.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:31.128 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5339.9373ms +2017-12-26 15:25:31.132 +05:30 [Information] Request finished in 5344.6786ms 200 application/json; charset=utf-8 +2017-12-26 15:25:31.133 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" completed keep alive response. +2017-12-26 15:25:56.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-26 15:25:56.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 15:25:56.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 15:25:59.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 15:25:59.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:25:59.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:25:59.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:25:59.472 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:25:59.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3297.4275ms +2017-12-26 15:25:59.475 +05:30 [Information] Request finished in 3301.2081ms 200 application/json; charset=utf-8 +2017-12-26 15:25:59.475 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" completed keep alive response. +2017-12-26 15:25:59.743 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 15:25:59.744 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-26 15:25:59.744 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:25:59.744 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 15:25:59.744 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 15:25:59.744 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:26:02.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-26 15:26:02.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 15:26:03.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:26:03.348 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:26:03.348 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:26:03.349 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:26:03.398 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-26 15:26:03.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:26:03.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:26:03.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3698.7989ms +2017-12-26 15:26:03.474 +05:30 [Information] Request finished in 3757.0834ms 200 application/json; charset=utf-8 +2017-12-26 15:26:03.474 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" completed keep alive response. +2017-12-26 15:26:03.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:26:03.682 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:26:03.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:26:03.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:26:03.684 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3939.2812ms +2017-12-26 15:26:03.686 +05:30 [Information] Request finished in 3943.1228ms 200 application/json; charset=utf-8 +2017-12-26 15:26:03.687 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" completed keep alive response. +2017-12-26 15:26:05.569 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-26 15:26:05.964 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:26:05.964 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:26:05.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:26:05.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:26:05.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2569.6199ms +2017-12-26 15:26:05.972 +05:30 [Information] Request finished in 2614.6893ms 200 application/json; charset=utf-8 +2017-12-26 15:26:05.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" completed keep alive response. +2017-12-26 15:27:18.395 +05:30 [Debug] Connection id ""0HLAC3M1V4I5F"" received FIN. +2017-12-26 15:27:18.395 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" received FIN. +2017-12-26 15:27:18.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I5F"" disconnecting. +2017-12-26 15:27:18.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" received FIN. +2017-12-26 15:27:18.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" disconnecting. +2017-12-26 15:27:18.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" received FIN. +2017-12-26 15:27:18.395 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" received FIN. +2017-12-26 15:27:18.397 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" sending FIN. +2017-12-26 15:27:18.397 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" received FIN. +2017-12-26 15:27:18.398 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" sent FIN with status "0". +2017-12-26 15:27:18.398 +05:30 [Debug] Connection id ""0HLAC3M1V4I5F"" sending FIN. +2017-12-26 15:27:18.398 +05:30 [Debug] Connection id ""0HLAC3M1V4I5C"" stopped. +2017-12-26 15:27:18.399 +05:30 [Debug] Connection id ""0HLAC3M1V4I5F"" sent FIN with status "0". +2017-12-26 15:27:18.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" disconnecting. +2017-12-26 15:27:18.421 +05:30 [Debug] Connection id ""0HLAC3M1V4I5F"" stopped. +2017-12-26 15:27:18.421 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" sending FIN. +2017-12-26 15:27:18.400 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" disconnecting. +2017-12-26 15:27:18.400 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" disconnecting. +2017-12-26 15:27:18.423 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" sending FIN. +2017-12-26 15:27:18.423 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" sent FIN with status "0". +2017-12-26 15:27:18.424 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" sent FIN with status "0". +2017-12-26 15:27:18.424 +05:30 [Debug] Connection id ""0HLAC3M1V4I5A"" stopped. +2017-12-26 15:27:18.425 +05:30 [Debug] Connection id ""0HLAC3M1V4I5B"" stopped. +2017-12-26 15:27:18.425 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" sending FIN. +2017-12-26 15:27:18.421 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" disconnecting. +2017-12-26 15:27:18.425 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" sent FIN with status "0". +2017-12-26 15:27:18.426 +05:30 [Debug] Connection id ""0HLAC3M1V4I5E"" stopped. +2017-12-26 15:27:18.426 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" sending FIN. +2017-12-26 15:27:18.427 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" sent FIN with status "0". +2017-12-26 15:27:18.427 +05:30 [Debug] Connection id ""0HLAC3M1V4I5D"" stopped. +2017-12-26 15:30:25.232 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" started. +2017-12-26 15:30:25.233 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:30:25.233 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:30:25.260 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:30:28.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:30:30.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:30:30.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:30:30.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:30:30.941 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5679.9049ms +2017-12-26 15:30:30.943 +05:30 [Information] Request finished in 5710.0552ms 200 application/json; charset=utf-8 +2017-12-26 15:30:30.944 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" completed keep alive response. +2017-12-26 15:30:31.728 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:30:31.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:30:31.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:30:33.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:30:34.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:30:34.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:30:34.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:30:34.362 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2632.6326ms +2017-12-26 15:30:34.365 +05:30 [Information] Request finished in 2637.3885ms 200 application/json; charset=utf-8 +2017-12-26 15:30:34.365 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" completed keep alive response. +2017-12-26 15:30:34.401 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:30:34.402 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:30:34.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:30:37.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:30:38.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:30:38.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:30:38.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:30:38.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3640.3963ms +2017-12-26 15:30:38.046 +05:30 [Information] Request finished in 3644.6415ms 200 application/json; charset=utf-8 +2017-12-26 15:30:38.047 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" completed keep alive response. +2017-12-26 15:30:38.052 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:30:38.052 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:30:38.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:30:41.126 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:30:41.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:30:41.670 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:30:41.671 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:30:41.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3619.3964ms +2017-12-26 15:30:41.677 +05:30 [Information] Request finished in 3624.3517ms 200 application/json; charset=utf-8 +2017-12-26 15:30:41.678 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" completed keep alive response. +2017-12-26 15:32:46.413 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" received FIN. +2017-12-26 15:32:46.413 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" started. +2017-12-26 15:32:46.413 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" disconnecting. +2017-12-26 15:32:46.414 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" sending FIN. +2017-12-26 15:32:46.414 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" sent FIN with status "0". +2017-12-26 15:32:46.415 +05:30 [Debug] Connection id ""0HLAC3M1V4I5G"" stopped. +2017-12-26 15:32:46.415 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:32:46.416 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:32:46.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:32:48.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:32:49.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:32:49.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:32:49.101 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:32:49.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2685.2735ms +2017-12-26 15:32:49.105 +05:30 [Information] Request finished in 2689.9644ms 200 application/json; charset=utf-8 +2017-12-26 15:32:49.105 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" completed keep alive response. +2017-12-26 15:33:06.974 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:33:06.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:33:06.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:33:10.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:33:10.625 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:10.626 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:10.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:10.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3654.025ms +2017-12-26 15:33:10.631 +05:30 [Information] Request finished in 3658.4758ms 200 application/json; charset=utf-8 +2017-12-26 15:33:10.632 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" completed keep alive response. +2017-12-26 15:33:10.639 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-26 15:33:10.641 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-26 15:33:10.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-26 15:33:13.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-26 15:33:15.386 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:15.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:15.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:15.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4744.9575ms +2017-12-26 15:33:15.389 +05:30 [Information] Request finished in 4749.5508ms 200 application/json; charset=utf-8 +2017-12-26 15:33:15.390 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" completed keep alive response. +2017-12-26 15:33:15.421 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:33:15.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:33:15.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:33:18.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:33:19.050 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:19.051 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:19.052 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:19.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3629.6861ms +2017-12-26 15:33:19.064 +05:30 [Information] Request finished in 3641.1583ms 200 application/json; charset=utf-8 +2017-12-26 15:33:19.065 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" completed keep alive response. +2017-12-26 15:33:19.080 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-26 15:33:19.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:33:19.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:33:21.189 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-26 15:33:22.831 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:22.831 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:22.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:22.856 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3774.3384ms +2017-12-26 15:33:22.861 +05:30 [Information] Request finished in 3780.1876ms 200 application/json; charset=utf-8 +2017-12-26 15:33:22.861 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" completed keep alive response. +2017-12-26 15:33:23.855 +05:30 [Debug] Connection id ""0HLAC3M1V4I5I"" started. +2017-12-26 15:33:23.855 +05:30 [Debug] Connection id ""0HLAC3M1V4I5J"" started. +2017-12-26 15:33:23.855 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-26 15:33:23.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:33:23.857 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:33:23.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-26 15:33:23.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:33:23.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:33:23.872 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-26 15:33:23.872 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:33:23.872 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:33:23.923 +05:30 [Debug] Connection id ""0HLAC3M1V4I5K"" started. +2017-12-26 15:33:23.924 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-26 15:33:23.925 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:33:23.925 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:33:23.939 +05:30 [Debug] Connection id ""0HLAC3M1V4I5L"" started. +2017-12-26 15:33:23.939 +05:30 [Debug] Connection id ""0HLAC3M1V4I5M"" started. +2017-12-26 15:33:24.462 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-26 15:33:24.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:33:24.463 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:33:25.464 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-26 15:33:25.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:33:25.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:33:28.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:33:28.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:33:28.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:33:28.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:33:28.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:33:28.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:33:29.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:29.104 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:33:29.104 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:29.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:29.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5248.8033ms +2017-12-26 15:33:29.110 +05:30 [Information] Request finished in 5256.0874ms 200 application/json; charset=utf-8 +2017-12-26 15:33:29.111 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" completed keep alive response. +2017-12-26 15:33:29.114 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-26 15:33:29.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 15:33:29.116 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 15:33:30.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:30.538 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:33:30.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:30.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:30.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6683.4889ms +2017-12-26 15:33:30.559 +05:30 [Information] Request finished in 6687.2758ms 200 application/json; charset=utf-8 +2017-12-26 15:33:30.559 +05:30 [Debug] Connection id ""0HLAC3M1V4I5I"" completed keep alive response. +2017-12-26 15:33:30.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:30.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:33:30.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:30.809 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:30.823 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6884.3009ms +2017-12-26 15:33:30.834 +05:30 [Information] Request finished in 6902.707ms 200 application/json; charset=utf-8 +2017-12-26 15:33:30.835 +05:30 [Debug] Connection id ""0HLAC3M1V4I5K"" completed keep alive response. +2017-12-26 15:33:31.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:31.081 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:33:31.081 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:31.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:31.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6621.347ms +2017-12-26 15:33:31.090 +05:30 [Information] Request finished in 6627.8294ms 200 application/json; charset=utf-8 +2017-12-26 15:33:31.091 +05:30 [Debug] Connection id ""0HLAC3M1V4I5L"" completed keep alive response. +2017-12-26 15:33:31.135 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:31.135 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:33:31.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:31.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:31.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:31.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:33:31.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:31.183 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5698.3181ms +2017-12-26 15:33:31.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:31.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7351.6331ms +2017-12-26 15:33:31.248 +05:30 [Information] Request finished in 5723.8715ms 200 application/json; charset=utf-8 +2017-12-26 15:33:31.250 +05:30 [Debug] Connection id ""0HLAC3M1V4I5M"" completed keep alive response. +2017-12-26 15:33:31.288 +05:30 [Information] Request finished in 7391.8153ms 200 application/json; charset=utf-8 +2017-12-26 15:33:31.289 +05:30 [Debug] Connection id ""0HLAC3M1V4I5J"" completed keep alive response. +2017-12-26 15:33:32.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-26 15:33:34.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:34.518 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:33:34.518 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:34.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:34.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5401.3073ms +2017-12-26 15:33:34.522 +05:30 [Information] Request finished in 5407.7498ms 200 application/json; charset=utf-8 +2017-12-26 15:33:34.522 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" completed keep alive response. +2017-12-26 15:33:37.313 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:33:37.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:33:37.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:33:39.410 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:33:39.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:39.907 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:39.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:39.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2595.2392ms +2017-12-26 15:33:39.915 +05:30 [Information] Request finished in 2601.3181ms 200 application/json; charset=utf-8 +2017-12-26 15:33:39.916 +05:30 [Debug] Connection id ""0HLAC3M1V4I5I"" completed keep alive response. +2017-12-26 15:33:40.564 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:33:40.565 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:33:40.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:33:43.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:33:44.148 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:44.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:44.149 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:44.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3583.66ms +2017-12-26 15:33:44.152 +05:30 [Information] Request finished in 3588.2424ms 200 application/json; charset=utf-8 +2017-12-26 15:33:44.152 +05:30 [Debug] Connection id ""0HLAC3M1V4I5K"" completed keep alive response. +2017-12-26 15:33:44.349 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:33:44.349 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:33:44.349 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:33:46.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:33:46.993 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:46.994 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:46.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:46.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2645.6312ms +2017-12-26 15:33:46.998 +05:30 [Information] Request finished in 2649.4843ms 200 application/json; charset=utf-8 +2017-12-26 15:33:46.999 +05:30 [Debug] Connection id ""0HLAC3M1V4I5L"" completed keep alive response. +2017-12-26 15:33:47.004 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:33:47.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:33:47.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:33:49.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:33:49.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:33:49.599 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:33:49.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:33:49.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2595.162ms +2017-12-26 15:33:49.603 +05:30 [Information] Request finished in 2599.3582ms 200 application/json; charset=utf-8 +2017-12-26 15:33:49.603 +05:30 [Debug] Connection id ""0HLAC3M1V4I5J"" completed keep alive response. +2017-12-26 15:34:38.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" received FIN. +2017-12-26 15:34:38.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I5M"" received FIN. +2017-12-26 15:34:38.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" disconnecting. +2017-12-26 15:34:38.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" sending FIN. +2017-12-26 15:34:38.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I5M"" disconnecting. +2017-12-26 15:34:38.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I5M"" sending FIN. +2017-12-26 15:34:38.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" sent FIN with status "0". +2017-12-26 15:34:38.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I5M"" sent FIN with status "0". +2017-12-26 15:34:38.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I5H"" stopped. +2017-12-26 15:34:38.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I5M"" stopped. +2017-12-26 15:35:59.324 +05:30 [Debug] Connection id ""0HLAC3M1V4I5I"" received FIN. +2017-12-26 15:35:59.325 +05:30 [Debug] Connection id ""0HLAC3M1V4I5K"" received FIN. +2017-12-26 15:35:59.325 +05:30 [Debug] Connection id ""0HLAC3M1V4I5J"" received FIN. +2017-12-26 15:35:59.325 +05:30 [Debug] Connection id ""0HLAC3M1V4I5L"" received FIN. +2017-12-26 15:35:59.325 +05:30 [Debug] Connection id ""0HLAC3M1V4I5J"" disconnecting. +2017-12-26 15:35:59.325 +05:30 [Debug] Connection id ""0HLAC3M1V4I5N"" started. +2017-12-26 15:35:59.325 +05:30 [Debug] Connection id ""0HLAC3M1V4I5J"" sending FIN. +2017-12-26 15:35:59.326 +05:30 [Debug] Connection id ""0HLAC3M1V4I5L"" disconnecting. +2017-12-26 15:35:59.325 +05:30 [Debug] Connection id ""0HLAC3M1V4I5I"" disconnecting. +2017-12-26 15:35:59.326 +05:30 [Debug] Connection id ""0HLAC3M1V4I5J"" sent FIN with status "0". +2017-12-26 15:35:59.326 +05:30 [Debug] Connection id ""0HLAC3M1V4I5L"" sending FIN. +2017-12-26 15:35:59.328 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:35:59.328 +05:30 [Debug] Connection id ""0HLAC3M1V4I5I"" sending FIN. +2017-12-26 15:35:59.328 +05:30 [Debug] Connection id ""0HLAC3M1V4I5J"" stopped. +2017-12-26 15:35:59.328 +05:30 [Debug] Connection id ""0HLAC3M1V4I5I"" sent FIN with status "0". +2017-12-26 15:35:59.328 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:35:59.329 +05:30 [Debug] Connection id ""0HLAC3M1V4I5I"" stopped. +2017-12-26 15:35:59.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:35:59.325 +05:30 [Debug] Connection id ""0HLAC3M1V4I5K"" disconnecting. +2017-12-26 15:35:59.329 +05:30 [Debug] Connection id ""0HLAC3M1V4I5L"" sent FIN with status "0". +2017-12-26 15:35:59.329 +05:30 [Debug] Connection id ""0HLAC3M1V4I5L"" stopped. +2017-12-26 15:35:59.329 +05:30 [Debug] Connection id ""0HLAC3M1V4I5K"" sending FIN. +2017-12-26 15:35:59.333 +05:30 [Debug] Connection id ""0HLAC3M1V4I5K"" sent FIN with status "0". +2017-12-26 15:35:59.333 +05:30 [Debug] Connection id ""0HLAC3M1V4I5K"" stopped. +2017-12-26 15:36:06.515 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:36:07.016 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:36:07.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:36:07.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:36:07.020 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7689.0945ms +2017-12-26 15:36:07.022 +05:30 [Information] Request finished in 7694.9039ms 200 application/json; charset=utf-8 +2017-12-26 15:36:07.022 +05:30 [Debug] Connection id ""0HLAC3M1V4I5N"" completed keep alive response. +2017-12-26 15:38:18.395 +05:30 [Debug] Connection id ""0HLAC3M1V4I5N"" received FIN. +2017-12-26 15:38:18.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I5N"" disconnecting. +2017-12-26 15:38:18.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I5N"" sending FIN. +2017-12-26 15:38:18.397 +05:30 [Debug] Connection id ""0HLAC3M1V4I5N"" sent FIN with status "0". +2017-12-26 15:38:18.398 +05:30 [Debug] Connection id ""0HLAC3M1V4I5N"" stopped. +2017-12-26 15:41:14.229 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" started. +2017-12-26 15:41:14.231 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:41:14.231 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:41:14.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:41:17.281 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:41:17.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:17.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:17.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:17.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3550.8406ms +2017-12-26 15:41:17.787 +05:30 [Information] Request finished in 3555.7996ms 200 application/json; charset=utf-8 +2017-12-26 15:41:17.788 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" completed keep alive response. +2017-12-26 15:41:17.793 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-26 15:41:17.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-26 15:41:17.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-26 15:41:20.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-26 15:41:22.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:22.427 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:22.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:22.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4634.118ms +2017-12-26 15:41:22.433 +05:30 [Information] Request finished in 4640.7679ms 200 application/json; charset=utf-8 +2017-12-26 15:41:22.434 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" completed keep alive response. +2017-12-26 15:41:22.475 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:41:22.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:41:22.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:41:24.563 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:41:25.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:25.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:25.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:25.363 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2886.6266ms +2017-12-26 15:41:25.365 +05:30 [Information] Request finished in 2890.183ms 200 application/json; charset=utf-8 +2017-12-26 15:41:25.365 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" completed keep alive response. +2017-12-26 15:41:25.371 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500208&groupId= +2017-12-26 15:41:25.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:41:25.372 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:41:28.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500208", ""]) - ModelState is Valid +2017-12-26 15:41:29.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:29.985 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:29.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:29.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4614.893ms +2017-12-26 15:41:29.995 +05:30 [Information] Request finished in 4620.4663ms 200 application/json; charset=utf-8 +2017-12-26 15:41:29.996 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" completed keep alive response. +2017-12-26 15:41:30.917 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" started. +2017-12-26 15:41:30.918 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" started. +2017-12-26 15:41:30.918 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" started. +2017-12-26 15:41:30.919 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500208 +2017-12-26 15:41:30.919 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152399 +2017-12-26 15:41:30.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:41:30.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:41:30.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:41:30.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:41:30.924 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500208 +2017-12-26 15:41:30.949 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500208 +2017-12-26 15:41:30.949 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:41:30.950 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:41:30.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:41:30.960 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:41:31.050 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" started. +2017-12-26 15:41:31.052 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" started. +2017-12-26 15:41:31.983 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500208 +2017-12-26 15:41:31.983 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:41:31.984 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:41:33.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152399&userId=500208 +2017-12-26 15:41:33.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:41:33.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:41:36.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:41:36.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:41:36.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:41:36.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:41:36.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:41:36.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:41:37.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:37.562 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:41:37.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:37.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:37.566 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5581.0049ms +2017-12-26 15:41:37.570 +05:30 [Information] Request finished in 5587.0892ms 200 application/json; charset=utf-8 +2017-12-26 15:41:37.571 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" completed keep alive response. +2017-12-26 15:41:37.583 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152399 +2017-12-26 15:41:37.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 15:41:37.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 15:41:38.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:38.603 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:41:38.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:38.606 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:38.610 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7658.4867ms +2017-12-26 15:41:38.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:38.615 +05:30 [Information] Request finished in 7693.9267ms 200 application/json; charset=utf-8 +2017-12-26 15:41:38.615 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" completed keep alive response. +2017-12-26 15:41:38.615 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:41:38.616 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:38.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:38.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7660.3275ms +2017-12-26 15:41:38.626 +05:30 [Information] Request finished in 7704.6014ms 200 application/json; charset=utf-8 +2017-12-26 15:41:38.627 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" completed keep alive response. +2017-12-26 15:41:38.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:38.817 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:41:38.818 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:38.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:38.820 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7870.3609ms +2017-12-26 15:41:38.823 +05:30 [Information] Request finished in 7904.2841ms 200 application/json; charset=utf-8 +2017-12-26 15:41:38.823 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" completed keep alive response. +2017-12-26 15:41:39.175 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:39.176 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:41:39.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:39.177 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:39.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8253.7772ms +2017-12-26 15:41:39.180 +05:30 [Information] Request finished in 8264.0436ms 200 application/json; charset=utf-8 +2017-12-26 15:41:39.180 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" completed keep alive response. +2017-12-26 15:41:39.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:39.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:41:39.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:39.182 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:39.185 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5688.0779ms +2017-12-26 15:41:39.188 +05:30 [Information] Request finished in 5700.0632ms 200 application/json; charset=utf-8 +2017-12-26 15:41:39.189 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" completed keep alive response. +2017-12-26 15:41:40.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:41:43.792 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:43.793 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:41:43.793 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:43.794 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:43.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6278.182ms +2017-12-26 15:41:43.866 +05:30 [Information] Request finished in 6284.8556ms 200 application/json; charset=utf-8 +2017-12-26 15:41:43.871 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" completed keep alive response. +2017-12-26 15:41:50.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:41:50.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 15:41:50.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 15:41:53.945 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:41:55.555 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:55.556 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:41:55.556 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:55.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:55.558 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4653.8157ms +2017-12-26 15:41:55.560 +05:30 [Information] Request finished in 4657.9147ms 200 application/json; charset=utf-8 +2017-12-26 15:41:55.560 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" completed keep alive response. +2017-12-26 15:41:55.580 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=500208 +2017-12-26 15:41:55.580 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 15:41:55.581 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 15:41:55.583 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=500208 +2017-12-26 15:41:55.586 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500208&days=90 +2017-12-26 15:41:55.586 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 15:41:55.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 15:41:55.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 15:41:55.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 15:41:55.639 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:41:55.642 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:41:55.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:41:57.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500208", "90"]) - ModelState is Valid +2017-12-26 15:41:58.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:41:58.454 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:41:58.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:41:58.457 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:41:58.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 2818.8626ms +2017-12-26 15:41:58.464 +05:30 [Information] Request finished in 2885.2815ms 200 application/json; charset=utf-8 +2017-12-26 15:41:58.464 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" completed keep alive response. +2017-12-26 15:41:58.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:41:58.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:41:58.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:42:00.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:00.465 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:00.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:00.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:00.610 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:42:00.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:42:00.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:42:00.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5012.2275ms +2017-12-26 15:42:00.683 +05:30 [Information] Request finished in 5102.2491ms 200 application/json; charset=utf-8 +2017-12-26 15:42:00.684 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" completed keep alive response. +2017-12-26 15:42:00.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:00.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:00.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:00.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:00.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5291.2089ms +2017-12-26 15:42:00.875 +05:30 [Information] Request finished in 5297.2291ms 200 application/json; charset=utf-8 +2017-12-26 15:42:00.876 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" completed keep alive response. +2017-12-26 15:42:03.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:42:05.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:05.250 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:05.251 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:05.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:05.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4670.676ms +2017-12-26 15:42:05.333 +05:30 [Information] Request finished in 4850.5572ms 200 application/json; charset=utf-8 +2017-12-26 15:42:05.334 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" completed keep alive response. +2017-12-26 15:42:09.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:09.013 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:09.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:09.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:09.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 13376.1013ms +2017-12-26 15:42:09.020 +05:30 [Information] Request finished in 13442.3178ms 200 application/json; charset=utf-8 +2017-12-26 15:42:09.021 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" completed keep alive response. +2017-12-26 15:42:13.707 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:42:13.707 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:42:13.707 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:42:16.751 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:42:17.263 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:17.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:17.264 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:17.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3557.0241ms +2017-12-26 15:42:17.267 +05:30 [Information] Request finished in 3561.9666ms 200 application/json; charset=utf-8 +2017-12-26 15:42:17.268 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" completed keep alive response. +2017-12-26 15:42:17.290 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500208&groupId=1152399 +2017-12-26 15:42:17.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:42:17.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:42:20.346 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500208", "1152399"]) - ModelState is Valid +2017-12-26 15:42:21.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:21.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:21.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:21.891 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4599.0643ms +2017-12-26 15:42:21.893 +05:30 [Information] Request finished in 4602.9403ms 200 application/json; charset=utf-8 +2017-12-26 15:42:21.894 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" completed keep alive response. +2017-12-26 15:42:26.859 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500208 +2017-12-26 15:42:26.896 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:42:26.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:42:26.912 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500208 +2017-12-26 15:42:26.913 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:42:26.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:42:26.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152399 +2017-12-26 15:42:26.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:42:26.955 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:42:26.964 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500208 +2017-12-26 15:42:26.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:42:26.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:42:28.065 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500208 +2017-12-26 15:42:28.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:42:28.066 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:42:28.144 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152399&userId=500208 +2017-12-26 15:42:28.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:42:28.150 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:42:30.420 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:42:30.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:42:30.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:42:30.473 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:42:31.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:31.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:31.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:31.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:31.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4031.7946ms +2017-12-26 15:42:31.011 +05:30 [Information] Request finished in 4154.5461ms 200 application/json; charset=utf-8 +2017-12-26 15:42:31.011 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" completed keep alive response. +2017-12-26 15:42:31.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:31.035 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:31.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:31.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:31.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 4138.2533ms +2017-12-26 15:42:31.039 +05:30 [Information] Request finished in 4192.8473ms 200 application/json; charset=utf-8 +2017-12-26 15:42:31.039 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" completed keep alive response. +2017-12-26 15:42:31.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:31.101 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:31.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:31.102 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:31.103 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4146.7469ms +2017-12-26 15:42:31.106 +05:30 [Information] Request finished in 4250.3406ms 200 application/json; charset=utf-8 +2017-12-26 15:42:31.106 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" completed keep alive response. +2017-12-26 15:42:31.241 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:42:31.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:42:31.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:31.507 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:31.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:31.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:31.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4594.6131ms +2017-12-26 15:42:31.513 +05:30 [Information] Request finished in 4650.1287ms 200 application/json; charset=utf-8 +2017-12-26 15:42:31.514 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" completed keep alive response. +2017-12-26 15:42:32.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:32.247 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:32.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:32.249 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:32.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4182.5996ms +2017-12-26 15:42:32.262 +05:30 [Information] Request finished in 4337.8906ms 200 application/json; charset=utf-8 +2017-12-26 15:42:32.263 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" completed keep alive response. +2017-12-26 15:42:32.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:32.358 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:32.359 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:32.359 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:32.362 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4208.9317ms +2017-12-26 15:42:32.363 +05:30 [Information] Request finished in 4356.9193ms 200 application/json; charset=utf-8 +2017-12-26 15:42:32.364 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" completed keep alive response. +2017-12-26 15:42:38.019 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:42:38.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 15:42:38.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 15:42:40.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:42:40.401 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:40.401 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:40.402 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:40.403 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:40.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 2382.5796ms +2017-12-26 15:42:40.406 +05:30 [Information] Request finished in 2387.4214ms 200 application/json; charset=utf-8 +2017-12-26 15:42:40.407 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" completed keep alive response. +2017-12-26 15:42:48.771 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=500208 +2017-12-26 15:42:48.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 15:42:48.771 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:42:48.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 15:42:48.773 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:42:48.773 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:42:48.775 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500208&days=90 +2017-12-26 15:42:48.778 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 15:42:48.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=500208 +2017-12-26 15:42:48.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 15:42:48.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 15:42:48.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 15:42:50.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:42:51.867 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:42:51.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500208", "90"]) - ModelState is Valid +2017-12-26 15:42:51.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:42:52.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:52.614 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:52.615 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:52.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:52.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 3844.3787ms +2017-12-26 15:42:52.621 +05:30 [Information] Request finished in 3854.6454ms 200 application/json; charset=utf-8 +2017-12-26 15:42:52.622 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" completed keep alive response. +2017-12-26 15:42:53.025 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:53.025 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:53.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:53.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:53.035 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:42:53.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:42:53.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:42:53.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4279.1891ms +2017-12-26 15:42:53.060 +05:30 [Information] Request finished in 4288.7563ms 200 application/json; charset=utf-8 +2017-12-26 15:42:53.061 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" completed keep alive response. +2017-12-26 15:42:53.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:53.347 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:53.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:53.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:53.349 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 4570.3371ms +2017-12-26 15:42:53.351 +05:30 [Information] Request finished in 4584.3523ms 200 application/json; charset=utf-8 +2017-12-26 15:42:53.352 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" completed keep alive response. +2017-12-26 15:42:56.112 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:42:57.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:57.436 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:57.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:57.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:57.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:42:57.469 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:42:57.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:42:57.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:42:57.487 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 8698.376ms +2017-12-26 15:42:57.519 +05:30 [Information] Request finished in 8749.3054ms 200 application/json; charset=utf-8 +2017-12-26 15:42:57.520 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" completed keep alive response. +2017-12-26 15:42:57.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4494.1983ms +2017-12-26 15:42:57.562 +05:30 [Information] Request finished in 4525.593ms 200 application/json; charset=utf-8 +2017-12-26 15:42:57.563 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" completed keep alive response. +2017-12-26 15:43:48.394 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" received FIN. +2017-12-26 15:43:48.394 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" disconnecting. +2017-12-26 15:43:48.395 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" sending FIN. +2017-12-26 15:43:48.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" sent FIN with status "0". +2017-12-26 15:43:48.396 +05:30 [Debug] Connection id ""0HLAC3M1V4I5S"" stopped. +2017-12-26 15:45:29.408 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" received FIN. +2017-12-26 15:45:29.408 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" received FIN. +2017-12-26 15:45:29.408 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" disconnecting. +2017-12-26 15:45:29.409 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" disconnecting. +2017-12-26 15:45:29.409 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" received FIN. +2017-12-26 15:45:29.409 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" sending FIN. +2017-12-26 15:45:29.409 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" sent FIN with status "0". +2017-12-26 15:45:29.410 +05:30 [Debug] Connection id ""0HLAC3M1V4I5O"" stopped. +2017-12-26 15:45:29.410 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" disconnecting. +2017-12-26 15:45:29.408 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" received FIN. +2017-12-26 15:45:29.410 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" sending FIN. +2017-12-26 15:45:29.411 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" received FIN. +2017-12-26 15:45:29.411 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" sent FIN with status "0". +2017-12-26 15:45:29.412 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" sending FIN. +2017-12-26 15:45:29.412 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" disconnecting. +2017-12-26 15:45:29.412 +05:30 [Debug] Connection id ""0HLAC3M1V4I5Q"" stopped. +2017-12-26 15:45:29.412 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" sent FIN with status "0". +2017-12-26 15:45:29.412 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" started. +2017-12-26 15:45:29.412 +05:30 [Debug] Connection id ""0HLAC3M1V4I5P"" stopped. +2017-12-26 15:45:29.412 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" disconnecting. +2017-12-26 15:45:29.413 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" sending FIN. +2017-12-26 15:45:29.414 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" sending FIN. +2017-12-26 15:45:29.414 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" sent FIN with status "0". +2017-12-26 15:45:29.489 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:45:29.490 +05:30 [Debug] Connection id ""0HLAC3M1V4I5R"" stopped. +2017-12-26 15:45:29.490 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:45:29.490 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" sent FIN with status "0". +2017-12-26 15:45:29.490 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:45:29.490 +05:30 [Debug] Connection id ""0HLAC3M1V4I5T"" stopped. +2017-12-26 15:45:31.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:45:32.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:32.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:32.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:32.083 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2591.3021ms +2017-12-26 15:45:32.087 +05:30 [Information] Request finished in 2671.944ms 200 application/json; charset=utf-8 +2017-12-26 15:45:32.087 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:45:32.117 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500208&groupId=1152399 +2017-12-26 15:45:32.117 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:45:32.118 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:45:34.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500208", "1152399"]) - ModelState is Valid +2017-12-26 15:45:35.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:35.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:35.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:35.734 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3616.4928ms +2017-12-26 15:45:35.738 +05:30 [Information] Request finished in 3642.2726ms 200 application/json; charset=utf-8 +2017-12-26 15:45:35.739 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:45:36.894 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" started. +2017-12-26 15:45:36.895 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" started. +2017-12-26 15:45:36.895 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" started. +2017-12-26 15:45:36.902 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500208 +2017-12-26 15:45:36.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:45:36.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:45:36.956 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500208 +2017-12-26 15:45:36.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:45:36.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:45:36.972 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" started. +2017-12-26 15:45:36.973 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" started. +2017-12-26 15:45:36.976 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152399 +2017-12-26 15:45:36.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:45:36.977 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:45:36.984 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500208 +2017-12-26 15:45:36.984 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:45:36.985 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:45:37.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500208 +2017-12-26 15:45:37.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:45:37.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:45:38.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152399&userId=500208 +2017-12-26 15:45:38.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:45:38.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:45:41.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:45:41.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:45:41.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:45:41.762 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:45:41.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:45:41.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:45:42.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:42.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:42.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:42.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:42.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5227.8146ms +2017-12-26 15:45:42.135 +05:30 [Information] Request finished in 5301.5058ms 200 application/json; charset=utf-8 +2017-12-26 15:45:42.136 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:45:42.142 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:45:42.143 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 15:45:42.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 15:45:42.327 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:42.327 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:42.327 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:42.328 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:42.329 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5343.071ms +2017-12-26 15:45:42.331 +05:30 [Information] Request finished in 5434.4113ms 200 application/json; charset=utf-8 +2017-12-26 15:45:42.331 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" completed keep alive response. +2017-12-26 15:45:42.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:42.389 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:42.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:42.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:42.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5412.8174ms +2017-12-26 15:45:42.394 +05:30 [Information] Request finished in 5497.6336ms 200 application/json; charset=utf-8 +2017-12-26 15:45:42.395 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" completed keep alive response. +2017-12-26 15:45:42.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:42.770 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:42.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:42.771 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:42.772 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5813.6163ms +2017-12-26 15:45:42.776 +05:30 [Information] Request finished in 5873.0577ms 200 application/json; charset=utf-8 +2017-12-26 15:45:42.776 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:45:42.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:42.793 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:42.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:42.794 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:42.795 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5185.5868ms +2017-12-26 15:45:42.796 +05:30 [Information] Request finished in 5191.9513ms 200 application/json; charset=utf-8 +2017-12-26 15:45:42.796 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" completed keep alive response. +2017-12-26 15:45:42.859 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:42.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:42.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:42.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:42.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4252.4701ms +2017-12-26 15:45:42.863 +05:30 [Information] Request finished in 4257.797ms 200 application/json; charset=utf-8 +2017-12-26 15:45:42.864 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" completed keep alive response. +2017-12-26 15:45:45.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:45:45.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:45.428 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:45.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:45.429 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:45.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3285.8571ms +2017-12-26 15:45:45.434 +05:30 [Information] Request finished in 3291.1921ms 200 application/json; charset=utf-8 +2017-12-26 15:45:45.434 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:45:45.463 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500208&days=90 +2017-12-26 15:45:45.463 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 15:45:45.464 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 15:45:45.473 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=500208 +2017-12-26 15:45:45.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 15:45:45.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 15:45:45.477 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:45:45.478 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:45:45.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:45:45.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=500208 +2017-12-26 15:45:45.489 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 15:45:45.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 15:45:48.554 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500208", "90"]) - ModelState is Valid +2017-12-26 15:45:48.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:45:54.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:45:54.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:45:54.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:54.925 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:54.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:54.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:54.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 9462.1277ms +2017-12-26 15:45:54.929 +05:30 [Information] Request finished in 9471.973ms 200 application/json; charset=utf-8 +2017-12-26 15:45:54.929 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" completed keep alive response. +2017-12-26 15:45:54.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:54.944 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:54.945 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:54.947 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:54.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 9457.569ms +2017-12-26 15:45:54.957 +05:30 [Information] Request finished in 9479.9961ms 200 application/json; charset=utf-8 +2017-12-26 15:45:54.958 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" completed keep alive response. +2017-12-26 15:45:56.597 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:56.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:56.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:56.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:56.604 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:45:56.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:45:56.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:45:56.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 11164.2321ms +2017-12-26 15:45:56.647 +05:30 [Information] Request finished in 11170.0815ms 200 application/json; charset=utf-8 +2017-12-26 15:45:56.648 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:45:59.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:45:59.077 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:45:59.078 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:45:59.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:45:59.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 13604.3131ms +2017-12-26 15:45:59.082 +05:30 [Information] Request finished in 13617.6591ms 200 application/json; charset=utf-8 +2017-12-26 15:45:59.083 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" completed keep alive response. +2017-12-26 15:45:59.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:45:59.674 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:45:59.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:45:59.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:46:01.325 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:01.326 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:01.326 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:01.328 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:01.357 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4747.523ms +2017-12-26 15:46:01.360 +05:30 [Information] Request finished in 4757.5767ms 200 application/json; charset=utf-8 +2017-12-26 15:46:01.361 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" completed keep alive response. +2017-12-26 15:46:02.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:46:03.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:03.220 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:03.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:03.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3547.0721ms +2017-12-26 15:46:03.224 +05:30 [Information] Request finished in 3550.709ms 200 application/json; charset=utf-8 +2017-12-26 15:46:03.224 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:46:03.233 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500208&groupId=1152399 +2017-12-26 15:46:03.233 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:46:03.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:46:06.299 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500208", "1152399"]) - ModelState is Valid +2017-12-26 15:46:07.840 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:07.841 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:07.842 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:07.843 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4607.802ms +2017-12-26 15:46:07.847 +05:30 [Information] Request finished in 4614.7624ms 200 application/json; charset=utf-8 +2017-12-26 15:46:07.847 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" completed keep alive response. +2017-12-26 15:46:08.664 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500208 +2017-12-26 15:46:08.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:46:08.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:46:08.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500208 +2017-12-26 15:46:08.670 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152399 +2017-12-26 15:46:08.682 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500208 +2017-12-26 15:46:08.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:46:08.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:46:08.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:46:08.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:46:08.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:46:08.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:46:08.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152399&userId=500208 +2017-12-26 15:46:08.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:46:08.777 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:46:08.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500208 +2017-12-26 15:46:08.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:46:08.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:46:10.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:46:11.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:11.251 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:11.251 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:11.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:11.253 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2584.1906ms +2017-12-26 15:46:11.255 +05:30 [Information] Request finished in 2593.8577ms 200 application/json; charset=utf-8 +2017-12-26 15:46:11.255 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" completed keep alive response. +2017-12-26 15:46:11.262 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:46:11.263 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 15:46:11.263 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 15:46:11.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:46:12.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:46:12.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:46:12.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:46:12.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:46:12.592 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:12.592 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:12.592 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:12.593 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:12.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3910.4001ms +2017-12-26 15:46:12.597 +05:30 [Information] Request finished in 3934.7598ms 200 application/json; charset=utf-8 +2017-12-26 15:46:12.598 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" completed keep alive response. +2017-12-26 15:46:12.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:12.689 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:12.689 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:12.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:12.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4006.8337ms +2017-12-26 15:46:12.694 +05:30 [Information] Request finished in 4031.7788ms 200 application/json; charset=utf-8 +2017-12-26 15:46:12.694 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" completed keep alive response. +2017-12-26 15:46:13.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:13.072 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:13.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:13.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:13.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4293.5729ms +2017-12-26 15:46:13.076 +05:30 [Information] Request finished in 4300.5112ms 200 application/json; charset=utf-8 +2017-12-26 15:46:13.077 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" completed keep alive response. +2017-12-26 15:46:13.096 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:13.096 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:13.096 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:13.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:13.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4417.7239ms +2017-12-26 15:46:13.102 +05:30 [Information] Request finished in 4440.7269ms 200 application/json; charset=utf-8 +2017-12-26 15:46:13.103 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:46:13.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:13.194 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:13.194 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:13.195 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:13.196 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4417.9714ms +2017-12-26 15:46:13.199 +05:30 [Information] Request finished in 4429.2137ms 200 application/json; charset=utf-8 +2017-12-26 15:46:13.199 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:46:13.423 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:46:13.650 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:13.651 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:13.651 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:13.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:13.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 2389.3176ms +2017-12-26 15:46:13.656 +05:30 [Information] Request finished in 2393.3359ms 200 application/json; charset=utf-8 +2017-12-26 15:46:13.656 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" completed keep alive response. +2017-12-26 15:46:13.708 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500208&days=90 +2017-12-26 15:46:13.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 15:46:13.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 15:46:13.712 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:46:13.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:46:13.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:46:13.717 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=500208 +2017-12-26 15:46:13.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=500208 +2017-12-26 15:46:13.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 15:46:13.721 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 15:46:13.721 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 15:46:13.721 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 15:46:16.775 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500208", "90"]) - ModelState is Valid +2017-12-26 15:46:16.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:46:16.952 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:46:16.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:46:23.063 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:23.063 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:23.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:23.065 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:23.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 9357.1616ms +2017-12-26 15:46:23.072 +05:30 [Information] Request finished in 9365.9053ms 200 application/json; charset=utf-8 +2017-12-26 15:46:23.072 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" completed keep alive response. +2017-12-26 15:46:31.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:31.835 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:31.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:31.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:32.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:46:32.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:46:32.716 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:46:32.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 19027.9347ms +2017-12-26 15:46:35.903 +05:30 [Information] Request finished in 19722.8946ms 200 application/json; charset=utf-8 +2017-12-26 15:46:36.299 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" completed keep alive response. +2017-12-26 15:46:39.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:46:40.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:40.552 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:40.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:40.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:46:40.624 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 26850.1432ms +2017-12-26 15:46:40.667 +05:30 [Information] Request finished in 26933.7941ms 200 application/json; charset=utf-8 +2017-12-26 15:46:40.679 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:46:41.604 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:46:41.604 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:46:41.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:46:41.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:47:09.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:47:09.444 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:47:09.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:47:09.454 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:47:09.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 55734.2287ms +2017-12-26 15:47:09.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 36747.5392ms +2017-12-26 15:47:09.479 +05:30 [Information] Request finished in 55767.714ms 200 application/json; charset=utf-8 +2017-12-26 15:47:09.481 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" completed keep alive response. +2017-12-26 15:47:09.482 +05:30 [Information] Request finished in 36883.4861ms 200 application/json; charset=utf-8 +2017-12-26 15:47:09.483 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:47:28.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" received FIN. +2017-12-26 15:47:28.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" disconnecting. +2017-12-26 15:47:28.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" sending FIN. +2017-12-26 15:47:28.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" received FIN. +2017-12-26 15:47:28.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" sent FIN with status "0". +2017-12-26 15:47:28.690 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" disconnecting. +2017-12-26 15:47:28.690 +05:30 [Debug] Connection id ""0HLAC3M1V4I62"" stopped. +2017-12-26 15:47:28.690 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" sending FIN. +2017-12-26 15:47:28.691 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" sent FIN with status "0". +2017-12-26 15:47:28.691 +05:30 [Debug] Connection id ""0HLAC3M1V4I63"" stopped. +2017-12-26 15:47:39.355 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" received FIN. +2017-12-26 15:47:39.356 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" disconnecting. +2017-12-26 15:47:39.356 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:47:39.356 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" sending FIN. +2017-12-26 15:47:39.357 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" sent FIN with status "0". +2017-12-26 15:47:39.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 15:47:39.358 +05:30 [Debug] Connection id ""0HLAC3M1V4I5V"" stopped. +2017-12-26 15:47:39.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 15:47:42.387 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:47:42.651 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:47:42.651 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:47:42.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:47:42.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:47:42.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3294.9612ms +2017-12-26 15:47:42.656 +05:30 [Information] Request finished in 3300.523ms 200 application/json; charset=utf-8 +2017-12-26 15:47:42.657 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:47:42.814 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:47:42.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500208&days=90 +2017-12-26 15:47:42.836 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:47:42.837 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:47:42.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 15:47:42.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 15:47:45.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500208", "90"]) - ModelState is Valid +2017-12-26 15:47:45.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:47:46.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:47:46.703 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:47:46.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:47:46.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:47:46.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3876.8464ms +2017-12-26 15:47:46.723 +05:30 [Information] Request finished in 3908.9094ms 200 application/json; charset=utf-8 +2017-12-26 15:47:46.724 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:47:48.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:47:48.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:47:48.294 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:47:48.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:47:48.305 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:47:48.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:47:48.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:47:48.329 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5488.4664ms +2017-12-26 15:47:48.337 +05:30 [Information] Request finished in 5524.055ms 200 application/json; charset=utf-8 +2017-12-26 15:47:48.338 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" completed keep alive response. +2017-12-26 15:47:51.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:47:52.306 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:47:52.307 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:47:52.307 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:47:52.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:47:52.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4028.3402ms +2017-12-26 15:47:52.339 +05:30 [Information] Request finished in 4036.2159ms 200 application/json; charset=utf-8 +2017-12-26 15:47:52.340 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:48:11.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=1152399 +2017-12-26 15:48:11.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnlyforReconn"'. +2017-12-26 15:48:11.110 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" +2017-12-26 15:48:14.136 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:48:18.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:18.182 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:48:18.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:18.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:18.185 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnlyforReconn (Api.Socioboard)" in 7073.9465ms +2017-12-26 15:48:18.189 +05:30 [Information] Request finished in 7079.3997ms 200 application/json; charset=utf-8 +2017-12-26 15:48:18.190 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:48:32.800 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/GetFacebookPagesDet application/x-www-form-urlencoded 230 +2017-12-26 15:48:32.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookPagesDet"'. +2017-12-26 15:48:32.801 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" +2017-12-26 15:48:35.861 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAAtEGrZBxeAVFyyKKdu3suBoZBQeZCdjKU5iN14cDOYYX03Q5d0gef7jxnrs2Ghm0tWCuT1j2ZABsfWbih3cIWTJLFdvhd58zlMIFQUKG8K4oH8TDxn1XsytvyCfHxbY38ma2If0guVBm756j6IdLQONa28kxgZDZD", "1152399"]) - ModelState is Valid +2017-12-26 15:48:38.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:38.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:38.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:38.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookPagesDet (Api.Socioboard)" in 5961.7401ms +2017-12-26 15:48:38.768 +05:30 [Information] Request finished in 5968.975ms 200 application/json; charset=utf-8 +2017-12-26 15:48:38.768 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" completed keep alive response. +2017-12-26 15:48:38.784 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:48:38.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:48:38.785 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:48:40.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:48:41.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:41.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:41.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:41.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2597.1792ms +2017-12-26 15:48:41.386 +05:30 [Information] Request finished in 2601.8885ms 200 application/json; charset=utf-8 +2017-12-26 15:48:41.387 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:48:41.395 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500208&groupId=1152399 +2017-12-26 15:48:41.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:48:41.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:48:43.536 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500208", "1152399"]) - ModelState is Valid +2017-12-26 15:48:45.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:45.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:45.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:45.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3639.3529ms +2017-12-26 15:48:45.040 +05:30 [Information] Request finished in 3645.3363ms 200 application/json; charset=utf-8 +2017-12-26 15:48:45.041 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:48:45.665 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" started. +2017-12-26 15:48:45.666 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152399 +2017-12-26 15:48:45.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:48:45.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:48:45.670 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500208 +2017-12-26 15:48:45.672 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:48:45.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:48:45.678 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500208 +2017-12-26 15:48:45.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:48:45.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:48:45.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500208 +2017-12-26 15:48:45.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:48:45.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:48:45.761 +05:30 [Debug] Connection id ""0HLAC3M1V4I65"" started. +2017-12-26 15:48:45.763 +05:30 [Debug] Connection id ""0HLAC3M1V4I66"" started. +2017-12-26 15:48:45.768 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500208 +2017-12-26 15:48:45.768 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:48:45.768 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152399&userId=500208 +2017-12-26 15:48:45.768 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:48:45.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:48:45.770 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:48:48.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:48:48.752 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:48:48.781 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:48:48.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:48:48.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:48:48.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:48:49.310 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:49.311 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:48:49.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:49.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:49.338 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3650.6459ms +2017-12-26 15:48:49.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:49.348 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:48:49.349 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:49.350 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:49.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3671.8647ms +2017-12-26 15:48:49.358 +05:30 [Information] Request finished in 3691.916ms 200 application/json; charset=utf-8 +2017-12-26 15:48:49.358 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:48:49.373 +05:30 [Information] Request finished in 3691.1229ms 200 application/json; charset=utf-8 +2017-12-26 15:48:49.375 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" completed keep alive response. +2017-12-26 15:48:49.387 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152399 +2017-12-26 15:48:49.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 15:48:49.388 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 15:48:49.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:49.451 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:48:49.452 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:49.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:49.474 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3799.3205ms +2017-12-26 15:48:49.481 +05:30 [Information] Request finished in 3817.5894ms 200 application/json; charset=utf-8 +2017-12-26 15:48:49.481 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" completed keep alive response. +2017-12-26 15:48:49.776 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:49.776 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:48:49.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:49.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:49.779 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4106.1868ms +2017-12-26 15:48:49.781 +05:30 [Information] Request finished in 4118.0082ms 200 application/json; charset=utf-8 +2017-12-26 15:48:49.782 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" completed keep alive response. +2017-12-26 15:48:49.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:49.900 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:48:49.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:49.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:49.902 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4133.312ms +2017-12-26 15:48:49.904 +05:30 [Information] Request finished in 4139.474ms 200 application/json; charset=utf-8 +2017-12-26 15:48:49.905 +05:30 [Debug] Connection id ""0HLAC3M1V4I65"" completed keep alive response. +2017-12-26 15:48:49.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:49.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:48:49.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:49.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:49.972 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4200.5432ms +2017-12-26 15:48:49.974 +05:30 [Information] Request finished in 4206.8296ms 200 application/json; charset=utf-8 +2017-12-26 15:48:49.975 +05:30 [Debug] Connection id ""0HLAC3M1V4I66"" completed keep alive response. +2017-12-26 15:48:51.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:48:53.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:48:53.689 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:48:53.689 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:48:53.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:48:53.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4302.7697ms +2017-12-26 15:48:53.695 +05:30 [Information] Request finished in 4310.4531ms 200 application/json; charset=utf-8 +2017-12-26 15:48:53.696 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:49:45.472 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/ReconnFacebookPages?userId=500208&groupId=1152399&accessToken=EAAKYvwDVmnUBAPPCttZAt3PBXI5Sy477wTeZBGYBUuOc9Jq2CIS9vZBaqgbmNeHjFZBQ91J8UGMTFPdT0HZAd00gm2SZCMc1hiBc0xQp4cYrQum7ZCAEZCHcujABZCJuEqgSpnEJ5o7A871cWYnePZAQO3XN0bSrfvGamdyxF7pbxkdNgQdB7UYG1M 0 +2017-12-26 15:49:45.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/ReconnFacebookPages"'. +2017-12-26 15:49:45.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" +2017-12-26 15:49:48.532 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" with arguments (["500208", "1152399", "EAAKYvwDVmnUBAPPCttZAt3PBXI5Sy477wTeZBGYBUuOc9Jq2CIS9vZBaqgbmNeHjFZBQ91J8UGMTFPdT0HZAd00gm2SZCMc1hiBc0xQp4cYrQum7ZCAEZCHcujABZCJuEqgSpnEJ5o7A871cWYnePZAQO3XN0bSrfvGamdyxF7pbxkdNgQdB7UYG1M"]) - ModelState is Valid +2017-12-26 15:49:49.012 +05:30 [Error] {"id":"1881805565166940","name":"Kicks","fan_count":2} +2017-12-26 15:49:50.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:49:50.714 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:49:50.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-26 15:49:50.715 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:49:50.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.ReconnFacebookPages (Api.Socioboard)" in 5241.6675ms +2017-12-26 15:49:50.719 +05:30 [Information] Request finished in 5246.7316ms 200 text/plain; charset=utf-8 +2017-12-26 15:49:50.719 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" completed keep alive response. +2017-12-26 15:49:50.815 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" received FIN. +2017-12-26 15:49:50.815 +05:30 [Debug] Connection id ""0HLAC3M1V4I65"" received FIN. +2017-12-26 15:49:50.815 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" received FIN. +2017-12-26 15:49:50.815 +05:30 [Debug] Connection id ""0HLAC3M1V4I65"" disconnecting. +2017-12-26 15:49:50.815 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" disconnecting. +2017-12-26 15:49:50.815 +05:30 [Debug] Connection id ""0HLAC3M1V4I66"" received FIN. +2017-12-26 15:49:50.816 +05:30 [Debug] Connection id ""0HLAC3M1V4I66"" disconnecting. +2017-12-26 15:49:50.815 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" disconnecting. +2017-12-26 15:49:50.815 +05:30 [Debug] Connection id ""0HLAC3M1V4I65"" sending FIN. +2017-12-26 15:49:50.818 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" sending FIN. +2017-12-26 15:49:50.816 +05:30 [Debug] Connection id ""0HLAC3M1V4I66"" sending FIN. +2017-12-26 15:49:50.820 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" sent FIN with status "0". +2017-12-26 15:49:50.821 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" sending FIN. +2017-12-26 15:49:50.821 +05:30 [Debug] Connection id ""0HLAC3M1V4I60"" stopped. +2017-12-26 15:49:50.821 +05:30 [Debug] Connection id ""0HLAC3M1V4I65"" sent FIN with status "0". +2017-12-26 15:49:50.821 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" sent FIN with status "0". +2017-12-26 15:49:50.822 +05:30 [Debug] Connection id ""0HLAC3M1V4I5U"" stopped. +2017-12-26 15:49:50.822 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 15:49:50.822 +05:30 [Debug] Connection id ""0HLAC3M1V4I66"" sent FIN with status "0". +2017-12-26 15:49:50.823 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 15:49:50.823 +05:30 [Debug] Connection id ""0HLAC3M1V4I66"" stopped. +2017-12-26 15:49:50.823 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 15:49:50.821 +05:30 [Debug] Connection id ""0HLAC3M1V4I65"" stopped. +2017-12-26 15:49:52.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 15:49:53.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:49:53.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:49:53.422 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:49:53.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2599.128ms +2017-12-26 15:49:53.426 +05:30 [Information] Request finished in 2609.2998ms 200 application/json; charset=utf-8 +2017-12-26 15:49:53.426 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:49:53.455 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500208&groupId=1152399 +2017-12-26 15:49:53.455 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 15:49:53.456 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 15:49:56.498 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500208", "1152399"]) - ModelState is Valid +2017-12-26 15:49:57.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:49:57.995 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:49:57.996 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:49:57.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4540.2794ms +2017-12-26 15:49:58.001 +05:30 [Information] Request finished in 4544.5669ms 200 application/json; charset=utf-8 +2017-12-26 15:49:58.002 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" completed keep alive response. +2017-12-26 15:49:58.996 +05:30 [Debug] Connection id ""0HLAC3M1V4I67"" started. +2017-12-26 15:49:59.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152399 +2017-12-26 15:49:59.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 15:49:59.020 +05:30 [Debug] Connection id ""0HLAC3M1V4I68"" started. +2017-12-26 15:49:59.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 15:49:59.022 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500208 +2017-12-26 15:49:59.024 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 15:49:59.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 15:49:59.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500208 +2017-12-26 15:49:59.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 15:49:59.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 15:49:59.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500208 +2017-12-26 15:49:59.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 15:49:59.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 15:49:59.088 +05:30 [Debug] Connection id ""0HLAC3M1V4I69"" started. +2017-12-26 15:49:59.089 +05:30 [Debug] Connection id ""0HLAC3M1V4I6A"" started. +2017-12-26 15:49:59.765 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500208 +2017-12-26 15:49:59.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 15:49:59.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 15:50:00.767 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152399&userId=500208 +2017-12-26 15:50:00.768 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 15:50:00.768 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 15:50:03.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:50:03.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:50:03.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:50:03.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:50:03.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:50:03.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:50:04.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:04.464 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:04.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:04.465 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:04.466 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5434.3619ms +2017-12-26 15:50:04.469 +05:30 [Information] Request finished in 5448.4505ms 200 application/json; charset=utf-8 +2017-12-26 15:50:04.469 +05:30 [Debug] Connection id ""0HLAC3M1V4I67"" completed keep alive response. +2017-12-26 15:50:04.476 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152399 +2017-12-26 15:50:04.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 15:50:04.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 15:50:04.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:04.507 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:04.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:04.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:04.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5483.5011ms +2017-12-26 15:50:04.512 +05:30 [Information] Request finished in 5515.8712ms 200 application/json; charset=utf-8 +2017-12-26 15:50:04.513 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:50:04.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:04.599 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:04.599 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:04.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:04.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5578.7377ms +2017-12-26 15:50:04.603 +05:30 [Information] Request finished in 5606.3708ms 200 application/json; charset=utf-8 +2017-12-26 15:50:04.603 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" completed keep alive response. +2017-12-26 15:50:04.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:04.996 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:04.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:04.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:04.998 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5230.5934ms +2017-12-26 15:50:05.000 +05:30 [Information] Request finished in 5235.1693ms 200 application/json; charset=utf-8 +2017-12-26 15:50:05.000 +05:30 [Debug] Connection id ""0HLAC3M1V4I69"" completed keep alive response. +2017-12-26 15:50:05.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:05.034 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:05.034 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:05.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:05.036 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6006.3175ms +2017-12-26 15:50:05.038 +05:30 [Information] Request finished in 6015.9177ms 200 application/json; charset=utf-8 +2017-12-26 15:50:05.038 +05:30 [Debug] Connection id ""0HLAC3M1V4I68"" completed keep alive response. +2017-12-26 15:50:05.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:05.046 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:05.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:05.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:05.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4277.9547ms +2017-12-26 15:50:05.050 +05:30 [Information] Request finished in 4283.0291ms 200 application/json; charset=utf-8 +2017-12-26 15:50:05.051 +05:30 [Debug] Connection id ""0HLAC3M1V4I6A"" completed keep alive response. +2017-12-26 15:50:07.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 15:50:10.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:10.275 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:10.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:10.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:10.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5799.8147ms +2017-12-26 15:50:10.282 +05:30 [Information] Request finished in 5808.9306ms 200 application/json; charset=utf-8 +2017-12-26 15:50:10.283 +05:30 [Debug] Connection id ""0HLAC3M1V4I67"" completed keep alive response. +2017-12-26 15:50:19.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:50:19.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 15:50:19.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 15:50:22.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:50:22.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:22.478 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:22.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:22.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:22.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3231.064ms +2017-12-26 15:50:22.485 +05:30 [Information] Request finished in 3235.5487ms 200 application/json; charset=utf-8 +2017-12-26 15:50:22.486 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:50:22.614 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500208&days=90 +2017-12-26 15:50:22.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 15:50:22.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:50:22.616 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 15:50:22.616 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:50:22.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:50:25.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500208", "90"]) - ModelState is Valid +2017-12-26 15:50:25.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:50:26.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:26.416 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:26.416 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:26.417 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:26.419 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3801.2475ms +2017-12-26 15:50:26.421 +05:30 [Information] Request finished in 3807.8026ms 200 application/json; charset=utf-8 +2017-12-26 15:50:26.422 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" completed keep alive response. +2017-12-26 15:50:27.456 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:27.457 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:27.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:27.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:27.464 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:50:27.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:50:27.465 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:50:27.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4865.517ms +2017-12-26 15:50:27.489 +05:30 [Information] Request finished in 4872.2002ms 200 application/json; charset=utf-8 +2017-12-26 15:50:27.489 +05:30 [Debug] Connection id ""0HLAC3M1V4I69"" completed keep alive response. +2017-12-26 15:50:30.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:50:31.754 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:50:31.754 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:50:31.754 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:50:31.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:50:31.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 4314.3989ms +2017-12-26 15:50:31.782 +05:30 [Information] Request finished in 4319.4341ms 200 application/json; charset=utf-8 +2017-12-26 15:50:31.783 +05:30 [Debug] Connection id ""0HLAC3M1V4I68"" completed keep alive response. +2017-12-26 15:50:57.221 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:50:57.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 15:50:57.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 15:51:00.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:51:00.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:51:00.466 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:51:00.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:51:00.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:51:00.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3246.5348ms +2017-12-26 15:51:00.474 +05:30 [Information] Request finished in 3279.8621ms 200 application/json; charset=utf-8 +2017-12-26 15:51:00.475 +05:30 [Debug] Connection id ""0HLAC3M1V4I6A"" completed keep alive response. +2017-12-26 15:51:00.517 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500208&days=90 +2017-12-26 15:51:00.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 15:51:00.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 15:51:00.520 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=500208 +2017-12-26 15:51:00.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 15:51:00.524 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=500208 +2017-12-26 15:51:00.524 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 15:51:00.522 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:51:00.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 15:51:00.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:51:00.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 15:51:00.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:51:03.584 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500208", "90"]) - ModelState is Valid +2017-12-26 15:51:03.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:51:03.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 15:51:03.648 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:51:06.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:51:06.120 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:51:06.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:51:06.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:51:06.127 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5605.7086ms +2017-12-26 15:51:06.161 +05:30 [Information] Request finished in 5666.4696ms 200 application/json; charset=utf-8 +2017-12-26 15:51:06.161 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" completed keep alive response. +2017-12-26 15:51:06.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:51:06.296 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:51:06.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:51:06.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:51:06.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 5772.5467ms +2017-12-26 15:51:06.300 +05:30 [Information] Request finished in 5804.7625ms 200 application/json; charset=utf-8 +2017-12-26 15:51:06.300 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" completed keep alive response. +2017-12-26 15:51:06.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:51:06.691 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:51:06.692 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:51:06.694 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:51:06.712 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1881805565166940&daysCount=90 +2017-12-26 15:51:06.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 15:51:06.713 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 15:51:06.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 6189.1644ms +2017-12-26 15:51:06.743 +05:30 [Information] Request finished in 6246.2779ms 200 application/json; charset=utf-8 +2017-12-26 15:51:06.744 +05:30 [Debug] Connection id ""0HLAC3M1V4I67"" completed keep alive response. +2017-12-26 15:51:08.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:51:08.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:51:08.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:51:08.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:51:08.599 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 8052.3323ms +2017-12-26 15:51:08.602 +05:30 [Information] Request finished in 8085.2973ms 200 application/json; charset=utf-8 +2017-12-26 15:51:08.602 +05:30 [Debug] Connection id ""0HLAC3M1V4I69"" completed keep alive response. +2017-12-26 15:51:08.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1881805565166940", "90"]) - ModelState is Valid +2017-12-26 15:51:09.540 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:51:09.540 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:51:09.540 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:51:09.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:51:09.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2852.9927ms +2017-12-26 15:51:09.573 +05:30 [Information] Request finished in 2870.2888ms 200 application/json; charset=utf-8 +2017-12-26 15:51:09.574 +05:30 [Debug] Connection id ""0HLAC3M1V4I68"" completed keep alive response. +2017-12-26 15:52:58.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I6A"" received FIN. +2017-12-26 15:52:58.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I67"" received FIN. +2017-12-26 15:52:58.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" received FIN. +2017-12-26 15:52:58.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I69"" received FIN. +2017-12-26 15:52:58.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" received FIN. +2017-12-26 15:52:58.688 +05:30 [Debug] Connection id ""0HLAC3M1V4I6A"" disconnecting. +2017-12-26 15:52:58.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I68"" received FIN. +2017-12-26 15:52:58.690 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" disconnecting. +2017-12-26 15:52:58.690 +05:30 [Debug] Connection id ""0HLAC3M1V4I69"" disconnecting. +2017-12-26 15:52:58.690 +05:30 [Debug] Connection id ""0HLAC3M1V4I6A"" sending FIN. +2017-12-26 15:52:58.691 +05:30 [Debug] Connection id ""0HLAC3M1V4I68"" disconnecting. +2017-12-26 15:52:58.691 +05:30 [Debug] Connection id ""0HLAC3M1V4I69"" sending FIN. +2017-12-26 15:52:58.692 +05:30 [Debug] Connection id ""0HLAC3M1V4I69"" sent FIN with status "0". +2017-12-26 15:52:58.690 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" disconnecting. +2017-12-26 15:52:58.691 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" sending FIN. +2017-12-26 15:52:58.689 +05:30 [Debug] Connection id ""0HLAC3M1V4I67"" disconnecting. +2017-12-26 15:52:58.693 +05:30 [Debug] Connection id ""0HLAC3M1V4I69"" stopped. +2017-12-26 15:52:58.694 +05:30 [Debug] Connection id ""0HLAC3M1V4I68"" sending FIN. +2017-12-26 15:52:58.695 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" sending FIN. +2017-12-26 15:52:58.695 +05:30 [Debug] Connection id ""0HLAC3M1V4I67"" sending FIN. +2017-12-26 15:52:58.696 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" sent FIN with status "0". +2017-12-26 15:52:58.696 +05:30 [Debug] Connection id ""0HLAC3M1V4I67"" sent FIN with status "0". +2017-12-26 15:52:58.696 +05:30 [Debug] Connection id ""0HLAC3M1V4I64"" stopped. +2017-12-26 15:52:58.697 +05:30 [Debug] Connection id ""0HLAC3M1V4I67"" stopped. +2017-12-26 15:52:58.697 +05:30 [Debug] Connection id ""0HLAC3M1V4I68"" sent FIN with status "0". +2017-12-26 15:52:58.698 +05:30 [Debug] Connection id ""0HLAC3M1V4I68"" stopped. +2017-12-26 15:52:58.699 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" sent FIN with status "0". +2017-12-26 15:52:58.699 +05:30 [Debug] Connection id ""0HLAC3M1V4I61"" stopped. +2017-12-26 15:52:58.700 +05:30 [Debug] Connection id ""0HLAC3M1V4I6A"" sent FIN with status "0". +2017-12-26 15:52:58.700 +05:30 [Debug] Connection id ""0HLAC3M1V4I6A"" stopped. +2017-12-26 15:54:27.448 +05:30 [Debug] Connection id ""0HLAC3M1V4I6B"" started. +2017-12-26 15:54:27.454 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=1881805565166940 +2017-12-26 15:54:27.455 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 15:54:27.455 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 15:54:27.465 +05:30 [Debug] Connection id ""0HLAC3M1V4I6C"" started. +2017-12-26 15:54:27.466 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=1881805565166940&userId=500208&skip=0&count=10&type=undefined +2017-12-26 15:54:27.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 15:54:27.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 15:54:30.519 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["1881805565166940"]) - ModelState is Valid +2017-12-26 15:54:30.548 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["1881805565166940", "500208", "0", "10"]) - ModelState is Valid +2017-12-26 15:54:30.893 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:54:30.893 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:54:30.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:54:30.898 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:54:30.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 3434.8896ms +2017-12-26 15:54:30.914 +05:30 [Information] Request finished in 3447.9881ms 200 application/json; charset=utf-8 +2017-12-26 15:54:30.915 +05:30 [Debug] Connection id ""0HLAC3M1V4I6C"" completed keep alive response. +2017-12-26 15:54:31.059 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 15:54:31.059 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 15:54:31.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 15:54:31.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 15:54:31.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3605.6424ms +2017-12-26 15:54:31.063 +05:30 [Information] Request finished in 3613.9808ms 200 application/json; charset=utf-8 +2017-12-26 15:54:31.064 +05:30 [Debug] Connection id ""0HLAC3M1V4I6B"" completed keep alive response. +2017-12-26 16:17:47.669 +05:30 [Debug] Hosting starting +2017-12-26 16:17:47.912 +05:30 [Debug] Hosting started +2017-12-26 16:17:48.071 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" started. +2017-12-26 16:17:48.071 +05:30 [Debug] Connection id ""0HLAC9OD9ROH4"" started. +2017-12-26 16:17:48.319 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-26 16:17:48.320 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-26 16:17:48.424 +05:30 [Information] Request finished in 153.4694ms 200 +2017-12-26 16:17:48.476 +05:30 [Debug] Connection id ""0HLAC9OD9ROH4"" completed keep alive response. +2017-12-26 16:17:49.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-26 16:17:50.028 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"2f1e4040-ee64-4988-844d-f1fef36828c5"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-26 16:17:50.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-26 16:17:50.283 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-26 16:17:50.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-26 16:17:50.290 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:17:50.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:17:50.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:17:50.348 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:17:50.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:17:50.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:17:50.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 538.3527ms +2017-12-26 16:17:50.767 +05:30 [Information] Request finished in 2517.3596ms 200 application/json; charset=utf-8 +2017-12-26 16:17:50.770 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" completed keep alive response. +2017-12-26 16:17:50.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-26 16:17:50.810 +05:30 [Debug] Request did not match any routes. +2017-12-26 16:17:50.834 +05:30 [Debug] The request path "" does not match the path filter +2017-12-26 16:17:50.837 +05:30 [Information] Request finished in 32.1992ms 404 +2017-12-26 16:17:50.837 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" completed keep alive response. +2017-12-26 16:17:53.945 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:18:00.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:18:00.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:18:00.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:18:00.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9830.9338ms +2017-12-26 16:18:00.129 +05:30 [Information] Request finished in 9839.3736ms 200 application/json; charset=utf-8 +2017-12-26 16:18:00.130 +05:30 [Debug] Connection id ""0HLAC9OD9ROH4"" completed keep alive response. +2017-12-26 16:18:12.672 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:18:12.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:18:12.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:18:14.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:18:15.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:18:15.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:18:15.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:18:15.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2602.8579ms +2017-12-26 16:18:15.282 +05:30 [Information] Request finished in 2610.7043ms 200 application/json; charset=utf-8 +2017-12-26 16:18:15.282 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" completed keep alive response. +2017-12-26 16:18:15.359 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:18:15.360 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:18:15.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:18:17.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:18:17.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:18:17.994 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:18:17.996 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:18:17.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2635.2152ms +2017-12-26 16:18:18.000 +05:30 [Information] Request finished in 2645.0253ms 200 application/json; charset=utf-8 +2017-12-26 16:18:18.000 +05:30 [Debug] Connection id ""0HLAC9OD9ROH4"" completed keep alive response. +2017-12-26 16:18:18.049 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:18:18.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:18:18.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:18:21.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:18:21.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:18:21.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:18:21.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:18:21.584 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3532.2342ms +2017-12-26 16:18:21.587 +05:30 [Information] Request finished in 3537.1239ms 200 application/json; charset=utf-8 +2017-12-26 16:18:21.587 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" completed keep alive response. +2017-12-26 16:19:35.962 +05:30 [Debug] Connection id ""0HLAC9OD9ROH4"" received FIN. +2017-12-26 16:19:35.967 +05:30 [Debug] Connection id ""0HLAC9OD9ROH4"" disconnecting. +2017-12-26 16:19:35.970 +05:30 [Debug] Connection id ""0HLAC9OD9ROH4"" sending FIN. +2017-12-26 16:19:35.974 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" received FIN. +2017-12-26 16:19:35.978 +05:30 [Debug] Connection id ""0HLAC9OD9ROH6"" started. +2017-12-26 16:19:35.980 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" disconnecting. +2017-12-26 16:19:35.987 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" sending FIN. +2017-12-26 16:19:35.986 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:19:35.989 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:19:35.989 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:19:35.996 +05:30 [Debug] Connection id ""0HLAC9OD9ROH4"" sent FIN with status "0". +2017-12-26 16:19:35.996 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" sent FIN with status "0". +2017-12-26 16:19:36.001 +05:30 [Debug] Connection id ""0HLAC9OD9ROH5"" stopped. +2017-12-26 16:19:36.001 +05:30 [Debug] Connection id ""0HLAC9OD9ROH4"" stopped. +2017-12-26 16:19:39.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:19:39.560 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:19:39.561 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:19:39.562 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:19:39.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3572.7791ms +2017-12-26 16:19:39.567 +05:30 [Information] Request finished in 3585.3053ms 200 application/json; charset=utf-8 +2017-12-26 16:19:39.567 +05:30 [Debug] Connection id ""0HLAC9OD9ROH6"" completed keep alive response. +2017-12-26 16:21:28.911 +05:30 [Debug] Connection id ""0HLAC9OD9ROH6"" received FIN. +2017-12-26 16:21:28.911 +05:30 [Debug] Connection id ""0HLAC9OD9ROH6"" disconnecting. +2017-12-26 16:21:28.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROH6"" sending FIN. +2017-12-26 16:21:28.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROH6"" sent FIN with status "0". +2017-12-26 16:21:28.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROH6"" stopped. +2017-12-26 16:23:57.462 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" started. +2017-12-26 16:23:57.466 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 199 +2017-12-26 16:23:57.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-26 16:23:57.469 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-26 16:24:00.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAItXIY6d7GBs13eVMZC4u9UhfS2ZBG4nvhPXx3ypjxyb196nOYZALmEYc0frMsQZCd9fqWkw7eebi4rJf316HcOGzGjK0ej5ZCnvsNQX9HeV6AtccL87qwh5ff69kqcVHf2seGcs22hVfxodJqnOZANw2LYB0LGgZDZD", "Free"]) - ModelState is Valid +2017-12-26 16:24:27.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:27.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:27.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:27.407 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 29937.0532ms +2017-12-26 16:24:27.410 +05:30 [Information] Request finished in 29943.3256ms 200 application/json; charset=utf-8 +2017-12-26 16:24:27.410 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" completed keep alive response. +2017-12-26 16:24:27.849 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:24:27.850 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:24:27.850 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:24:35.047 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:24:35.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:35.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:35.550 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:35.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7699.9223ms +2017-12-26 16:24:35.556 +05:30 [Information] Request finished in 7706.7698ms 200 application/json; charset=utf-8 +2017-12-26 16:24:35.556 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" completed keep alive response. +2017-12-26 16:24:35.602 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId= +2017-12-26 16:24:35.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 16:24:35.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 16:24:38.682 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", ""]) - ModelState is Valid +2017-12-26 16:24:40.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:40.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:40.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:40.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4912.2077ms +2017-12-26 16:24:40.519 +05:30 [Information] Request finished in 4917.2675ms 200 application/json; charset=utf-8 +2017-12-26 16:24:40.520 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" completed keep alive response. +2017-12-26 16:24:42.019 +05:30 [Debug] Connection id ""0HLAC9OD9ROH8"" started. +2017-12-26 16:24:42.019 +05:30 [Debug] Connection id ""0HLAC9OD9ROH9"" started. +2017-12-26 16:24:42.019 +05:30 [Debug] Connection id ""0HLAC9OD9ROHA"" started. +2017-12-26 16:24:42.021 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 16:24:42.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 16:24:42.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 16:24:42.035 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 16:24:42.036 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 16:24:42.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 16:24:42.042 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 16:24:42.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 16:24:42.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 16:24:42.047 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 16:24:42.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 16:24:42.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 16:24:42.153 +05:30 [Debug] Connection id ""0HLAC9OD9ROHB"" started. +2017-12-26 16:24:42.155 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 16:24:42.155 +05:30 [Debug] Connection id ""0HLAC9OD9ROHC"" started. +2017-12-26 16:24:42.156 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 16:24:42.158 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 16:24:42.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 16:24:42.162 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 16:24:42.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 16:24:45.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:24:45.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:24:45.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 16:24:45.346 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 16:24:45.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:24:45.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:24:45.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:45.613 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:24:45.613 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:45.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:45.623 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3590.0659ms +2017-12-26 16:24:45.625 +05:30 [Information] Request finished in 3607.422ms 200 application/json; charset=utf-8 +2017-12-26 16:24:45.626 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" completed keep alive response. +2017-12-26 16:24:45.656 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-26 16:24:45.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 16:24:45.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 16:24:47.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:47.351 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:24:47.352 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:47.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:47.358 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5312.7123ms +2017-12-26 16:24:47.360 +05:30 [Information] Request finished in 5340.5335ms 200 application/json; charset=utf-8 +2017-12-26 16:24:47.360 +05:30 [Debug] Connection id ""0HLAC9OD9ROH8"" completed keep alive response. +2017-12-26 16:24:47.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:47.516 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:24:47.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:47.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:47.526 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5487.0077ms +2017-12-26 16:24:47.529 +05:30 [Information] Request finished in 5506.0013ms 200 application/json; charset=utf-8 +2017-12-26 16:24:47.529 +05:30 [Debug] Connection id ""0HLAC9OD9ROHA"" completed keep alive response. +2017-12-26 16:24:47.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:47.769 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:24:47.769 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:47.770 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:47.774 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5722.6389ms +2017-12-26 16:24:47.777 +05:30 [Information] Request finished in 5755.9815ms 200 application/json; charset=utf-8 +2017-12-26 16:24:47.777 +05:30 [Debug] Connection id ""0HLAC9OD9ROH9"" completed keep alive response. +2017-12-26 16:24:47.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:47.830 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:24:47.830 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:47.831 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:47.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5656.1389ms +2017-12-26 16:24:47.835 +05:30 [Information] Request finished in 5680.2078ms 200 application/json; charset=utf-8 +2017-12-26 16:24:47.835 +05:30 [Debug] Connection id ""0HLAC9OD9ROHB"" completed keep alive response. +2017-12-26 16:24:47.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:47.890 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:24:47.891 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:47.891 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:47.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5729.9899ms +2017-12-26 16:24:47.896 +05:30 [Information] Request finished in 5738.7507ms 200 application/json; charset=utf-8 +2017-12-26 16:24:47.896 +05:30 [Debug] Connection id ""0HLAC9OD9ROHC"" completed keep alive response. +2017-12-26 16:24:48.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 16:24:50.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:24:50.973 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:24:50.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:24:50.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:24:51.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5363.7329ms +2017-12-26 16:24:51.025 +05:30 [Information] Request finished in 5385.1041ms 200 application/json; charset=utf-8 +2017-12-26 16:24:51.025 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" completed keep alive response. +2017-12-26 16:26:58.911 +05:30 [Debug] Connection id ""0HLAC9OD9ROH8"" received FIN. +2017-12-26 16:26:58.911 +05:30 [Debug] Connection id ""0HLAC9OD9ROH9"" received FIN. +2017-12-26 16:26:58.911 +05:30 [Debug] Connection id ""0HLAC9OD9ROHA"" received FIN. +2017-12-26 16:26:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHB"" received FIN. +2017-12-26 16:26:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHC"" received FIN. +2017-12-26 16:26:58.913 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" received FIN. +2017-12-26 16:26:58.936 +05:30 [Debug] Connection id ""0HLAC9OD9ROH8"" disconnecting. +2017-12-26 16:26:58.937 +05:30 [Debug] Connection id ""0HLAC9OD9ROH8"" sending FIN. +2017-12-26 16:26:58.936 +05:30 [Debug] Connection id ""0HLAC9OD9ROH9"" disconnecting. +2017-12-26 16:26:58.937 +05:30 [Debug] Connection id ""0HLAC9OD9ROHA"" disconnecting. +2017-12-26 16:26:58.937 +05:30 [Debug] Connection id ""0HLAC9OD9ROHB"" disconnecting. +2017-12-26 16:26:58.937 +05:30 [Debug] Connection id ""0HLAC9OD9ROH8"" sent FIN with status "0". +2017-12-26 16:26:58.938 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" disconnecting. +2017-12-26 16:26:58.939 +05:30 [Debug] Connection id ""0HLAC9OD9ROH8"" stopped. +2017-12-26 16:26:58.937 +05:30 [Debug] Connection id ""0HLAC9OD9ROH9"" sending FIN. +2017-12-26 16:26:58.939 +05:30 [Debug] Connection id ""0HLAC9OD9ROHA"" sending FIN. +2017-12-26 16:26:58.938 +05:30 [Debug] Connection id ""0HLAC9OD9ROHC"" disconnecting. +2017-12-26 16:26:58.939 +05:30 [Debug] Connection id ""0HLAC9OD9ROHB"" sending FIN. +2017-12-26 16:26:58.940 +05:30 [Debug] Connection id ""0HLAC9OD9ROHA"" sent FIN with status "0". +2017-12-26 16:26:58.940 +05:30 [Debug] Connection id ""0HLAC9OD9ROHA"" stopped. +2017-12-26 16:26:58.940 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" sending FIN. +2017-12-26 16:26:58.940 +05:30 [Debug] Connection id ""0HLAC9OD9ROHC"" sending FIN. +2017-12-26 16:26:58.940 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" sent FIN with status "0". +2017-12-26 16:26:58.941 +05:30 [Debug] Connection id ""0HLAC9OD9ROHC"" sent FIN with status "0". +2017-12-26 16:26:58.941 +05:30 [Debug] Connection id ""0HLAC9OD9ROH7"" stopped. +2017-12-26 16:26:58.941 +05:30 [Debug] Connection id ""0HLAC9OD9ROHC"" stopped. +2017-12-26 16:26:58.941 +05:30 [Debug] Connection id ""0HLAC9OD9ROHB"" sent FIN with status "0". +2017-12-26 16:26:58.941 +05:30 [Debug] Connection id ""0HLAC9OD9ROHB"" stopped. +2017-12-26 16:26:58.942 +05:30 [Debug] Connection id ""0HLAC9OD9ROH9"" sent FIN with status "0". +2017-12-26 16:26:58.942 +05:30 [Debug] Connection id ""0HLAC9OD9ROH9"" stopped. +2017-12-26 16:34:21.202 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" started. +2017-12-26 16:34:21.203 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" started. +2017-12-26 16:34:21.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=140174883350217 +2017-12-26 16:34:21.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 16:34:21.257 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 16:34:21.257 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=140174883350217&userId=500443&skip=0&count=10&type=undefined +2017-12-26 16:34:21.263 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 16:34:21.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 16:34:23.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["140174883350217"]) - ModelState is Valid +2017-12-26 16:34:24.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["140174883350217", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 16:34:25.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:34:25.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:34:25.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:34:25.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:34:25.443 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 4185.506ms +2017-12-26 16:34:25.446 +05:30 [Information] Request finished in 4243.4275ms 200 application/json; charset=utf-8 +2017-12-26 16:34:25.447 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" completed keep alive response. +2017-12-26 16:34:28.531 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:34:28.531 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:34:28.531 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:34:28.532 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:34:28.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 7309.9145ms +2017-12-26 16:34:28.578 +05:30 [Information] Request finished in 7327.7819ms 200 application/json; charset=utf-8 +2017-12-26 16:34:28.578 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" completed keep alive response. +2017-12-26 16:34:40.642 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:34:40.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:34:40.645 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:34:43.708 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:34:44.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:34:44.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:34:44.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:34:44.246 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3600.7244ms +2017-12-26 16:34:44.248 +05:30 [Information] Request finished in 3605.9469ms 200 application/json; charset=utf-8 +2017-12-26 16:34:44.249 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" completed keep alive response. +2017-12-26 16:34:44.801 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:34:44.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:34:44.803 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:34:46.487 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:34:46.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:34:46.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:34:47.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:34:48.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:34:48.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:34:48.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:34:48.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3578.4777ms +2017-12-26 16:34:48.397 +05:30 [Information] Request finished in 3597.0169ms 200 application/json; charset=utf-8 +2017-12-26 16:34:48.398 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" completed keep alive response. +2017-12-26 16:34:48.464 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:34:48.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:34:48.464 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:34:49.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:34:50.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:34:50.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:34:50.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:34:50.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3597.3086ms +2017-12-26 16:34:50.089 +05:30 [Information] Request finished in 3602.2835ms 200 application/json; charset=utf-8 +2017-12-26 16:34:50.090 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" completed keep alive response. +2017-12-26 16:34:51.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:34:52.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:34:52.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:34:52.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:34:52.077 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3608.7652ms +2017-12-26 16:34:52.087 +05:30 [Information] Request finished in 3619.9519ms 200 application/json; charset=utf-8 +2017-12-26 16:34:52.088 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" completed keep alive response. +2017-12-26 16:34:52.103 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:34:52.104 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:34:52.105 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:34:54.572 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 197 +2017-12-26 16:34:54.573 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-26 16:34:54.573 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-26 16:34:56.366 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:34:56.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:34:56.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:34:56.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:34:56.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4800.1145ms +2017-12-26 16:34:56.913 +05:30 [Information] Request finished in 4815.0021ms 200 application/json; charset=utf-8 +2017-12-26 16:34:56.914 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" completed keep alive response. +2017-12-26 16:34:57.611 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAEtH0VOouEGZAXkct6vsRwzq8no5lE1ZAG8P1CU9Qn3vCa5KQQRn3mbz7hkskIEO4qnRCtuVcpdwZAyzvUlY1tML2YmFhsJ2Ck9zpXWtfCICe5DDl6FjeN2eJC9PgaKngYNEdE417ycZAEJARfh0seVfEH9D8wZDZD", "Free"]) - ModelState is Valid +2017-12-26 16:35:03.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:03.539 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:03.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:03.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 8969.3007ms +2017-12-26 16:35:03.547 +05:30 [Information] Request finished in 8977.8226ms 200 application/json; charset=utf-8 +2017-12-26 16:35:03.548 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" completed keep alive response. +2017-12-26 16:35:03.572 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:35:03.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:35:03.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:35:06.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:35:07.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:07.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:07.158 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:07.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3579.7957ms +2017-12-26 16:35:07.160 +05:30 [Information] Request finished in 3588.5708ms 200 application/json; charset=utf-8 +2017-12-26 16:35:07.160 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" completed keep alive response. +2017-12-26 16:35:07.166 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId= +2017-12-26 16:35:07.167 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 16:35:07.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 16:35:10.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", ""]) - ModelState is Valid +2017-12-26 16:35:11.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:11.888 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:11.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:11.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4722.0574ms +2017-12-26 16:35:11.894 +05:30 [Information] Request finished in 4727.6163ms 200 application/json; charset=utf-8 +2017-12-26 16:35:11.894 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" completed keep alive response. +2017-12-26 16:35:12.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 16:35:12.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 16:35:12.640 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 16:35:12.641 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 16:35:12.641 +05:30 [Debug] Connection id ""0HLAC9OD9ROHF"" started. +2017-12-26 16:35:12.642 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 16:35:12.645 +05:30 [Debug] Connection id ""0HLAC9OD9ROHG"" started. +2017-12-26 16:35:12.645 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 16:35:12.658 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 16:35:12.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 16:35:12.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 16:35:12.675 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 16:35:12.676 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 16:35:12.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 16:35:12.813 +05:30 [Debug] Connection id ""0HLAC9OD9ROHH"" started. +2017-12-26 16:35:12.816 +05:30 [Debug] Connection id ""0HLAC9OD9ROHI"" started. +2017-12-26 16:35:12.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 16:35:12.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 16:35:12.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 16:35:12.829 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 16:35:12.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 16:35:12.831 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 16:35:15.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:35:15.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:35:15.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 16:35:15.924 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:35:15.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:35:15.959 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 16:35:16.239 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:16.239 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:35:16.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:16.241 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:16.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3600.4946ms +2017-12-26 16:35:16.244 +05:30 [Information] Request finished in 3605.9864ms 200 application/json; charset=utf-8 +2017-12-26 16:35:16.245 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" completed keep alive response. +2017-12-26 16:35:16.254 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-26 16:35:16.254 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 16:35:16.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 16:35:17.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:17.844 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:35:17.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:17.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:17.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5200.6064ms +2017-12-26 16:35:17.849 +05:30 [Information] Request finished in 5210.126ms 200 application/json; charset=utf-8 +2017-12-26 16:35:17.850 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" completed keep alive response. +2017-12-26 16:35:18.065 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:18.065 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:35:18.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:18.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:18.067 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5389.0374ms +2017-12-26 16:35:18.069 +05:30 [Information] Request finished in 5421.6594ms 200 application/json; charset=utf-8 +2017-12-26 16:35:18.069 +05:30 [Debug] Connection id ""0HLAC9OD9ROHG"" completed keep alive response. +2017-12-26 16:35:18.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:18.392 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:35:18.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:18.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:18.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5733.718ms +2017-12-26 16:35:18.396 +05:30 [Information] Request finished in 5750.4589ms 200 application/json; charset=utf-8 +2017-12-26 16:35:18.397 +05:30 [Debug] Connection id ""0HLAC9OD9ROHF"" completed keep alive response. +2017-12-26 16:35:18.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:18.418 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:35:18.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:18.419 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:18.420 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5587.7986ms +2017-12-26 16:35:18.422 +05:30 [Information] Request finished in 5601.2202ms 200 application/json; charset=utf-8 +2017-12-26 16:35:18.422 +05:30 [Debug] Connection id ""0HLAC9OD9ROHI"" completed keep alive response. +2017-12-26 16:35:18.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:18.426 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:35:18.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:18.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:18.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5600.73ms +2017-12-26 16:35:18.433 +05:30 [Information] Request finished in 5612.4833ms 200 application/json; charset=utf-8 +2017-12-26 16:35:18.434 +05:30 [Debug] Connection id ""0HLAC9OD9ROHH"" completed keep alive response. +2017-12-26 16:35:19.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 16:35:21.574 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:21.575 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:35:21.575 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:21.576 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:21.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5321.8261ms +2017-12-26 16:35:21.580 +05:30 [Information] Request finished in 5329.4318ms 200 application/json; charset=utf-8 +2017-12-26 16:35:21.580 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" completed keep alive response. +2017-12-26 16:35:28.220 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=140174883350217 +2017-12-26 16:35:28.220 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=140174883350217&userId=500443&skip=0&count=10&type=undefined +2017-12-26 16:35:28.221 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 16:35:28.221 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 16:35:28.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 16:35:28.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 16:35:31.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["140174883350217", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 16:35:31.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["140174883350217"]) - ModelState is Valid +2017-12-26 16:35:31.482 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:31.483 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:35:31.483 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:31.484 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:31.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 3262.7137ms +2017-12-26 16:35:31.493 +05:30 [Information] Request finished in 3273.4619ms 200 application/json; charset=utf-8 +2017-12-26 16:35:31.494 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" completed keep alive response. +2017-12-26 16:35:31.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:35:31.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:35:31.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:35:31.844 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:35:31.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3623.1111ms +2017-12-26 16:35:31.847 +05:30 [Information] Request finished in 3627.7659ms 200 application/json; charset=utf-8 +2017-12-26 16:35:31.848 +05:30 [Debug] Connection id ""0HLAC9OD9ROHG"" completed keep alive response. +2017-12-26 16:36:43.719 +05:30 [Debug] Connection id ""0HLAC9OD9ROHF"" received FIN. +2017-12-26 16:36:43.719 +05:30 [Debug] Connection id ""0HLAC9OD9ROHI"" received FIN. +2017-12-26 16:36:43.720 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" received FIN. +2017-12-26 16:36:43.720 +05:30 [Debug] Connection id ""0HLAC9OD9ROHH"" received FIN. +2017-12-26 16:36:43.720 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" received FIN. +2017-12-26 16:36:43.720 +05:30 [Debug] Connection id ""0HLAC9OD9ROHG"" received FIN. +2017-12-26 16:36:43.721 +05:30 [Debug] Connection id ""0HLAC9OD9ROHJ"" started. +2017-12-26 16:36:43.721 +05:30 [Debug] Connection id ""0HLAC9OD9ROHI"" disconnecting. +2017-12-26 16:36:43.721 +05:30 [Debug] Connection id ""0HLAC9OD9ROHF"" disconnecting. +2017-12-26 16:36:43.721 +05:30 [Debug] Connection id ""0HLAC9OD9ROHI"" sending FIN. +2017-12-26 16:36:43.721 +05:30 [Debug] Connection id ""0HLAC9OD9ROHF"" sending FIN. +2017-12-26 16:36:43.721 +05:30 [Debug] Connection id ""0HLAC9OD9ROHH"" disconnecting. +2017-12-26 16:36:43.721 +05:30 [Debug] Connection id ""0HLAC9OD9ROHI"" sent FIN with status "0". +2017-12-26 16:36:43.722 +05:30 [Debug] Connection id ""0HLAC9OD9ROHF"" sent FIN with status "0". +2017-12-26 16:36:43.722 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" disconnecting. +2017-12-26 16:36:43.722 +05:30 [Debug] Connection id ""0HLAC9OD9ROHF"" stopped. +2017-12-26 16:36:43.723 +05:30 [Debug] Connection id ""0HLAC9OD9ROHH"" sending FIN. +2017-12-26 16:36:43.723 +05:30 [Debug] Connection id ""0HLAC9OD9ROHG"" disconnecting. +2017-12-26 16:36:43.723 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" sending FIN. +2017-12-26 16:36:43.723 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" disconnecting. +2017-12-26 16:36:43.723 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" sent FIN with status "0". +2017-12-26 16:36:43.724 +05:30 [Debug] Connection id ""0HLAC9OD9ROHD"" stopped. +2017-12-26 16:36:43.722 +05:30 [Debug] Connection id ""0HLAC9OD9ROHI"" stopped. +2017-12-26 16:36:43.724 +05:30 [Debug] Connection id ""0HLAC9OD9ROHG"" sending FIN. +2017-12-26 16:36:43.724 +05:30 [Debug] Connection id ""0HLAC9OD9ROHH"" sent FIN with status "0". +2017-12-26 16:36:43.724 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" sending FIN. +2017-12-26 16:36:43.724 +05:30 [Debug] Connection id ""0HLAC9OD9ROHH"" stopped. +2017-12-26 16:36:43.725 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" sent FIN with status "0". +2017-12-26 16:36:43.731 +05:30 [Debug] Connection id ""0HLAC9OD9ROHE"" stopped. +2017-12-26 16:36:43.731 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=140174883350217&userId=500443&skip=0&count=10&type=undefined +2017-12-26 16:36:43.732 +05:30 [Debug] Connection id ""0HLAC9OD9ROHG"" sent FIN with status "0". +2017-12-26 16:36:43.732 +05:30 [Debug] Connection id ""0HLAC9OD9ROHG"" stopped. +2017-12-26 16:36:43.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 16:36:43.732 +05:30 [Debug] Connection id ""0HLAC9OD9ROHK"" started. +2017-12-26 16:36:43.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 16:36:43.770 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=140174883350217 +2017-12-26 16:36:43.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 16:36:43.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 16:36:45.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["140174883350217", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 16:36:46.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:36:46.076 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:36:46.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:36:46.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:36:46.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 2343.9692ms +2017-12-26 16:36:46.081 +05:30 [Information] Request finished in 2356.9647ms 200 application/json; charset=utf-8 +2017-12-26 16:36:46.081 +05:30 [Debug] Connection id ""0HLAC9OD9ROHJ"" completed keep alive response. +2017-12-26 16:36:46.826 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["140174883350217"]) - ModelState is Valid +2017-12-26 16:36:47.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:36:47.337 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:36:47.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:36:47.339 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:36:47.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3567.9734ms +2017-12-26 16:36:47.344 +05:30 [Information] Request finished in 3604.6879ms 200 application/json; charset=utf-8 +2017-12-26 16:36:47.345 +05:30 [Debug] Connection id ""0HLAC9OD9ROHK"" completed keep alive response. +2017-12-26 16:37:58.911 +05:30 [Debug] Connection id ""0HLAC9OD9ROHJ"" received FIN. +2017-12-26 16:37:58.911 +05:30 [Debug] Connection id ""0HLAC9OD9ROHK"" received FIN. +2017-12-26 16:37:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHK"" disconnecting. +2017-12-26 16:37:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHK"" sending FIN. +2017-12-26 16:37:58.911 +05:30 [Debug] Connection id ""0HLAC9OD9ROHJ"" disconnecting. +2017-12-26 16:37:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHK"" sent FIN with status "0". +2017-12-26 16:37:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHK"" stopped. +2017-12-26 16:37:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHJ"" sending FIN. +2017-12-26 16:37:58.913 +05:30 [Debug] Connection id ""0HLAC9OD9ROHJ"" sent FIN with status "0". +2017-12-26 16:37:58.913 +05:30 [Debug] Connection id ""0HLAC9OD9ROHJ"" stopped. +2017-12-26 16:48:17.105 +05:30 [Debug] Connection id ""0HLAC9OD9ROHL"" started. +2017-12-26 16:48:17.108 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=140174883350217&daysCount=90 +2017-12-26 16:48:17.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 16:48:17.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 16:48:20.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["140174883350217", "90"]) - ModelState is Valid +2017-12-26 16:48:21.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:21.999 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:21.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:22.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:22.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 4899.4582ms +2017-12-26 16:48:22.014 +05:30 [Information] Request finished in 4906.1844ms 200 application/json; charset=utf-8 +2017-12-26 16:48:22.015 +05:30 [Debug] Connection id ""0HLAC9OD9ROHL"" completed keep alive response. +2017-12-26 16:48:22.031 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=500443 +2017-12-26 16:48:22.031 +05:30 [Debug] Connection id ""0HLAC9OD9ROHM"" started. +2017-12-26 16:48:22.032 +05:30 [Debug] Connection id ""0HLAC9OD9ROHN"" started. +2017-12-26 16:48:22.032 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-26 16:48:22.032 +05:30 [Debug] Connection id ""0HLAC9OD9ROHO"" started. +2017-12-26 16:48:22.034 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=500443 +2017-12-26 16:48:22.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-26 16:48:22.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-26 16:48:22.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-26 16:48:22.046 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500443&days=90 +2017-12-26 16:48:22.048 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 16:48:22.051 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 16:48:22.067 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=140174883350217&daysCount=90 +2017-12-26 16:48:22.069 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 16:48:22.073 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 16:48:24.166 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500443", "90"]) - ModelState is Valid +2017-12-26 16:48:25.086 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:48:25.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:48:25.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["140174883350217", "90"]) - ModelState is Valid +2017-12-26 16:48:29.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:29.864 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:29.865 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:29.866 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:29.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 7811.6532ms +2017-12-26 16:48:29.888 +05:30 [Information] Request finished in 7839.0399ms 200 application/json; charset=utf-8 +2017-12-26 16:48:29.889 +05:30 [Debug] Connection id ""0HLAC9OD9ROHO"" completed keep alive response. +2017-12-26 16:48:29.890 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=140174883350217&daysCount=90 +2017-12-26 16:48:29.891 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 16:48:29.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 16:48:30.430 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:30.430 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:30.431 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:30.431 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:30.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 8394.6293ms +2017-12-26 16:48:30.435 +05:30 [Information] Request finished in 8402.6145ms 200 application/json; charset=utf-8 +2017-12-26 16:48:30.435 +05:30 [Debug] Connection id ""0HLAC9OD9ROHM"" completed keep alive response. +2017-12-26 16:48:31.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:31.154 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:31.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:31.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:31.176 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 9110.0194ms +2017-12-26 16:48:31.215 +05:30 [Information] Request finished in 9146.7307ms 200 application/json; charset=utf-8 +2017-12-26 16:48:31.216 +05:30 [Debug] Connection id ""0HLAC9OD9ROHN"" completed keep alive response. +2017-12-26 16:48:31.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["140174883350217", "90"]) - ModelState is Valid +2017-12-26 16:48:32.402 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:32.402 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:32.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:32.405 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:32.408 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2513.8369ms +2017-12-26 16:48:32.415 +05:30 [Information] Request finished in 2525.0571ms 200 application/json; charset=utf-8 +2017-12-26 16:48:32.416 +05:30 [Debug] Connection id ""0HLAC9OD9ROHO"" completed keep alive response. +2017-12-26 16:48:32.621 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:32.621 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:32.622 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:32.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:32.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 10595.2006ms +2017-12-26 16:48:32.637 +05:30 [Information] Request finished in 10606.335ms 200 application/json; charset=utf-8 +2017-12-26 16:48:32.637 +05:30 [Debug] Connection id ""0HLAC9OD9ROHL"" completed keep alive response. +2017-12-26 16:48:47.239 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=140174883350217&daysCount=90 +2017-12-26 16:48:47.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 16:48:47.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 16:48:50.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["140174883350217", "90"]) - ModelState is Valid +2017-12-26 16:48:50.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:50.523 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:50.524 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:50.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:50.526 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3285.4512ms +2017-12-26 16:48:50.530 +05:30 [Information] Request finished in 3295.3693ms 200 application/json; charset=utf-8 +2017-12-26 16:48:50.530 +05:30 [Debug] Connection id ""0HLAC9OD9ROHM"" completed keep alive response. +2017-12-26 16:48:50.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500443&days=90 +2017-12-26 16:48:50.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=140174883350217&daysCount=90 +2017-12-26 16:48:50.694 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 16:48:50.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 16:48:50.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 16:48:50.697 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 16:48:53.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["140174883350217", "90"]) - ModelState is Valid +2017-12-26 16:48:53.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500443", "90"]) - ModelState is Valid +2017-12-26 16:48:54.246 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:54.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:54.247 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:54.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:54.255 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3556.3062ms +2017-12-26 16:48:54.257 +05:30 [Information] Request finished in 3583.4171ms 200 application/json; charset=utf-8 +2017-12-26 16:48:54.258 +05:30 [Debug] Connection id ""0HLAC9OD9ROHN"" completed keep alive response. +2017-12-26 16:48:54.259 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=140174883350217&daysCount=90 +2017-12-26 16:48:54.259 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 16:48:54.260 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 16:48:54.557 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:54.557 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:54.557 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:54.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:54.627 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 3865.7602ms +2017-12-26 16:48:54.692 +05:30 [Information] Request finished in 4015.1653ms 200 application/json; charset=utf-8 +2017-12-26 16:48:54.693 +05:30 [Debug] Connection id ""0HLAC9OD9ROHO"" completed keep alive response. +2017-12-26 16:48:57.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["140174883350217", "90"]) - ModelState is Valid +2017-12-26 16:48:57.831 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:48:57.831 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:48:57.831 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:48:57.833 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:48:57.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 3573.9189ms +2017-12-26 16:48:57.850 +05:30 [Information] Request finished in 3590.8515ms 200 application/json; charset=utf-8 +2017-12-26 16:48:57.850 +05:30 [Debug] Connection id ""0HLAC9OD9ROHL"" completed keep alive response. +2017-12-26 16:50:48.483 +05:30 [Debug] Connection id ""0HLAC9OD9ROHM"" received FIN. +2017-12-26 16:50:48.484 +05:30 [Debug] Connection id ""0HLAC9OD9ROHM"" disconnecting. +2017-12-26 16:50:48.485 +05:30 [Debug] Connection id ""0HLAC9OD9ROHM"" sending FIN. +2017-12-26 16:50:48.485 +05:30 [Debug] Connection id ""0HLAC9OD9ROHM"" sent FIN with status "0". +2017-12-26 16:50:48.486 +05:30 [Debug] Connection id ""0HLAC9OD9ROHM"" stopped. +2017-12-26 16:50:48.485 +05:30 [Debug] Connection id ""0HLAC9OD9ROHN"" received FIN. +2017-12-26 16:50:48.486 +05:30 [Debug] Connection id ""0HLAC9OD9ROHO"" received FIN. +2017-12-26 16:50:48.487 +05:30 [Debug] Connection id ""0HLAC9OD9ROHL"" received FIN. +2017-12-26 16:50:48.488 +05:30 [Debug] Connection id ""0HLAC9OD9ROHO"" disconnecting. +2017-12-26 16:50:48.488 +05:30 [Debug] Connection id ""0HLAC9OD9ROHN"" disconnecting. +2017-12-26 16:50:48.513 +05:30 [Debug] Connection id ""0HLAC9OD9ROHN"" sending FIN. +2017-12-26 16:50:48.488 +05:30 [Debug] Connection id ""0HLAC9OD9ROHL"" disconnecting. +2017-12-26 16:50:48.488 +05:30 [Debug] Connection id ""0HLAC9OD9ROHO"" sending FIN. +2017-12-26 16:50:48.513 +05:30 [Debug] Connection id ""0HLAC9OD9ROHN"" sent FIN with status "0". +2017-12-26 16:50:48.516 +05:30 [Debug] Connection id ""0HLAC9OD9ROHO"" sent FIN with status "0". +2017-12-26 16:50:48.516 +05:30 [Debug] Connection id ""0HLAC9OD9ROHO"" stopped. +2017-12-26 16:50:48.516 +05:30 [Debug] Connection id ""0HLAC9OD9ROHN"" stopped. +2017-12-26 16:50:48.517 +05:30 [Debug] Connection id ""0HLAC9OD9ROHL"" sending FIN. +2017-12-26 16:50:48.518 +05:30 [Debug] Connection id ""0HLAC9OD9ROHL"" sent FIN with status "0". +2017-12-26 16:50:48.519 +05:30 [Debug] Connection id ""0HLAC9OD9ROHL"" stopped. +2017-12-26 16:58:36.505 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" started. +2017-12-26 16:58:36.506 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 16:58:36.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 16:58:36.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 16:58:39.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 16:58:41.597 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:58:41.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:58:41.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:58:41.602 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5091.8677ms +2017-12-26 16:58:41.607 +05:30 [Information] Request finished in 5101.4237ms 200 application/json; charset=utf-8 +2017-12-26 16:58:41.608 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" completed keep alive response. +2017-12-26 16:58:41.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-26 16:58:41.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 16:58:41.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 16:58:43.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-26 16:58:45.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:58:45.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:58:45.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:58:45.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3780.3773ms +2017-12-26 16:58:45.411 +05:30 [Information] Request finished in 3793.8548ms 200 application/json; charset=utf-8 +2017-12-26 16:58:45.411 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" completed keep alive response. +2017-12-26 16:58:46.398 +05:30 [Debug] Connection id ""0HLAC9OD9ROHQ"" started. +2017-12-26 16:58:46.398 +05:30 [Debug] Connection id ""0HLAC9OD9ROHR"" started. +2017-12-26 16:58:46.399 +05:30 [Debug] Connection id ""0HLAC9OD9ROHS"" started. +2017-12-26 16:58:46.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 16:58:46.398 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 16:58:46.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 16:58:46.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 16:58:46.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 16:58:46.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 16:58:46.409 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 16:58:46.410 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 16:58:46.411 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 16:58:46.412 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 16:58:46.412 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 16:58:46.413 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 16:58:46.528 +05:30 [Debug] Connection id ""0HLAC9OD9ROHT"" started. +2017-12-26 16:58:46.530 +05:30 [Debug] Connection id ""0HLAC9OD9ROHU"" started. +2017-12-26 16:58:47.415 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 16:58:47.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 16:58:47.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 16:58:48.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 16:58:48.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 16:58:48.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 16:58:51.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 16:58:51.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:58:51.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:58:51.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 16:58:51.615 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:58:51.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 16:58:52.684 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:58:52.684 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:58:52.684 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:58:52.685 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:58:52.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5270.0896ms +2017-12-26 16:58:52.690 +05:30 [Information] Request finished in 5286.202ms 200 application/json; charset=utf-8 +2017-12-26 16:58:52.690 +05:30 [Debug] Connection id ""0HLAC9OD9ROHT"" completed keep alive response. +2017-12-26 16:58:52.698 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=140174883350217&daysCount=90 +2017-12-26 16:58:52.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-26 16:58:52.704 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-26 16:58:53.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:58:53.561 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:58:53.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:58:53.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:58:53.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7164.5416ms +2017-12-26 16:58:53.572 +05:30 [Information] Request finished in 7174.6546ms 200 application/json; charset=utf-8 +2017-12-26 16:58:53.572 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" completed keep alive response. +2017-12-26 16:58:53.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:58:53.699 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:58:53.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:58:53.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:58:53.702 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7290.2749ms +2017-12-26 16:58:53.704 +05:30 [Information] Request finished in 7300.5777ms 200 application/json; charset=utf-8 +2017-12-26 16:58:53.705 +05:30 [Debug] Connection id ""0HLAC9OD9ROHS"" completed keep alive response. +2017-12-26 16:58:53.740 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:58:53.741 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:58:53.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:58:53.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:58:53.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7329.4088ms +2017-12-26 16:58:53.746 +05:30 [Information] Request finished in 7346.3289ms 200 application/json; charset=utf-8 +2017-12-26 16:58:53.747 +05:30 [Debug] Connection id ""0HLAC9OD9ROHR"" completed keep alive response. +2017-12-26 16:58:54.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:58:54.142 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:58:54.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:58:54.144 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:58:54.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7744.3206ms +2017-12-26 16:58:54.157 +05:30 [Information] Request finished in 7755.5694ms 200 application/json; charset=utf-8 +2017-12-26 16:58:54.158 +05:30 [Debug] Connection id ""0HLAC9OD9ROHQ"" completed keep alive response. +2017-12-26 16:58:54.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:58:54.176 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:58:54.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:58:54.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:58:54.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5776.8753ms +2017-12-26 16:58:54.184 +05:30 [Information] Request finished in 5783.9004ms 200 application/json; charset=utf-8 +2017-12-26 16:58:54.185 +05:30 [Debug] Connection id ""0HLAC9OD9ROHU"" completed keep alive response. +2017-12-26 16:58:55.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["140174883350217", "90"]) - ModelState is Valid +2017-12-26 16:58:56.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:58:56.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:58:56.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:58:56.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:58:56.022 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3315.349ms +2017-12-26 16:58:56.025 +05:30 [Information] Request finished in 3327.9778ms 200 application/json; charset=utf-8 +2017-12-26 16:58:56.025 +05:30 [Debug] Connection id ""0HLAC9OD9ROHT"" completed keep alive response. +2017-12-26 16:58:56.209 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=500443&days=90 +2017-12-26 16:58:56.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-26 16:58:56.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=140174883350217&daysCount=90 +2017-12-26 16:58:56.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-26 16:58:56.211 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 16:58:56.215 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 16:58:59.270 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["500443", "90"]) - ModelState is Valid +2017-12-26 16:58:59.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["140174883350217", "90"]) - ModelState is Valid +2017-12-26 16:59:01.850 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:59:01.851 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:59:01.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:59:01.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:59:01.862 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 5643.7822ms +2017-12-26 16:59:01.869 +05:30 [Information] Request finished in 5660.8871ms 200 application/json; charset=utf-8 +2017-12-26 16:59:01.869 +05:30 [Debug] Connection id ""0HLAC9OD9ROHS"" completed keep alive response. +2017-12-26 16:59:01.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:59:01.993 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:59:01.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:59:01.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:59:02.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 5784.9727ms +2017-12-26 16:59:02.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=140174883350217&daysCount=90 +2017-12-26 16:59:02.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-26 16:59:02.018 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-26 16:59:02.018 +05:30 [Information] Request finished in 5802.549ms 200 application/json; charset=utf-8 +2017-12-26 16:59:02.018 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" completed keep alive response. +2017-12-26 16:59:04.163 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["140174883350217", "90"]) - ModelState is Valid +2017-12-26 16:59:04.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 16:59:04.553 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 16:59:04.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 16:59:04.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 16:59:04.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 2548.1311ms +2017-12-26 16:59:04.582 +05:30 [Information] Request finished in 2575.1201ms 200 application/json; charset=utf-8 +2017-12-26 16:59:04.583 +05:30 [Debug] Connection id ""0HLAC9OD9ROHR"" completed keep alive response. +2017-12-26 16:59:58.910 +05:30 [Debug] Connection id ""0HLAC9OD9ROHQ"" received FIN. +2017-12-26 16:59:58.910 +05:30 [Debug] Connection id ""0HLAC9OD9ROHT"" received FIN. +2017-12-26 16:59:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHQ"" disconnecting. +2017-12-26 16:59:58.910 +05:30 [Debug] Connection id ""0HLAC9OD9ROHU"" received FIN. +2017-12-26 16:59:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHT"" disconnecting. +2017-12-26 16:59:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHQ"" sending FIN. +2017-12-26 16:59:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHU"" disconnecting. +2017-12-26 16:59:58.913 +05:30 [Debug] Connection id ""0HLAC9OD9ROHQ"" sent FIN with status "0". +2017-12-26 16:59:58.912 +05:30 [Debug] Connection id ""0HLAC9OD9ROHT"" sending FIN. +2017-12-26 16:59:58.913 +05:30 [Debug] Connection id ""0HLAC9OD9ROHQ"" stopped. +2017-12-26 16:59:58.913 +05:30 [Debug] Connection id ""0HLAC9OD9ROHT"" sent FIN with status "0". +2017-12-26 16:59:58.913 +05:30 [Debug] Connection id ""0HLAC9OD9ROHU"" sending FIN. +2017-12-26 16:59:58.913 +05:30 [Debug] Connection id ""0HLAC9OD9ROHT"" stopped. +2017-12-26 16:59:58.914 +05:30 [Debug] Connection id ""0HLAC9OD9ROHU"" sent FIN with status "0". +2017-12-26 16:59:58.914 +05:30 [Debug] Connection id ""0HLAC9OD9ROHU"" stopped. +2017-12-26 17:01:48.484 +05:30 [Debug] Connection id ""0HLAC9OD9ROHS"" received FIN. +2017-12-26 17:01:48.484 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" received FIN. +2017-12-26 17:01:48.484 +05:30 [Debug] Connection id ""0HLAC9OD9ROHS"" disconnecting. +2017-12-26 17:01:48.484 +05:30 [Debug] Connection id ""0HLAC9OD9ROHR"" received FIN. +2017-12-26 17:01:48.484 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" disconnecting. +2017-12-26 17:01:48.485 +05:30 [Debug] Connection id ""0HLAC9OD9ROHR"" disconnecting. +2017-12-26 17:01:48.485 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" sending FIN. +2017-12-26 17:01:48.485 +05:30 [Debug] Connection id ""0HLAC9OD9ROHR"" sending FIN. +2017-12-26 17:01:48.486 +05:30 [Debug] Connection id ""0HLAC9OD9ROHR"" sent FIN with status "0". +2017-12-26 17:01:48.486 +05:30 [Debug] Connection id ""0HLAC9OD9ROHR"" stopped. +2017-12-26 17:01:48.485 +05:30 [Debug] Connection id ""0HLAC9OD9ROHS"" sending FIN. +2017-12-26 17:01:48.486 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" sent FIN with status "0". +2017-12-26 17:01:48.486 +05:30 [Debug] Connection id ""0HLAC9OD9ROHS"" sent FIN with status "0". +2017-12-26 17:01:48.487 +05:30 [Debug] Connection id ""0HLAC9OD9ROHS"" stopped. +2017-12-26 17:01:48.486 +05:30 [Debug] Connection id ""0HLAC9OD9ROHP"" stopped. +2017-12-26 17:24:27.429 +05:30 [Debug] Hosting starting +2017-12-26 17:24:27.771 +05:30 [Debug] Hosting started +2017-12-26 17:24:28.023 +05:30 [Debug] Connection id ""0HLACATLCA9FH"" started. +2017-12-26 17:24:28.022 +05:30 [Debug] Connection id ""0HLACATLCA9FI"" started. +2017-12-26 17:24:28.430 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-26 17:24:28.431 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-26 17:24:28.686 +05:30 [Information] Request finished in 315.9483ms 200 +2017-12-26 17:24:28.795 +05:30 [Debug] Connection id ""0HLACATLCA9FH"" completed keep alive response. +2017-12-26 17:24:31.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-26 17:24:31.177 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"5504a84c-4af6-4726-9ea3-bcacd79a809c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-26 17:24:31.455 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-26 17:24:31.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-26 17:24:31.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-26 17:24:31.891 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 17:24:31.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:24:31.914 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:24:32.177 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 17:24:32.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 17:24:32.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 17:24:32.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 985.1279ms +2017-12-26 17:24:32.641 +05:30 [Information] Request finished in 4363.5021ms 200 application/json; charset=utf-8 +2017-12-26 17:24:32.644 +05:30 [Debug] Connection id ""0HLACATLCA9FI"" completed keep alive response. +2017-12-26 17:24:35.982 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 17:24:42.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:24:42.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:24:42.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:24:42.439 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10255.8983ms +2017-12-26 17:24:42.442 +05:30 [Information] Request finished in 10265.1586ms 200 application/json; charset=utf-8 +2017-12-26 17:24:42.443 +05:30 [Debug] Connection id ""0HLACATLCA9FH"" completed keep alive response. +2017-12-26 17:24:54.555 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 17:24:54.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 17:24:54.559 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 17:24:57.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 17:24:58.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:24:58.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:24:58.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:24:58.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3571.0704ms +2017-12-26 17:24:58.132 +05:30 [Information] Request finished in 3576.886ms 200 application/json; charset=utf-8 +2017-12-26 17:24:58.132 +05:30 [Debug] Connection id ""0HLACATLCA9FI"" completed keep alive response. +2017-12-26 17:24:58.185 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 17:24:58.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 17:24:58.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 17:25:01.220 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 17:25:01.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:25:01.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:25:01.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:25:01.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3545.4542ms +2017-12-26 17:25:01.737 +05:30 [Information] Request finished in 3551.1317ms 200 application/json; charset=utf-8 +2017-12-26 17:25:01.738 +05:30 [Debug] Connection id ""0HLACATLCA9FH"" completed keep alive response. +2017-12-26 17:25:01.770 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 17:25:01.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 17:25:01.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 17:25:03.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 17:25:04.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:25:04.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:25:04.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:25:04.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2622.8327ms +2017-12-26 17:25:04.397 +05:30 [Information] Request finished in 2628.3513ms 200 application/json; charset=utf-8 +2017-12-26 17:25:04.397 +05:30 [Debug] Connection id ""0HLACATLCA9FI"" completed keep alive response. +2017-12-26 17:26:17.991 +05:30 [Debug] Connection id ""0HLACATLCA9FH"" received FIN. +2017-12-26 17:26:17.991 +05:30 [Debug] Connection id ""0HLACATLCA9FI"" received FIN. +2017-12-26 17:26:17.993 +05:30 [Debug] Connection id ""0HLACATLCA9FI"" disconnecting. +2017-12-26 17:26:17.993 +05:30 [Debug] Connection id ""0HLACATLCA9FH"" disconnecting. +2017-12-26 17:26:17.995 +05:30 [Debug] Connection id ""0HLACATLCA9FI"" sending FIN. +2017-12-26 17:26:17.995 +05:30 [Debug] Connection id ""0HLACATLCA9FH"" sending FIN. +2017-12-26 17:26:18.007 +05:30 [Debug] Connection id ""0HLACATLCA9FI"" sent FIN with status "0". +2017-12-26 17:26:18.007 +05:30 [Debug] Connection id ""0HLACATLCA9FH"" sent FIN with status "0". +2017-12-26 17:26:18.012 +05:30 [Debug] Connection id ""0HLACATLCA9FH"" stopped. +2017-12-26 17:26:18.011 +05:30 [Debug] Connection id ""0HLACATLCA9FI"" stopped. +2017-12-26 17:34:35.119 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" started. +2017-12-26 17:34:35.147 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 17:34:35.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 17:34:35.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 17:34:38.180 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 17:34:40.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:34:40.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:34:40.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:34:40.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4923.2721ms +2017-12-26 17:34:40.074 +05:30 [Information] Request finished in 4952.7214ms 200 application/json; charset=utf-8 +2017-12-26 17:34:40.075 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" completed keep alive response. +2017-12-26 17:34:43.002 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 17:34:43.002 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 17:34:43.002 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 17:34:46.046 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 17:34:46.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:34:46.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:34:46.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:34:46.553 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3546.9944ms +2017-12-26 17:34:46.559 +05:30 [Information] Request finished in 3555.3082ms 200 application/json; charset=utf-8 +2017-12-26 17:34:46.559 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" completed keep alive response. +2017-12-26 17:34:46.644 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-12-26 17:34:46.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-12-26 17:34:46.646 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-12-26 17:34:49.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-12-26 17:34:51.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:34:51.858 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:34:51.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:34:52.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5370.5287ms +2017-12-26 17:34:52.021 +05:30 [Information] Request finished in 5423.7136ms 200 application/json; charset=utf-8 +2017-12-26 17:34:52.021 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" completed keep alive response. +2017-12-26 17:34:52.332 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 17:34:52.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 17:34:52.332 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 17:34:55.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 17:34:55.921 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:34:55.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:34:55.922 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:34:55.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3589.0678ms +2017-12-26 17:34:55.928 +05:30 [Information] Request finished in 3594.6504ms 200 application/json; charset=utf-8 +2017-12-26 17:34:55.928 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" completed keep alive response. +2017-12-26 17:34:55.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500208&groupId= +2017-12-26 17:34:55.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 17:34:55.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 17:34:59.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500208", ""]) - ModelState is Valid +2017-12-26 17:35:00.709 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:35:00.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:35:00.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:35:00.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4772.687ms +2017-12-26 17:35:00.759 +05:30 [Information] Request finished in 4780.9327ms 200 application/json; charset=utf-8 +2017-12-26 17:35:00.760 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" completed keep alive response. +2017-12-26 17:35:02.711 +05:30 [Debug] Connection id ""0HLACATLCA9FK"" started. +2017-12-26 17:35:02.712 +05:30 [Debug] Connection id ""0HLACATLCA9FL"" started. +2017-12-26 17:35:02.712 +05:30 [Debug] Connection id ""0HLACATLCA9FM"" started. +2017-12-26 17:35:02.712 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500208 +2017-12-26 17:35:02.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 17:35:02.714 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152399 +2017-12-26 17:35:02.714 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500208 +2017-12-26 17:35:02.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 17:35:02.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 17:35:02.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 17:35:02.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500208 +2017-12-26 17:35:02.716 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 17:35:02.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 17:35:02.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 17:35:02.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 17:35:02.892 +05:30 [Debug] Connection id ""0HLACATLCA9FN"" started. +2017-12-26 17:35:02.892 +05:30 [Debug] Connection id ""0HLACATLCA9FO"" started. +2017-12-26 17:35:02.900 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500208 +2017-12-26 17:35:02.900 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152399&userId=500208 +2017-12-26 17:35:02.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 17:35:02.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 17:35:02.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 17:35:02.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 17:35:05.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 17:35:05.933 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 17:35:05.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 17:35:05.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 17:35:06.062 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 17:35:06.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 17:35:07.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:35:07.045 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 17:35:07.045 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:35:07.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:35:07.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4319.5047ms +2017-12-26 17:35:07.050 +05:30 [Information] Request finished in 4337.3065ms 200 application/json; charset=utf-8 +2017-12-26 17:35:07.051 +05:30 [Debug] Connection id ""0HLACATLCA9FK"" completed keep alive response. +2017-12-26 17:35:07.054 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152399 +2017-12-26 17:35:07.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 17:35:07.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 17:35:07.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:35:07.966 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 17:35:07.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:35:07.967 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:35:07.972 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5241.5985ms +2017-12-26 17:35:07.974 +05:30 [Information] Request finished in 5262.0895ms 200 application/json; charset=utf-8 +2017-12-26 17:35:07.975 +05:30 [Debug] Connection id ""0HLACATLCA9FM"" completed keep alive response. +2017-12-26 17:35:08.022 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:35:08.023 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 17:35:08.023 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:35:08.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:35:08.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5320.6405ms +2017-12-26 17:35:08.042 +05:30 [Information] Request finished in 5329.726ms 200 application/json; charset=utf-8 +2017-12-26 17:35:08.042 +05:30 [Debug] Connection id ""0HLACATLCA9FL"" completed keep alive response. +2017-12-26 17:35:08.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:35:08.698 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 17:35:08.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:35:08.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:35:08.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5796.6271ms +2017-12-26 17:35:08.702 +05:30 [Information] Request finished in 5805.5509ms 200 application/json; charset=utf-8 +2017-12-26 17:35:08.702 +05:30 [Debug] Connection id ""0HLACATLCA9FN"" completed keep alive response. +2017-12-26 17:35:08.792 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:35:08.793 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 17:35:08.793 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:35:08.794 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:35:08.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5892.0195ms +2017-12-26 17:35:08.806 +05:30 [Information] Request finished in 5902.9399ms 200 application/json; charset=utf-8 +2017-12-26 17:35:08.806 +05:30 [Debug] Connection id ""0HLACATLCA9FO"" completed keep alive response. +2017-12-26 17:35:10.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152399"]) - ModelState is Valid +2017-12-26 17:35:12.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:35:12.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 17:35:12.520 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:35:12.521 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:35:12.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5539.6151ms +2017-12-26 17:35:12.600 +05:30 [Information] Request finished in 5546.3509ms 200 application/json; charset=utf-8 +2017-12-26 17:35:12.600 +05:30 [Debug] Connection id ""0HLACATLCA9FK"" completed keep alive response. +2017-12-26 17:35:13.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:35:13.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 17:35:13.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:35:13.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:35:13.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 10676.7251ms +2017-12-26 17:35:13.396 +05:30 [Information] Request finished in 10684.7715ms 200 application/json; charset=utf-8 +2017-12-26 17:35:13.397 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" completed keep alive response. +2017-12-26 17:35:14.957 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=500208&skip=0&count=10 +2017-12-26 17:35:14.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-26 17:35:14.959 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-26 17:35:18.022 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["500208", "0", "10"]) - ModelState is Valid +2017-12-26 17:35:23.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 17:35:23.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 17:35:23.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 17:35:23.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 17:35:23.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 8921.6567ms +2017-12-26 17:35:23.887 +05:30 [Information] Request finished in 8931.0339ms 200 application/json; charset=utf-8 +2017-12-26 17:35:23.888 +05:30 [Debug] Connection id ""0HLACATLCA9FM"" completed keep alive response. +2017-12-26 17:35:23.895 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=500208 +2017-12-26 17:35:23.896 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-26 17:35:23.898 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-26 17:35:26.933 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["500208"]) - ModelState is Valid +2017-12-26 17:35:38.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-26 17:35:38.264 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-26 17:35:38.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 14365.0941ms +2017-12-26 17:35:38.269 +05:30 [Information] Request finished in 14373.4615ms 200 +2017-12-26 17:35:38.269 +05:30 [Debug] Connection id ""0HLACATLCA9FL"" completed keep alive response. +2017-12-26 17:37:17.989 +05:30 [Debug] Connection id ""0HLACATLCA9FN"" received FIN. +2017-12-26 17:37:17.989 +05:30 [Debug] Connection id ""0HLACATLCA9FO"" received FIN. +2017-12-26 17:37:17.990 +05:30 [Debug] Connection id ""0HLACATLCA9FN"" disconnecting. +2017-12-26 17:37:17.990 +05:30 [Debug] Connection id ""0HLACATLCA9FK"" received FIN. +2017-12-26 17:37:17.990 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" received FIN. +2017-12-26 17:37:17.991 +05:30 [Debug] Connection id ""0HLACATLCA9FM"" received FIN. +2017-12-26 17:37:17.991 +05:30 [Debug] Connection id ""0HLACATLCA9FL"" received FIN. +2017-12-26 17:37:17.992 +05:30 [Debug] Connection id ""0HLACATLCA9FN"" sending FIN. +2017-12-26 17:37:17.992 +05:30 [Debug] Connection id ""0HLACATLCA9FO"" disconnecting. +2017-12-26 17:37:17.995 +05:30 [Debug] Connection id ""0HLACATLCA9FN"" sent FIN with status "0". +2017-12-26 17:37:17.995 +05:30 [Debug] Connection id ""0HLACATLCA9FO"" sending FIN. +2017-12-26 17:37:17.996 +05:30 [Debug] Connection id ""0HLACATLCA9FN"" stopped. +2017-12-26 17:37:17.996 +05:30 [Debug] Connection id ""0HLACATLCA9FO"" sent FIN with status "0". +2017-12-26 17:37:18.019 +05:30 [Debug] Connection id ""0HLACATLCA9FO"" stopped. +2017-12-26 17:37:18.019 +05:30 [Debug] Connection id ""0HLACATLCA9FM"" disconnecting. +2017-12-26 17:37:18.019 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" disconnecting. +2017-12-26 17:37:18.019 +05:30 [Debug] Connection id ""0HLACATLCA9FL"" disconnecting. +2017-12-26 17:37:18.020 +05:30 [Debug] Connection id ""0HLACATLCA9FM"" sending FIN. +2017-12-26 17:37:17.995 +05:30 [Debug] Connection id ""0HLACATLCA9FK"" disconnecting. +2017-12-26 17:37:18.021 +05:30 [Debug] Connection id ""0HLACATLCA9FM"" sent FIN with status "0". +2017-12-26 17:37:18.020 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" sending FIN. +2017-12-26 17:37:18.021 +05:30 [Debug] Connection id ""0HLACATLCA9FM"" stopped. +2017-12-26 17:37:18.022 +05:30 [Debug] Connection id ""0HLACATLCA9FK"" sending FIN. +2017-12-26 17:37:18.022 +05:30 [Debug] Connection id ""0HLACATLCA9FL"" sending FIN. +2017-12-26 17:37:18.022 +05:30 [Debug] Connection id ""0HLACATLCA9FK"" sent FIN with status "0". +2017-12-26 17:37:18.023 +05:30 [Debug] Connection id ""0HLACATLCA9FL"" sent FIN with status "0". +2017-12-26 17:37:18.023 +05:30 [Debug] Connection id ""0HLACATLCA9FL"" stopped. +2017-12-26 17:37:18.023 +05:30 [Debug] Connection id ""0HLACATLCA9FK"" stopped. +2017-12-26 17:37:18.024 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" sent FIN with status "0". +2017-12-26 17:37:18.024 +05:30 [Debug] Connection id ""0HLACATLCA9FJ"" stopped. +2017-12-26 18:37:18.753 +05:30 [Debug] Hosting starting +2017-12-26 18:37:19.575 +05:30 [Debug] Hosting started +2017-12-26 18:37:19.943 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" started. +2017-12-26 18:37:19.946 +05:30 [Debug] Connection id ""0HLACC6CA83T8"" started. +2017-12-26 18:37:20.231 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-26 18:37:20.231 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-26 18:37:20.326 +05:30 [Information] Request finished in 151.9855ms 200 +2017-12-26 18:37:20.383 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:37:22.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-26 18:37:22.333 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d03440b3-77fd-41e6-8f71-2497ac07b050"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-26 18:37:22.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-26 18:37:23.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-26 18:37:23.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-26 18:37:23.087 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:37:23.093 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:37:23.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:37:23.441 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 18:37:23.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 18:37:23.444 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 18:37:23.592 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 761.1638ms +2017-12-26 18:37:23.724 +05:30 [Information] Request finished in 3566.6255ms 200 application/json; charset=utf-8 +2017-12-26 18:37:23.727 +05:30 [Debug] Connection id ""0HLACC6CA83T8"" completed keep alive response. +2017-12-26 18:37:27.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 18:37:35.945 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:37:35.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:37:35.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:37:35.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12541.8646ms +2017-12-26 18:37:35.993 +05:30 [Information] Request finished in 12550.9877ms 200 application/json; charset=utf-8 +2017-12-26 18:37:35.993 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:37:55.536 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 18:37:55.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 18:37:55.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 18:37:57.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 18:37:58.293 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:37:58.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:37:58.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:37:58.295 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2756.0586ms +2017-12-26 18:37:58.297 +05:30 [Information] Request finished in 2761.4702ms 200 application/json; charset=utf-8 +2017-12-26 18:37:58.298 +05:30 [Debug] Connection id ""0HLACC6CA83T8"" completed keep alive response. +2017-12-26 18:37:58.407 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 18:37:58.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 18:37:58.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 18:38:01.515 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 18:38:02.055 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:38:02.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:38:02.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:38:02.059 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3649.0821ms +2017-12-26 18:38:02.064 +05:30 [Information] Request finished in 3654.6899ms 200 application/json; charset=utf-8 +2017-12-26 18:38:02.065 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:38:02.131 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 18:38:02.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 18:38:02.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 18:38:05.175 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 18:38:05.720 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:38:05.720 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:38:05.721 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:38:05.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3587.9504ms +2017-12-26 18:38:05.725 +05:30 [Information] Request finished in 3592.6721ms 200 application/json; charset=utf-8 +2017-12-26 18:38:05.725 +05:30 [Debug] Connection id ""0HLACC6CA83T8"" completed keep alive response. +2017-12-26 18:39:01.178 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 18:39:01.179 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 18:39:01.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 18:39:04.248 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 18:39:04.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:04.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:04.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:04.792 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3611.4433ms +2017-12-26 18:39:04.795 +05:30 [Information] Request finished in 3616.147ms 200 application/json; charset=utf-8 +2017-12-26 18:39:04.795 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:39:09.947 +05:30 [Debug] Connection id ""0HLACC6CA83T8"" received FIN. +2017-12-26 18:39:09.948 +05:30 [Debug] Connection id ""0HLACC6CA83T8"" disconnecting. +2017-12-26 18:39:09.949 +05:30 [Debug] Connection id ""0HLACC6CA83T8"" sending FIN. +2017-12-26 18:39:09.956 +05:30 [Debug] Connection id ""0HLACC6CA83T8"" sent FIN with status "0". +2017-12-26 18:39:09.958 +05:30 [Debug] Connection id ""0HLACC6CA83T8"" stopped. +2017-12-26 18:39:25.861 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 201 +2017-12-26 18:39:25.862 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-26 18:39:25.863 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-26 18:39:28.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAGZAohWNQGqil5ivYohjhJTvJLOl8tHmLZAm3iZBort5dbX4K6kZA8ZCAOBYhsnBwhc784RJLIlOvJnrXMyz85hcjZCD0xYO8TLyca103yaoshpaPZCIVos7RqplouwZBKrFqcOv0IoOXlDSgROoVBIGxhLK9NwT9QZDZD", "Free"]) - ModelState is Valid +2017-12-26 18:39:36.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:36.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:36.710 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:36.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 11090.0455ms +2017-12-26 18:39:36.957 +05:30 [Information] Request finished in 11096.4137ms 200 application/json; charset=utf-8 +2017-12-26 18:39:36.957 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:39:37.506 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 18:39:37.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 18:39:37.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 18:39:40.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 18:39:41.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:41.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:41.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:41.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3593.0662ms +2017-12-26 18:39:41.104 +05:30 [Information] Request finished in 3599.2263ms 200 application/json; charset=utf-8 +2017-12-26 18:39:41.105 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:39:41.163 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId= +2017-12-26 18:39:41.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 18:39:41.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 18:39:44.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", ""]) - ModelState is Valid +2017-12-26 18:39:46.140 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:46.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:46.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:46.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5078.1084ms +2017-12-26 18:39:46.253 +05:30 [Information] Request finished in 5091.1306ms 200 application/json; charset=utf-8 +2017-12-26 18:39:46.254 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:39:47.986 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" started. +2017-12-26 18:39:47.986 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" started. +2017-12-26 18:39:47.987 +05:30 [Debug] Connection id ""0HLACC6CA83TC"" started. +2017-12-26 18:39:47.988 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 18:39:47.989 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 18:39:47.990 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 18:39:47.990 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 18:39:47.991 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 18:39:47.997 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 18:39:47.997 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 18:39:47.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 18:39:48.000 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 18:39:48.002 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 18:39:48.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 18:39:48.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 18:39:48.103 +05:30 [Debug] Connection id ""0HLACC6CA83TD"" started. +2017-12-26 18:39:48.105 +05:30 [Debug] Connection id ""0HLACC6CA83TE"" started. +2017-12-26 18:39:48.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 18:39:48.970 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 18:39:48.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 18:39:49.975 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 18:39:49.976 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 18:39:49.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 18:39:52.092 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 18:39:53.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 18:39:53.176 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:39:53.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:39:53.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:39:53.221 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:39:53.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:53.907 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:39:53.907 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:53.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:53.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3945.5045ms +2017-12-26 18:39:53.929 +05:30 [Information] Request finished in 3957.7691ms 200 application/json; charset=utf-8 +2017-12-26 18:39:53.930 +05:30 [Debug] Connection id ""0HLACC6CA83TE"" completed keep alive response. +2017-12-26 18:39:53.946 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-26 18:39:53.946 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 18:39:53.948 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 18:39:55.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:55.151 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:39:55.151 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:55.152 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:55.160 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7155.9857ms +2017-12-26 18:39:55.163 +05:30 [Information] Request finished in 7175.0822ms 200 application/json; charset=utf-8 +2017-12-26 18:39:55.163 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" completed keep alive response. +2017-12-26 18:39:55.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:55.287 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:39:55.288 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:55.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:55.295 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7288.8698ms +2017-12-26 18:39:55.300 +05:30 [Information] Request finished in 7310.4743ms 200 application/json; charset=utf-8 +2017-12-26 18:39:55.301 +05:30 [Debug] Connection id ""0HLACC6CA83TC"" completed keep alive response. +2017-12-26 18:39:55.333 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:55.334 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:39:55.334 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:55.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:55.345 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7349.3491ms +2017-12-26 18:39:55.348 +05:30 [Information] Request finished in 7364.8768ms 200 application/json; charset=utf-8 +2017-12-26 18:39:55.349 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:39:55.786 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:55.786 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:39:55.787 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:55.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:55.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7785.7829ms +2017-12-26 18:39:55.797 +05:30 [Information] Request finished in 7808.7042ms 200 application/json; charset=utf-8 +2017-12-26 18:39:55.798 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" completed keep alive response. +2017-12-26 18:39:55.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:55.823 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:39:55.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:55.824 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:55.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6851.8472ms +2017-12-26 18:39:55.828 +05:30 [Information] Request finished in 6861.5ms 200 application/json; charset=utf-8 +2017-12-26 18:39:55.828 +05:30 [Debug] Connection id ""0HLACC6CA83TD"" completed keep alive response. +2017-12-26 18:39:56.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 18:39:59.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:39:59.374 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:39:59.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:39:59.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:39:59.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5477.3121ms +2017-12-26 18:39:59.428 +05:30 [Information] Request finished in 5482.9895ms 200 application/json; charset=utf-8 +2017-12-26 18:39:59.428 +05:30 [Debug] Connection id ""0HLACC6CA83TE"" completed keep alive response. +2017-12-26 18:40:12.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=140174883350217 +2017-12-26 18:40:12.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=140174883350217&userId=500443&skip=0&count=10&type=undefined +2017-12-26 18:40:12.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 18:40:12.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 18:40:12.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 18:40:12.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 18:40:15.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["140174883350217"]) - ModelState is Valid +2017-12-26 18:40:15.430 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["140174883350217", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 18:40:15.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:40:15.967 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:40:15.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:40:15.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:40:15.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3632.5141ms +2017-12-26 18:40:15.987 +05:30 [Information] Request finished in 3661.3784ms 200 application/json; charset=utf-8 +2017-12-26 18:40:15.988 +05:30 [Debug] Connection id ""0HLACC6CA83TC"" completed keep alive response. +2017-12-26 18:40:19.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:40:19.522 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:40:19.522 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:40:19.524 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:40:19.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 7216.7312ms +2017-12-26 18:40:19.569 +05:30 [Information] Request finished in 7243.0465ms 200 application/json; charset=utf-8 +2017-12-26 18:40:19.570 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" completed keep alive response. +2017-12-26 18:40:22.938 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=134715397262944 +2017-12-26 18:40:22.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 18:40:22.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 18:40:22.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=0&count=10&type=undefined +2017-12-26 18:40:22.953 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 18:40:22.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 18:40:25.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["134715397262944"]) - ModelState is Valid +2017-12-26 18:40:26.023 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 18:40:26.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:40:26.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:40:26.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:40:26.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:40:26.252 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 3296.3567ms +2017-12-26 18:40:26.257 +05:30 [Information] Request finished in 3338.517ms 200 application/json; charset=utf-8 +2017-12-26 18:40:26.257 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" completed keep alive response. +2017-12-26 18:40:26.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:40:26.519 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:40:26.519 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:40:26.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:40:26.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3578.8895ms +2017-12-26 18:40:26.524 +05:30 [Information] Request finished in 3606.0703ms 200 application/json; charset=utf-8 +2017-12-26 18:40:26.524 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:40:59.946 +05:30 [Debug] Connection id ""0HLACC6CA83TD"" received FIN. +2017-12-26 18:40:59.946 +05:30 [Debug] Connection id ""0HLACC6CA83TE"" received FIN. +2017-12-26 18:40:59.946 +05:30 [Debug] Connection id ""0HLACC6CA83TD"" disconnecting. +2017-12-26 18:40:59.947 +05:30 [Debug] Connection id ""0HLACC6CA83TD"" sending FIN. +2017-12-26 18:40:59.947 +05:30 [Debug] Connection id ""0HLACC6CA83TE"" disconnecting. +2017-12-26 18:40:59.947 +05:30 [Debug] Connection id ""0HLACC6CA83TD"" sent FIN with status "0". +2017-12-26 18:40:59.948 +05:30 [Debug] Connection id ""0HLACC6CA83TD"" stopped. +2017-12-26 18:40:59.947 +05:30 [Debug] Connection id ""0HLACC6CA83TE"" sending FIN. +2017-12-26 18:40:59.948 +05:30 [Debug] Connection id ""0HLACC6CA83TE"" sent FIN with status "0". +2017-12-26 18:40:59.948 +05:30 [Debug] Connection id ""0HLACC6CA83TE"" stopped. +2017-12-26 18:41:16.486 +05:30 [Debug] Connection id ""0HLACC6CA83TC"" received FIN. +2017-12-26 18:41:16.486 +05:30 [Debug] Connection id ""0HLACC6CA83TC"" disconnecting. +2017-12-26 18:41:16.486 +05:30 [Debug] Connection id ""0HLACC6CA83TC"" sending FIN. +2017-12-26 18:41:16.487 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 18:41:16.487 +05:30 [Debug] Connection id ""0HLACC6CA83TC"" sent FIN with status "0". +2017-12-26 18:41:16.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 18:41:16.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 18:41:16.487 +05:30 [Debug] Connection id ""0HLACC6CA83TC"" stopped. +2017-12-26 18:41:19.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 18:41:20.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:20.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:20.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:20.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3578.2634ms +2017-12-26 18:41:20.069 +05:30 [Information] Request finished in 3581.9498ms 200 application/json; charset=utf-8 +2017-12-26 18:41:20.070 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" completed keep alive response. +2017-12-26 18:41:20.078 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-26 18:41:20.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 18:41:20.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 18:41:23.131 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-26 18:41:24.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:24.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:24.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:24.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4681.0037ms +2017-12-26 18:41:24.775 +05:30 [Information] Request finished in 4697.4454ms 200 application/json; charset=utf-8 +2017-12-26 18:41:24.776 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" completed keep alive response. +2017-12-26 18:41:25.568 +05:30 [Debug] Connection id ""0HLACC6CA83TF"" started. +2017-12-26 18:41:25.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 18:41:25.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 18:41:25.571 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 18:41:25.571 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 18:41:25.571 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 18:41:25.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 18:41:25.590 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 18:41:25.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 18:41:25.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 18:41:25.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 18:41:25.596 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 18:41:25.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 18:41:25.660 +05:30 [Debug] Connection id ""0HLACC6CA83TG"" started. +2017-12-26 18:41:25.662 +05:30 [Debug] Connection id ""0HLACC6CA83TH"" started. +2017-12-26 18:41:25.664 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 18:41:25.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 18:41:25.665 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 18:41:26.299 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 18:41:26.299 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 18:41:26.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 18:41:29.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:41:29.487 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:41:29.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:41:29.515 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:41:29.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 18:41:29.517 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 18:41:30.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:30.041 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:41:30.041 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:30.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:30.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4471.8542ms +2017-12-26 18:41:30.046 +05:30 [Information] Request finished in 4499.0018ms 200 application/json; charset=utf-8 +2017-12-26 18:41:30.046 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:41:30.050 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=0&count=10&type=undefined +2017-12-26 18:41:30.051 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 18:41:30.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 18:41:30.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:30.066 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:41:30.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:30.067 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:30.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 4470.3576ms +2017-12-26 18:41:30.072 +05:30 [Information] Request finished in 4524.3775ms 200 application/json; charset=utf-8 +2017-12-26 18:41:30.072 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" completed keep alive response. +2017-12-26 18:41:30.080 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=134715397262944 +2017-12-26 18:41:30.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 18:41:30.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 18:41:30.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:30.205 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:41:30.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:30.206 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:30.210 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4635.5685ms +2017-12-26 18:41:30.213 +05:30 [Information] Request finished in 4644.2811ms 200 application/json; charset=utf-8 +2017-12-26 18:41:30.214 +05:30 [Debug] Connection id ""0HLACC6CA83TF"" completed keep alive response. +2017-12-26 18:41:30.495 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:30.496 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:41:30.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:30.497 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:30.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4906.5262ms +2017-12-26 18:41:30.500 +05:30 [Information] Request finished in 4952.0991ms 200 application/json; charset=utf-8 +2017-12-26 18:41:30.501 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" completed keep alive response. +2017-12-26 18:41:30.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:30.561 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:41:30.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:30.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:30.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4897.9713ms +2017-12-26 18:41:30.565 +05:30 [Information] Request finished in 4902.8799ms 200 application/json; charset=utf-8 +2017-12-26 18:41:30.566 +05:30 [Debug] Connection id ""0HLACC6CA83TG"" completed keep alive response. +2017-12-26 18:41:30.712 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:30.712 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:41:30.713 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:30.715 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:30.719 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4416.5958ms +2017-12-26 18:41:30.721 +05:30 [Information] Request finished in 4427.9859ms 200 application/json; charset=utf-8 +2017-12-26 18:41:30.722 +05:30 [Debug] Connection id ""0HLACC6CA83TH"" completed keep alive response. +2017-12-26 18:41:33.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 18:41:33.125 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["134715397262944"]) - ModelState is Valid +2017-12-26 18:41:33.249 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:33.249 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:41:33.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:33.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:33.255 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 3200.6689ms +2017-12-26 18:41:33.258 +05:30 [Information] Request finished in 3206.8585ms 200 application/json; charset=utf-8 +2017-12-26 18:41:33.258 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" completed keep alive response. +2017-12-26 18:41:33.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:41:33.669 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:41:33.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:41:33.671 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:41:33.672 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3588.6063ms +2017-12-26 18:41:33.676 +05:30 [Information] Request finished in 3594.763ms 200 application/json; charset=utf-8 +2017-12-26 18:41:33.677 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" completed keep alive response. +2017-12-26 18:42:49.946 +05:30 [Debug] Connection id ""0HLACC6CA83TF"" received FIN. +2017-12-26 18:42:49.946 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" received FIN. +2017-12-26 18:42:49.946 +05:30 [Debug] Connection id ""0HLACC6CA83TF"" disconnecting. +2017-12-26 18:42:49.947 +05:30 [Debug] Connection id ""0HLACC6CA83TG"" received FIN. +2017-12-26 18:42:49.947 +05:30 [Debug] Connection id ""0HLACC6CA83TH"" received FIN. +2017-12-26 18:42:49.947 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" disconnecting. +2017-12-26 18:42:49.948 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" sending FIN. +2017-12-26 18:42:49.948 +05:30 [Debug] Connection id ""0HLACC6CA83TG"" disconnecting. +2017-12-26 18:42:49.948 +05:30 [Debug] Connection id ""0HLACC6CA83TF"" sending FIN. +2017-12-26 18:42:49.948 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" sent FIN with status "0". +2017-12-26 18:42:49.950 +05:30 [Debug] Connection id ""0HLACC6CA83TB"" stopped. +2017-12-26 18:42:49.950 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" received FIN. +2017-12-26 18:42:49.951 +05:30 [Debug] Connection id ""0HLACC6CA83TG"" sending FIN. +2017-12-26 18:42:49.951 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" received FIN. +2017-12-26 18:42:49.952 +05:30 [Debug] Connection id ""0HLACC6CA83TG"" sent FIN with status "0". +2017-12-26 18:42:49.952 +05:30 [Debug] Connection id ""0HLACC6CA83TF"" sent FIN with status "0". +2017-12-26 18:42:49.953 +05:30 [Debug] Connection id ""0HLACC6CA83TF"" stopped. +2017-12-26 18:42:49.952 +05:30 [Debug] Connection id ""0HLACC6CA83TG"" stopped. +2017-12-26 18:42:49.953 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" disconnecting. +2017-12-26 18:42:49.953 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" disconnecting. +2017-12-26 18:42:49.948 +05:30 [Debug] Connection id ""0HLACC6CA83TH"" disconnecting. +2017-12-26 18:42:49.954 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" sending FIN. +2017-12-26 18:42:49.955 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" sending FIN. +2017-12-26 18:42:49.955 +05:30 [Debug] Connection id ""0HLACC6CA83TH"" sending FIN. +2017-12-26 18:42:49.956 +05:30 [Debug] Connection id ""0HLACC6CA83TH"" sent FIN with status "0". +2017-12-26 18:42:49.956 +05:30 [Debug] Connection id ""0HLACC6CA83TH"" stopped. +2017-12-26 18:42:49.957 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" sent FIN with status "0". +2017-12-26 18:42:49.957 +05:30 [Debug] Connection id ""0HLACC6CA83TA"" stopped. +2017-12-26 18:42:49.958 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" sent FIN with status "0". +2017-12-26 18:42:49.958 +05:30 [Debug] Connection id ""0HLACC6CA83T9"" stopped. +2017-12-26 18:43:34.602 +05:30 [Debug] Connection id ""0HLACC6CA83TI"" started. +2017-12-26 18:43:34.602 +05:30 [Debug] Connection id ""0HLACC6CA83TJ"" started. +2017-12-26 18:43:34.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=140174883350217 +2017-12-26 18:43:34.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 18:43:34.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 18:43:34.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=140174883350217&userId=500443&skip=0&count=10&type=undefined +2017-12-26 18:43:34.614 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 18:43:34.615 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 18:43:36.728 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["140174883350217"]) - ModelState is Valid +2017-12-26 18:43:37.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:43:37.284 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:43:37.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:43:37.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:43:37.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 2678.2606ms +2017-12-26 18:43:37.289 +05:30 [Information] Request finished in 2685.2617ms 200 application/json; charset=utf-8 +2017-12-26 18:43:37.290 +05:30 [Debug] Connection id ""0HLACC6CA83TI"" completed keep alive response. +2017-12-26 18:43:37.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["140174883350217", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 18:43:37.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:43:37.822 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:43:37.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:43:37.824 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:43:37.828 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 3210.8898ms +2017-12-26 18:43:37.830 +05:30 [Information] Request finished in 3226.5379ms 200 application/json; charset=utf-8 +2017-12-26 18:43:37.830 +05:30 [Debug] Connection id ""0HLACC6CA83TJ"" completed keep alive response. +2017-12-26 18:44:39.946 +05:30 [Debug] Connection id ""0HLACC6CA83TI"" received FIN. +2017-12-26 18:44:39.946 +05:30 [Debug] Connection id ""0HLACC6CA83TI"" disconnecting. +2017-12-26 18:44:39.946 +05:30 [Debug] Connection id ""0HLACC6CA83TI"" sending FIN. +2017-12-26 18:44:39.946 +05:30 [Debug] Connection id ""0HLACC6CA83TJ"" received FIN. +2017-12-26 18:44:39.947 +05:30 [Debug] Connection id ""0HLACC6CA83TI"" sent FIN with status "0". +2017-12-26 18:44:39.947 +05:30 [Debug] Connection id ""0HLACC6CA83TI"" stopped. +2017-12-26 18:44:39.948 +05:30 [Debug] Connection id ""0HLACC6CA83TJ"" disconnecting. +2017-12-26 18:44:39.949 +05:30 [Debug] Connection id ""0HLACC6CA83TJ"" sending FIN. +2017-12-26 18:44:39.949 +05:30 [Debug] Connection id ""0HLACC6CA83TJ"" sent FIN with status "0". +2017-12-26 18:44:39.950 +05:30 [Debug] Connection id ""0HLACC6CA83TJ"" stopped. +2017-12-26 18:48:37.912 +05:30 [Debug] Connection id ""0HLACC6CA83TK"" started. +2017-12-26 18:48:37.913 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 18:48:37.913 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 18:48:37.914 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 18:48:40.984 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 18:48:42.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:42.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:42.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:42.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4983.8222ms +2017-12-26 18:48:42.903 +05:30 [Information] Request finished in 4989.9479ms 200 application/json; charset=utf-8 +2017-12-26 18:48:42.904 +05:30 [Debug] Connection id ""0HLACC6CA83TK"" completed keep alive response. +2017-12-26 18:48:42.918 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-26 18:48:42.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 18:48:42.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 18:48:45.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-26 18:48:46.560 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:46.561 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:46.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:46.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3645.531ms +2017-12-26 18:48:46.574 +05:30 [Information] Request finished in 3660.4367ms 200 application/json; charset=utf-8 +2017-12-26 18:48:46.575 +05:30 [Debug] Connection id ""0HLACC6CA83TK"" completed keep alive response. +2017-12-26 18:48:47.488 +05:30 [Debug] Connection id ""0HLACC6CA83TL"" started. +2017-12-26 18:48:47.489 +05:30 [Debug] Connection id ""0HLACC6CA83TM"" started. +2017-12-26 18:48:47.489 +05:30 [Debug] Connection id ""0HLACC6CA83TN"" started. +2017-12-26 18:48:47.495 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 18:48:47.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 18:48:47.501 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 18:48:47.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 18:48:47.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 18:48:47.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 18:48:47.506 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 18:48:47.506 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 18:48:47.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 18:48:47.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 18:48:47.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 18:48:47.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 18:48:47.600 +05:30 [Debug] Connection id ""0HLACC6CA83TP"" started. +2017-12-26 18:48:47.600 +05:30 [Debug] Connection id ""0HLACC6CA83TO"" started. +2017-12-26 18:48:47.623 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 18:48:47.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 18:48:47.623 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 18:48:47.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 18:48:47.625 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 18:48:47.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 18:48:50.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:48:50.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:48:50.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:48:50.699 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 18:48:50.792 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 18:48:51.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:51.705 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:48:51.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:51.706 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:51.708 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4198.1705ms +2017-12-26 18:48:51.714 +05:30 [Information] Request finished in 4222.4494ms 200 application/json; charset=utf-8 +2017-12-26 18:48:51.715 +05:30 [Debug] Connection id ""0HLACC6CA83TM"" completed keep alive response. +2017-12-26 18:48:51.734 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=140174883350217&userId=500443&skip=0&count=10&type=undefined +2017-12-26 18:48:51.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 18:48:51.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 18:48:52.647 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:52.647 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:48:52.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:52.649 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:52.651 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5144.6619ms +2017-12-26 18:48:52.653 +05:30 [Information] Request finished in 5163.0198ms 200 application/json; charset=utf-8 +2017-12-26 18:48:52.654 +05:30 [Debug] Connection id ""0HLACC6CA83TN"" completed keep alive response. +2017-12-26 18:48:52.669 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=140174883350217 +2017-12-26 18:48:52.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 18:48:52.670 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 18:48:52.712 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:52.713 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:48:52.713 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:52.764 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:52.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5262.3806ms +2017-12-26 18:48:52.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:52.856 +05:30 [Information] Request finished in 5320.6502ms 200 application/json; charset=utf-8 +2017-12-26 18:48:52.856 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:48:52.858 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:52.862 +05:30 [Debug] Connection id ""0HLACC6CA83TL"" completed keep alive response. +2017-12-26 18:48:52.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:52.883 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5360.9693ms +2017-12-26 18:48:52.896 +05:30 [Information] Request finished in 5401.3484ms 200 application/json; charset=utf-8 +2017-12-26 18:48:52.898 +05:30 [Debug] Connection id ""0HLACC6CA83TK"" completed keep alive response. +2017-12-26 18:48:53.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:53.285 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:48:53.286 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:53.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:53.288 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5659.1998ms +2017-12-26 18:48:53.290 +05:30 [Information] Request finished in 5687.5376ms 200 application/json; charset=utf-8 +2017-12-26 18:48:53.291 +05:30 [Debug] Connection id ""0HLACC6CA83TO"" completed keep alive response. +2017-12-26 18:48:54.807 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["140174883350217", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 18:48:54.847 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 18:48:54.990 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:54.991 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:48:54.991 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:54.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:55.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 3261.4066ms +2017-12-26 18:48:55.043 +05:30 [Information] Request finished in 3312.2215ms 200 application/json; charset=utf-8 +2017-12-26 18:48:55.043 +05:30 [Debug] Connection id ""0HLACC6CA83TM"" completed keep alive response. +2017-12-26 18:48:55.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["140174883350217"]) - ModelState is Valid +2017-12-26 18:48:55.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:55.960 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:48:55.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:55.961 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:55.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 8337.3196ms +2017-12-26 18:48:55.965 +05:30 [Information] Request finished in 8362.9019ms 200 application/json; charset=utf-8 +2017-12-26 18:48:55.965 +05:30 [Debug] Connection id ""0HLACC6CA83TP"" completed keep alive response. +2017-12-26 18:48:56.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 18:48:56.290 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 18:48:56.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 18:48:56.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 18:48:56.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 3620.6068ms +2017-12-26 18:48:56.295 +05:30 [Information] Request finished in 3625.091ms 200 application/json; charset=utf-8 +2017-12-26 18:48:56.295 +05:30 [Debug] Connection id ""0HLACC6CA83TN"" completed keep alive response. +2017-12-26 19:08:53.956 +05:30 [Debug] Hosting starting +2017-12-26 19:08:54.222 +05:30 [Debug] Hosting started +2017-12-26 19:08:54.371 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" started. +2017-12-26 19:08:54.373 +05:30 [Debug] Connection id ""0HLACCO0ST9V9"" started. +2017-12-26 19:08:54.395 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" started. +2017-12-26 19:08:54.550 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-26 19:08:54.550 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-26 19:08:54.550 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:08:54.622 +05:30 [Information] Request finished in 100.5249ms 200 +2017-12-26 19:08:54.668 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" completed keep alive response. +2017-12-26 19:08:55.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:08:55.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-26 19:08:55.700 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"25234275-d6e9-44cf-80f5-cb69f6dd7d82"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-26 19:08:55.845 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:08:55.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-26 19:08:56.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-26 19:08:56.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-26 19:08:56.113 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:08:56.125 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:08:56.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:08:56.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 601.6394ms +2017-12-26 19:08:56.666 +05:30 [Information] Request finished in 2161.0875ms 200 application/json; charset=utf-8 +2017-12-26 19:08:56.669 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" completed keep alive response. +2017-12-26 19:08:59.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:09:06.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:09:06.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:09:06.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:09:06.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10932.9849ms +2017-12-26 19:09:06.785 +05:30 [Information] Request finished in 12279.7616ms 200 application/json; charset=utf-8 +2017-12-26 19:09:06.786 +05:30 [Debug] Connection id ""0HLACCO0ST9V9"" completed keep alive response. +2017-12-26 19:09:20.246 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:09:20.247 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:09:20.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:09:22.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:09:22.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:09:22.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:09:22.990 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:09:22.991 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2739.3432ms +2017-12-26 19:09:22.999 +05:30 [Information] Request finished in 2766.2939ms 200 application/json; charset=utf-8 +2017-12-26 19:09:23.000 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" completed keep alive response. +2017-12-26 19:09:23.122 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:09:23.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:09:23.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:09:26.209 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:09:26.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:09:26.742 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:09:26.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:09:26.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3598.9968ms +2017-12-26 19:09:26.745 +05:30 [Information] Request finished in 3627.2904ms 200 application/json; charset=utf-8 +2017-12-26 19:09:26.746 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" completed keep alive response. +2017-12-26 19:09:26.801 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:09:26.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:09:26.802 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:09:28.898 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:09:29.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:09:29.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:09:29.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:09:29.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2630.8567ms +2017-12-26 19:09:29.439 +05:30 [Information] Request finished in 2645.1945ms 200 application/json; charset=utf-8 +2017-12-26 19:09:29.440 +05:30 [Debug] Connection id ""0HLACCO0ST9V9"" completed keep alive response. +2017-12-26 19:10:01.368 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:10:01.369 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:10:01.371 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:10:04.438 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:10:04.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:10:04.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:10:04.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:10:04.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3602.3961ms +2017-12-26 19:10:04.983 +05:30 [Information] Request finished in 3615.9815ms 200 application/json; charset=utf-8 +2017-12-26 19:10:04.984 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" completed keep alive response. +2017-12-26 19:10:23.671 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 201 +2017-12-26 19:10:23.672 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-26 19:10:23.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-26 19:10:26.824 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAC9HsBn1dhVyNGhGyjCjU6lbPINZC1E0OLigwlQ2zabuglPeZAsa9QBj6GZCj1FpLu9RqPKE9ZAIHTltIvITBXvuRuxQxJ9HK2sNxORHLZAulZBUQZAiSHjcDZC9ukMJkdlFooPumOeyeltjngiXxnV9yMu4C4cEjQZDZD", "Free"]) - ModelState is Valid +2017-12-26 19:10:41.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:10:41.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:10:41.351 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:10:41.580 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 17878.2083ms +2017-12-26 19:10:41.604 +05:30 [Information] Request finished in 17926.2419ms 200 application/json; charset=utf-8 +2017-12-26 19:10:41.608 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" completed keep alive response. +2017-12-26 19:10:42.651 +05:30 [Debug] Connection id ""0HLACCO0ST9V9"" received FIN. +2017-12-26 19:10:42.653 +05:30 [Debug] Connection id ""0HLACCO0ST9V9"" disconnecting. +2017-12-26 19:10:42.655 +05:30 [Debug] Connection id ""0HLACCO0ST9V9"" sending FIN. +2017-12-26 19:10:42.655 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:10:42.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:10:42.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:10:42.678 +05:30 [Debug] Connection id ""0HLACCO0ST9V9"" sent FIN with status "0". +2017-12-26 19:10:42.684 +05:30 [Debug] Connection id ""0HLACCO0ST9V9"" stopped. +2017-12-26 19:10:45.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:10:46.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:10:46.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:10:46.286 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:10:46.287 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3630.2823ms +2017-12-26 19:10:46.299 +05:30 [Information] Request finished in 3646.084ms 200 application/json; charset=utf-8 +2017-12-26 19:10:46.299 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" completed keep alive response. +2017-12-26 19:10:46.699 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId= +2017-12-26 19:10:46.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 19:10:46.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 19:10:49.873 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", ""]) - ModelState is Valid +2017-12-26 19:10:51.696 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:10:51.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:10:51.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:10:51.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5163.0167ms +2017-12-26 19:10:51.900 +05:30 [Information] Request finished in 5277.5124ms 200 application/json; charset=utf-8 +2017-12-26 19:10:51.900 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" completed keep alive response. +2017-12-26 19:10:54.546 +05:30 [Debug] Connection id ""0HLACCO0ST9VB"" started. +2017-12-26 19:10:54.551 +05:30 [Debug] Connection id ""0HLACCO0ST9VC"" started. +2017-12-26 19:10:54.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 19:10:54.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 19:10:54.563 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 19:10:54.564 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 19:10:54.565 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 19:10:54.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 19:10:54.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 19:10:54.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 19:10:54.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 19:10:54.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 19:10:54.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 19:10:54.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 19:10:54.679 +05:30 [Debug] Connection id ""0HLACCO0ST9VD"" started. +2017-12-26 19:10:54.681 +05:30 [Debug] Connection id ""0HLACCO0ST9VE"" started. +2017-12-26 19:10:56.237 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 19:10:56.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 19:10:56.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 19:10:57.238 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 19:10:57.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 19:10:57.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 19:11:00.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:11:00.515 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:11:00.537 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:11:00.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:11:00.548 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:11:00.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:11:01.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:11:01.162 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:11:01.162 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:11:01.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:11:01.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6595.6851ms +2017-12-26 19:11:01.178 +05:30 [Information] Request finished in 6624.3228ms 200 application/json; charset=utf-8 +2017-12-26 19:11:01.179 +05:30 [Debug] Connection id ""0HLACCO0ST9VC"" completed keep alive response. +2017-12-26 19:11:01.184 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-26 19:11:01.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 19:11:01.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 19:11:02.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:11:02.774 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:11:02.774 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:11:02.775 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:11:02.781 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 8215.8893ms +2017-12-26 19:11:02.784 +05:30 [Information] Request finished in 8241.5748ms 200 application/json; charset=utf-8 +2017-12-26 19:11:02.785 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" completed keep alive response. +2017-12-26 19:11:03.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:11:03.441 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:11:03.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:11:03.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:11:03.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 7204.331ms +2017-12-26 19:11:03.446 +05:30 [Information] Request finished in 7210.6221ms 200 application/json; charset=utf-8 +2017-12-26 19:11:03.447 +05:30 [Debug] Connection id ""0HLACCO0ST9VD"" completed keep alive response. +2017-12-26 19:11:03.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:11:03.469 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:11:03.469 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:11:03.470 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:11:03.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8904.0086ms +2017-12-26 19:11:03.486 +05:30 [Information] Request finished in 8935.5115ms 200 application/json; charset=utf-8 +2017-12-26 19:11:03.487 +05:30 [Debug] Connection id ""0HLACCO0ST9VB"" completed keep alive response. +2017-12-26 19:11:03.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:11:03.806 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:11:03.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:11:03.808 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:11:03.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6570.8608ms +2017-12-26 19:11:03.817 +05:30 [Information] Request finished in 6577.5061ms 200 application/json; charset=utf-8 +2017-12-26 19:11:03.818 +05:30 [Debug] Connection id ""0HLACCO0ST9VE"" completed keep alive response. +2017-12-26 19:11:03.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:11:03.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:11:03.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:11:03.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:11:03.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 9273.3598ms +2017-12-26 19:11:03.913 +05:30 [Information] Request finished in 9361.6563ms 200 application/json; charset=utf-8 +2017-12-26 19:11:03.913 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" completed keep alive response. +2017-12-26 19:11:04.293 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:11:07.000 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:11:07.001 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:11:07.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:11:07.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:11:07.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5871.8556ms +2017-12-26 19:11:07.064 +05:30 [Information] Request finished in 5880.3346ms 200 application/json; charset=utf-8 +2017-12-26 19:11:07.065 +05:30 [Debug] Connection id ""0HLACCO0ST9VC"" completed keep alive response. +2017-12-26 19:11:10.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=0&count=10&type=undefined +2017-12-26 19:11:10.843 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=134715397262944 +2017-12-26 19:11:10.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 19:11:10.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 19:11:10.844 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 19:11:10.845 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 19:11:13.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["134715397262944"]) - ModelState is Valid +2017-12-26 19:11:13.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 19:11:18.916 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:11:18.917 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:11:18.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:11:18.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:11:20.284 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 8962.172ms +2017-12-26 19:11:20.657 +05:30 [Information] Request finished in 9832.998ms 200 application/json; charset=utf-8 +2017-12-26 19:11:20.663 +05:30 [Debug] Connection id ""0HLACCO0ST9VD"" completed keep alive response. +2017-12-26 19:12:48.729 +05:30 [Debug] Connection id ""0HLACCO0ST9VE"" received FIN. +2017-12-26 19:12:48.730 +05:30 [Debug] Connection id ""0HLACCO0ST9VB"" received FIN. +2017-12-26 19:12:48.730 +05:30 [Debug] Connection id ""0HLACCO0ST9VC"" received FIN. +2017-12-26 19:12:48.730 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" received FIN. +2017-12-26 19:12:49.145 +05:30 [Debug] Connection id ""0HLACCO0ST9VD"" received FIN. +2017-12-26 19:12:49.147 +05:30 [Debug] Connection id ""0HLACCO0ST9VB"" disconnecting. +2017-12-26 19:12:49.135 +05:30 [Debug] Connection id ""0HLACCO0ST9VE"" disconnecting. +2017-12-26 19:12:49.409 +05:30 [Debug] Connection id ""0HLACCO0ST9VB"" sending FIN. +2017-12-26 19:12:54.017 +05:30 [Debug] Connection id ""0HLACCO0ST9VB"" sent FIN with status "0". +2017-12-26 19:12:54.017 +05:30 [Debug] Connection id ""0HLACCO0ST9VB"" stopped. +2017-12-26 19:12:49.408 +05:30 [Debug] Connection id ""0HLACCO0ST9VC"" disconnecting. +2017-12-26 19:12:54.043 +05:30 [Debug] Connection id ""0HLACCO0ST9VD"" disconnecting. +2017-12-26 19:12:54.043 +05:30 [Debug] Connection id ""0HLACCO0ST9VD"" sending FIN. +2017-12-26 19:12:54.044 +05:30 [Debug] Connection id ""0HLACCO0ST9VD"" sent FIN with status "0". +2017-12-26 19:12:54.045 +05:30 [Debug] Connection id ""0HLACCO0ST9VD"" stopped. +2017-12-26 19:12:54.006 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" disconnecting. +2017-12-26 19:12:54.425 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" sending FIN. +2017-12-26 19:12:54.426 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" sent FIN with status "0". +2017-12-26 19:12:54.426 +05:30 [Debug] Connection id ""0HLACCO0ST9V8"" stopped. +2017-12-26 19:12:54.008 +05:30 [Debug] Connection id ""0HLACCO0ST9VE"" sending FIN. +2017-12-26 19:12:54.429 +05:30 [Debug] Connection id ""0HLACCO0ST9VC"" sending FIN. +2017-12-26 19:12:54.430 +05:30 [Debug] Connection id ""0HLACCO0ST9VC"" sent FIN with status "0". +2017-12-26 19:12:54.430 +05:30 [Debug] Connection id ""0HLACCO0ST9VC"" stopped. +2017-12-26 19:12:54.431 +05:30 [Debug] Connection id ""0HLACCO0ST9VE"" sent FIN with status "0". +2017-12-26 19:12:54.431 +05:30 [Debug] Connection id ""0HLACCO0ST9VE"" stopped. +2017-12-26 19:13:18.900 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" received FIN. +2017-12-26 19:13:21.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:13:21.846 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:13:21.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:13:21.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:13:21.893 +05:30 [Information] Connection id ""0HLACCO0ST9VA"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 19:13:21.894 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" disconnecting. +2017-12-26 19:13:21.918 +05:30 [Information] Connection id ""0HLACCO0ST9VA"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 19:13:21.920 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" stopped. +2017-12-26 19:13:21.921 +05:30 [Information] Connection id ""0HLACCO0ST9VA"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 19:13:21.923 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 19:13:21.923 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 19:13:21.924 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 19:13:21.924 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 19:13:21.924 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 19:13:21.925 +05:30 [Debug] Connection id ""0HLACCO0ST9VA"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-26 19:13:21.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 131080.2624ms +2017-12-26 19:13:21.927 +05:30 [Information] Request finished in 131105.6114ms 200 application/json; charset=utf-8 +2017-12-26 19:13:36.034 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" started. +2017-12-26 19:13:36.037 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:13:36.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:13:36.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:13:39.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:13:39.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:13:39.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:13:39.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:13:39.684 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3644.124ms +2017-12-26 19:13:39.686 +05:30 [Information] Request finished in 3649.5502ms 200 application/json; charset=utf-8 +2017-12-26 19:13:39.687 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" completed keep alive response. +2017-12-26 19:13:39.699 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId=1152637 +2017-12-26 19:13:39.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 19:13:39.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 19:13:42.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", "1152637"]) - ModelState is Valid +2017-12-26 19:13:44.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:13:44.431 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:13:44.432 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:13:44.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4733.0484ms +2017-12-26 19:13:44.440 +05:30 [Information] Request finished in 4746.3163ms 200 application/json; charset=utf-8 +2017-12-26 19:13:44.441 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" completed keep alive response. +2017-12-26 19:13:45.130 +05:30 [Debug] Connection id ""0HLACCO0ST9VG"" started. +2017-12-26 19:13:45.130 +05:30 [Debug] Connection id ""0HLACCO0ST9VH"" started. +2017-12-26 19:13:45.131 +05:30 [Debug] Connection id ""0HLACCO0ST9VI"" started. +2017-12-26 19:13:45.156 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 19:13:45.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 19:13:45.157 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 19:13:45.159 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 19:13:45.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 19:13:45.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 19:13:45.183 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 19:13:45.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 19:13:45.188 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 19:13:45.188 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 19:13:45.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 19:13:45.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 19:13:45.223 +05:30 [Debug] Connection id ""0HLACCO0ST9VJ"" started. +2017-12-26 19:13:45.226 +05:30 [Debug] Connection id ""0HLACCO0ST9VK"" started. +2017-12-26 19:13:45.233 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 19:13:45.233 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 19:13:45.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 19:13:45.236 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 19:13:45.238 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 19:13:45.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 19:13:47.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:13:48.186 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:13:48.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:13:48.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:13:48.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:13:48.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:13:48.435 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:13:48.435 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:13:48.436 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:13:48.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:13:48.439 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3245.4012ms +2017-12-26 19:13:48.441 +05:30 [Information] Request finished in 3282.9855ms 200 application/json; charset=utf-8 +2017-12-26 19:13:48.442 +05:30 [Debug] Connection id ""0HLACCO0ST9VI"" completed keep alive response. +2017-12-26 19:13:48.451 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=0&count=10&type=undefined +2017-12-26 19:13:48.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 19:13:48.452 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 19:13:48.738 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:13:48.739 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:13:48.739 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:13:48.740 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:13:48.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3582.3818ms +2017-12-26 19:13:48.743 +05:30 [Information] Request finished in 3613.3943ms 200 application/json; charset=utf-8 +2017-12-26 19:13:48.743 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" completed keep alive response. +2017-12-26 19:13:48.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=134715397262944 +2017-12-26 19:13:48.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 19:13:48.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 19:13:48.829 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:13:48.829 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:13:48.830 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:13:48.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:13:48.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3669.358ms +2017-12-26 19:13:48.836 +05:30 [Information] Request finished in 3704.2948ms 200 application/json; charset=utf-8 +2017-12-26 19:13:48.837 +05:30 [Debug] Connection id ""0HLACCO0ST9VH"" completed keep alive response. +2017-12-26 19:13:49.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:13:49.005 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:13:49.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:13:49.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:13:49.007 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3814.4694ms +2017-12-26 19:13:49.010 +05:30 [Information] Request finished in 3878.9037ms 200 application/json; charset=utf-8 +2017-12-26 19:13:49.011 +05:30 [Debug] Connection id ""0HLACCO0ST9VG"" completed keep alive response. +2017-12-26 19:13:49.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:13:49.382 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:13:49.382 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:13:49.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:13:49.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4145.1642ms +2017-12-26 19:13:49.387 +05:30 [Information] Request finished in 4154.6431ms 200 application/json; charset=utf-8 +2017-12-26 19:13:49.388 +05:30 [Debug] Connection id ""0HLACCO0ST9VK"" completed keep alive response. +2017-12-26 19:13:49.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:13:49.508 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:13:49.508 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:13:49.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:13:49.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4274.4888ms +2017-12-26 19:13:49.512 +05:30 [Information] Request finished in 4285.8456ms 200 application/json; charset=utf-8 +2017-12-26 19:13:49.512 +05:30 [Debug] Connection id ""0HLACCO0ST9VJ"" completed keep alive response. +2017-12-26 19:13:51.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 19:13:57.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["134715397262944"]) - ModelState is Valid +2017-12-26 19:14:00.197 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:14:00.199 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:14:00.199 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:14:00.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:14:00.643 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 11871.9228ms +2017-12-26 19:14:00.730 +05:30 [Information] Request finished in 11961.1899ms 200 application/json; charset=utf-8 +2017-12-26 19:14:00.744 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" completed keep alive response. +2017-12-26 19:15:51.502 +05:30 [Debug] Connection id ""0HLACCO0ST9VI"" received FIN. +2017-12-26 19:16:34.437 +05:30 [Debug] Connection id ""0HLACCO0ST9VH"" received FIN. +2017-12-26 19:16:34.438 +05:30 [Debug] Connection id ""0HLACCO0ST9VG"" received FIN. +2017-12-26 19:16:34.438 +05:30 [Debug] Connection id ""0HLACCO0ST9VJ"" received FIN. +2017-12-26 19:16:34.439 +05:30 [Debug] Connection id ""0HLACCO0ST9VK"" received FIN. +2017-12-26 19:16:34.439 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" received FIN. +2017-12-26 19:16:34.483 +05:30 [Debug] Connection id ""0HLACCO0ST9VH"" disconnecting. +2017-12-26 19:16:34.484 +05:30 [Debug] Connection id ""0HLACCO0ST9VH"" sending FIN. +2017-12-26 19:16:34.490 +05:30 [Debug] Connection id ""0HLACCO0ST9VH"" sent FIN with status "0". +2017-12-26 19:16:34.507 +05:30 [Debug] Connection id ""0HLACCO0ST9VH"" stopped. +2017-12-26 19:16:34.507 +05:30 [Debug] Connection id ""0HLACCO0ST9VG"" disconnecting. +2017-12-26 19:16:34.508 +05:30 [Debug] Connection id ""0HLACCO0ST9VG"" sending FIN. +2017-12-26 19:16:34.508 +05:30 [Debug] Connection id ""0HLACCO0ST9VJ"" disconnecting. +2017-12-26 19:16:34.509 +05:30 [Debug] Connection id ""0HLACCO0ST9VJ"" sending FIN. +2017-12-26 19:16:34.508 +05:30 [Debug] Connection id ""0HLACCO0ST9VG"" sent FIN with status "0". +2017-12-26 19:16:34.509 +05:30 [Debug] Connection id ""0HLACCO0ST9VJ"" sent FIN with status "0". +2017-12-26 19:16:34.509 +05:30 [Debug] Connection id ""0HLACCO0ST9VG"" stopped. +2017-12-26 19:16:34.509 +05:30 [Debug] Connection id ""0HLACCO0ST9VK"" disconnecting. +2017-12-26 19:16:34.509 +05:30 [Debug] Connection id ""0HLACCO0ST9VJ"" stopped. +2017-12-26 19:16:34.510 +05:30 [Debug] Connection id ""0HLACCO0ST9VK"" sending FIN. +2017-12-26 19:16:34.510 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" disconnecting. +2017-12-26 19:16:34.510 +05:30 [Debug] Connection id ""0HLACCO0ST9VK"" sent FIN with status "0". +2017-12-26 19:16:34.510 +05:30 [Debug] Connection id ""0HLACCO0ST9VK"" stopped. +2017-12-26 19:16:34.510 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" sending FIN. +2017-12-26 19:16:34.511 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" sent FIN with status "0". +2017-12-26 19:16:34.512 +05:30 [Debug] Connection id ""0HLACCO0ST9VF"" stopped. +2017-12-26 19:19:15.517 +05:30 [Debug] Hosting starting +2017-12-26 19:19:15.954 +05:30 [Debug] Hosting started +2017-12-26 19:19:16.013 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" started. +2017-12-26 19:19:16.013 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" started. +2017-12-26 19:19:16.568 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-26 19:19:16.569 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-26 19:19:16.664 +05:30 [Information] Request finished in 192.6495ms 200 +2017-12-26 19:19:16.774 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" completed keep alive response. +2017-12-26 19:19:18.473 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:19:18.551 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-26 19:19:18.551 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:19:18.626 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"38734688-2e98-49c9-aa1e-231259aae315"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-26 19:19:18.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:19:18.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-26 19:19:18.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-26 19:19:18.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-26 19:19:18.935 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:19:18.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:19:18.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:19:19.357 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 620.4125ms +2017-12-26 19:19:19.446 +05:30 [Information] Request finished in 2991.9455ms 200 application/json; charset=utf-8 +2017-12-26 19:19:19.449 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" completed keep alive response. +2017-12-26 19:19:22.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:19:28.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:19:28.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:19:28.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:19:28.787 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10067.87ms +2017-12-26 19:19:28.799 +05:30 [Information] Request finished in 10352.206ms 200 application/json; charset=utf-8 +2017-12-26 19:19:28.800 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" completed keep alive response. +2017-12-26 19:19:40.559 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:19:40.563 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:19:40.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:19:43.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:19:44.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:19:44.185 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:19:44.185 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:19:44.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3619.9391ms +2017-12-26 19:19:44.190 +05:30 [Information] Request finished in 3639.9344ms 200 application/json; charset=utf-8 +2017-12-26 19:19:44.190 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" completed keep alive response. +2017-12-26 19:19:44.256 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:19:44.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:19:44.257 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:19:47.305 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:19:47.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:19:47.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:19:47.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:19:47.819 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3562.6051ms +2017-12-26 19:19:47.822 +05:30 [Information] Request finished in 3568.0851ms 200 application/json; charset=utf-8 +2017-12-26 19:19:47.823 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" completed keep alive response. +2017-12-26 19:19:47.856 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:19:47.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:19:47.857 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:19:49.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:19:50.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:19:50.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:19:50.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:19:50.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2990.2097ms +2017-12-26 19:19:50.852 +05:30 [Information] Request finished in 2996.776ms 200 application/json; charset=utf-8 +2017-12-26 19:19:50.853 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" completed keep alive response. +2017-12-26 19:19:52.655 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:19:52.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:19:52.656 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:19:55.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:19:56.235 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:19:56.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:19:56.236 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:19:56.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3580.4237ms +2017-12-26 19:19:56.240 +05:30 [Information] Request finished in 3589.2697ms 200 application/json; charset=utf-8 +2017-12-26 19:19:56.240 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" completed keep alive response. +2017-12-26 19:20:22.094 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 203 +2017-12-26 19:20:22.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-26 19:20:22.097 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-26 19:20:25.201 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAJg3qe2igJeOlSQ6J094bOUZAUrauFMFmVZC4r1njZA7amZARGr1j6crAvf4MmQfonQiKxLqoxLZA1OHAVrCP31i5jwXH1xh7RagRe8mYYQlcdn29op2ZA0hhoxOeCdYFaYA2EmnbjVZAQ8vAZCaZCZArtUuRGAtmqdAZDZD", "Free"]) - ModelState is Valid +2017-12-26 19:20:35.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:35.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:35.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:36.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 14089.114ms +2017-12-26 19:20:36.193 +05:30 [Information] Request finished in 14103.4714ms 200 application/json; charset=utf-8 +2017-12-26 19:20:36.193 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" completed keep alive response. +2017-12-26 19:20:36.512 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:20:36.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:20:36.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:20:39.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:20:40.124 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:40.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:40.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:40.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3610.8704ms +2017-12-26 19:20:40.127 +05:30 [Information] Request finished in 3616.7662ms 200 application/json; charset=utf-8 +2017-12-26 19:20:40.128 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" completed keep alive response. +2017-12-26 19:20:40.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId= +2017-12-26 19:20:40.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 19:20:40.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 19:20:42.332 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", ""]) - ModelState is Valid +2017-12-26 19:20:44.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:44.119 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:44.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:44.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3984.6284ms +2017-12-26 19:20:44.169 +05:30 [Information] Request finished in 3993.0256ms 200 application/json; charset=utf-8 +2017-12-26 19:20:44.169 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" completed keep alive response. +2017-12-26 19:20:45.648 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 19:20:45.648 +05:30 [Debug] Connection id ""0HLACCTQ5C1ML"" started. +2017-12-26 19:20:45.648 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 19:20:45.648 +05:30 [Debug] Connection id ""0HLACCTQ5C1MM"" started. +2017-12-26 19:20:45.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 19:20:45.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 19:20:45.659 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 19:20:45.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 19:20:45.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 19:20:45.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 19:20:45.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 19:20:45.665 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 19:20:45.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 19:20:45.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 19:20:45.769 +05:30 [Debug] Connection id ""0HLACCTQ5C1MN"" started. +2017-12-26 19:20:45.769 +05:30 [Debug] Connection id ""0HLACCTQ5C1MO"" started. +2017-12-26 19:20:45.785 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 19:20:45.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 19:20:45.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 19:20:47.686 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 19:20:47.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 19:20:47.688 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 19:20:50.736 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:20:51.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:51.289 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:20:51.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:51.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:51.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5630.5529ms +2017-12-26 19:20:51.301 +05:30 [Information] Request finished in 5652.8848ms 200 application/json; charset=utf-8 +2017-12-26 19:20:51.301 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" completed keep alive response. +2017-12-26 19:20:51.457 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-26 19:20:51.458 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 19:20:51.463 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 19:20:51.485 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:20:51.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:20:51.553 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:20:51.568 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:20:51.572 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:20:52.560 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:52.560 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:20:52.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:52.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:52.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6760.3941ms +2017-12-26 19:20:52.566 +05:30 [Information] Request finished in 6791.3201ms 200 application/json; charset=utf-8 +2017-12-26 19:20:52.568 +05:30 [Debug] Connection id ""0HLACCTQ5C1MN"" completed keep alive response. +2017-12-26 19:20:53.612 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:20:53.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:53.661 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:20:53.661 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:53.661 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:53.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:53.663 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:20:53.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:53.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:53.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8017.8297ms +2017-12-26 19:20:53.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8018.9615ms +2017-12-26 19:20:53.689 +05:30 [Information] Request finished in 8044.6921ms 200 application/json; charset=utf-8 +2017-12-26 19:20:53.690 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" completed keep alive response. +2017-12-26 19:20:53.692 +05:30 [Information] Request finished in 8034.6861ms 200 application/json; charset=utf-8 +2017-12-26 19:20:53.692 +05:30 [Debug] Connection id ""0HLACCTQ5C1MM"" completed keep alive response. +2017-12-26 19:20:54.402 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:54.402 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:20:54.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:54.404 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:54.409 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8746.3374ms +2017-12-26 19:20:54.411 +05:30 [Information] Request finished in 8760.1776ms 200 application/json; charset=utf-8 +2017-12-26 19:20:54.412 +05:30 [Debug] Connection id ""0HLACCTQ5C1ML"" completed keep alive response. +2017-12-26 19:20:54.618 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:54.619 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:20:54.619 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:54.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:54.623 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6933.1491ms +2017-12-26 19:20:54.625 +05:30 [Information] Request finished in 6939.712ms 200 application/json; charset=utf-8 +2017-12-26 19:20:54.626 +05:30 [Debug] Connection id ""0HLACCTQ5C1MO"" completed keep alive response. +2017-12-26 19:20:56.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:20:56.426 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:20:56.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:20:56.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:20:56.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5002.7549ms +2017-12-26 19:20:56.470 +05:30 [Information] Request finished in 5094.0917ms 200 application/json; charset=utf-8 +2017-12-26 19:20:56.470 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" completed keep alive response. +2017-12-26 19:21:44.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=0&count=10&type=undefined +2017-12-26 19:21:44.712 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 19:21:44.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 19:21:44.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=134715397262944 +2017-12-26 19:21:44.721 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 19:21:44.725 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 19:21:46.818 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 19:21:46.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["134715397262944"]) - ModelState is Valid +2017-12-26 19:21:52.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:21:52.999 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:21:52.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:21:53.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:21:53.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 8340.5342ms +2017-12-26 19:21:54.509 +05:30 [Information] Request finished in 9788.4641ms 200 application/json; charset=utf-8 +2017-12-26 19:21:54.512 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" completed keep alive response. +2017-12-26 19:22:24.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:22:24.810 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:22:24.810 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:22:24.826 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:22:24.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 40166.8698ms +2017-12-26 19:22:24.889 +05:30 [Information] Request finished in 40188.8736ms 200 application/json; charset=utf-8 +2017-12-26 19:22:24.891 +05:30 [Debug] Connection id ""0HLACCTQ5C1MN"" completed keep alive response. +2017-12-26 19:22:55.980 +05:30 [Debug] Connection id ""0HLACCTQ5C1ML"" received FIN. +2017-12-26 19:22:55.980 +05:30 [Debug] Connection id ""0HLACCTQ5C1MM"" received FIN. +2017-12-26 19:22:55.981 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" received FIN. +2017-12-26 19:22:55.981 +05:30 [Debug] Connection id ""0HLACCTQ5C1MO"" received FIN. +2017-12-26 19:22:55.981 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" received FIN. +2017-12-26 19:22:55.981 +05:30 [Debug] Connection id ""0HLACCTQ5C1ML"" disconnecting. +2017-12-26 19:22:55.982 +05:30 [Debug] Connection id ""0HLACCTQ5C1MO"" disconnecting. +2017-12-26 19:22:55.982 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" disconnecting. +2017-12-26 19:22:55.982 +05:30 [Debug] Connection id ""0HLACCTQ5C1MM"" disconnecting. +2017-12-26 19:22:55.982 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" disconnecting. +2017-12-26 19:22:55.982 +05:30 [Debug] Connection id ""0HLACCTQ5C1ML"" sending FIN. +2017-12-26 19:22:55.983 +05:30 [Debug] Connection id ""0HLACCTQ5C1MM"" sending FIN. +2017-12-26 19:22:55.985 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" sending FIN. +2017-12-26 19:22:55.985 +05:30 [Debug] Connection id ""0HLACCTQ5C1MO"" sending FIN. +2017-12-26 19:22:55.985 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" sending FIN. +2017-12-26 19:22:55.990 +05:30 [Debug] Connection id ""0HLACCTQ5C1MO"" sent FIN with status "0". +2017-12-26 19:22:55.990 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" sent FIN with status "0". +2017-12-26 19:22:55.992 +05:30 [Debug] Connection id ""0HLACCTQ5C1MO"" stopped. +2017-12-26 19:22:55.992 +05:30 [Debug] Connection id ""0HLACCTQ5C1MK"" stopped. +2017-12-26 19:22:55.992 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" sent FIN with status "0". +2017-12-26 19:22:55.993 +05:30 [Debug] Connection id ""0HLACCTQ5C1ML"" sent FIN with status "0". +2017-12-26 19:22:55.993 +05:30 [Debug] Connection id ""0HLACCTQ5C1MJ"" stopped. +2017-12-26 19:22:55.993 +05:30 [Debug] Connection id ""0HLACCTQ5C1ML"" stopped. +2017-12-26 19:22:55.994 +05:30 [Debug] Connection id ""0HLACCTQ5C1MM"" sent FIN with status "0". +2017-12-26 19:22:55.994 +05:30 [Debug] Connection id ""0HLACCTQ5C1MM"" stopped. +2017-12-26 19:24:45.978 +05:30 [Debug] Connection id ""0HLACCTQ5C1MN"" received FIN. +2017-12-26 19:24:45.979 +05:30 [Debug] Connection id ""0HLACCTQ5C1MN"" disconnecting. +2017-12-26 19:24:45.979 +05:30 [Debug] Connection id ""0HLACCTQ5C1MN"" sending FIN. +2017-12-26 19:24:45.979 +05:30 [Debug] Connection id ""0HLACCTQ5C1MN"" sent FIN with status "0". +2017-12-26 19:24:45.980 +05:30 [Debug] Connection id ""0HLACCTQ5C1MN"" stopped. +2017-12-26 19:29:32.977 +05:30 [Debug] Hosting starting +2017-12-26 19:29:33.338 +05:30 [Debug] Hosting started +2017-12-26 19:29:33.545 +05:30 [Debug] Connection id ""0HLACD3I6JPEO"" started. +2017-12-26 19:29:33.545 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" started. +2017-12-26 19:29:33.737 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-26 19:29:33.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-26 19:29:33.820 +05:30 [Information] Request finished in 126.1946ms 200 +2017-12-26 19:29:33.891 +05:30 [Debug] Connection id ""0HLACD3I6JPEO"" completed keep alive response. +2017-12-26 19:29:35.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-26 19:29:35.298 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3d514f2d-27bf-4834-9bb5-498caf5e1f4f"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-26 19:29:35.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-26 19:29:35.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-26 19:29:35.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-26 19:29:36.003 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:29:36.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:29:36.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:29:36.370 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:29:36.372 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:29:36.412 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:29:36.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1053.0134ms +2017-12-26 19:29:36.878 +05:30 [Information] Request finished in 3201.0222ms 200 application/json; charset=utf-8 +2017-12-26 19:29:36.881 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:29:40.301 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:29:46.829 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:29:46.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:29:46.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:29:46.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10436.0643ms +2017-12-26 19:29:46.860 +05:30 [Information] Request finished in 10516.6008ms 200 application/json; charset=utf-8 +2017-12-26 19:29:46.861 +05:30 [Debug] Connection id ""0HLACD3I6JPEO"" completed keep alive response. +2017-12-26 19:30:00.130 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:30:00.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:30:00.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:30:02.025 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=10&count=30 +2017-12-26 19:30:02.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 19:30:02.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 19:30:03.223 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:30:03.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:03.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:03.769 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:03.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3634.3982ms +2017-12-26 19:30:03.773 +05:30 [Information] Request finished in 3642.1734ms 200 application/json; charset=utf-8 +2017-12-26 19:30:03.774 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:30:03.888 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:30:03.891 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:30:03.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:30:05.157 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "10", "30"]) - ModelState is Valid +2017-12-26 19:30:07.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:30:08.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:08.519 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:08.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:08.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4629.2283ms +2017-12-26 19:30:08.558 +05:30 [Information] Request finished in 4650.8179ms 200 application/json; charset=utf-8 +2017-12-26 19:30:08.589 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:30:08.682 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:30:08.683 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:30:08.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:30:10.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:30:11.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:11.348 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:11.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:11.350 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2664.9056ms +2017-12-26 19:30:11.357 +05:30 [Information] Request finished in 2680.6274ms 200 application/json; charset=utf-8 +2017-12-26 19:30:11.357 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:30:13.212 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:13.214 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:30:13.215 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:13.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:13.399 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 11368.4897ms +2017-12-26 19:30:13.412 +05:30 [Information] Request finished in 11381.098ms 200 application/json; charset=utf-8 +2017-12-26 19:30:13.415 +05:30 [Debug] Connection id ""0HLACD3I6JPEO"" completed keep alive response. +2017-12-26 19:30:13.455 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=40&count=30 +2017-12-26 19:30:13.455 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 19:30:13.457 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 19:30:16.553 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "40", "30"]) - ModelState is Valid +2017-12-26 19:30:18.377 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:18.378 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:30:18.378 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:18.380 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:18.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 4921.8766ms +2017-12-26 19:30:18.388 +05:30 [Information] Request finished in 4946.5436ms 200 application/json; charset=utf-8 +2017-12-26 19:30:18.389 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:30:18.455 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=70&count=30 +2017-12-26 19:30:18.456 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 19:30:18.456 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 19:30:21.008 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:30:21.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:30:21.011 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:30:21.517 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "70", "30"]) - ModelState is Valid +2017-12-26 19:30:24.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:30:25.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:25.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:25.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:25.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4287.1033ms +2017-12-26 19:30:25.308 +05:30 [Information] Request finished in 4299.2379ms 200 application/json; charset=utf-8 +2017-12-26 19:30:25.310 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:30:31.550 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 197 +2017-12-26 19:30:31.551 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-26 19:30:31.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-26 19:30:34.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAGO1ECzvwumb0m4cqvWTlzC6Tgx42zIahtWEev167iILqT7oTRhdBq2QPGTTkG3WphkCkKZBZCvrFcEpvT1iCKBFtcw2GRq3y2YgugJXx1bXmQYtwZAh2Oq20YlN6tZBcnj3bGEkkgzS85JAaiwhIaY4jT8D3gZDZD", "Free"]) - ModelState is Valid +2017-12-26 19:30:44.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:44.834 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:44.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:44.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 13330.037ms +2017-12-26 19:30:44.888 +05:30 [Information] Request finished in 13337.0011ms 200 application/json; charset=utf-8 +2017-12-26 19:30:44.888 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:30:45.218 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:30:45.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:30:45.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:30:48.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:30:48.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:48.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:48.813 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:48.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3594.3161ms +2017-12-26 19:30:48.817 +05:30 [Information] Request finished in 3601.2065ms 200 application/json; charset=utf-8 +2017-12-26 19:30:48.818 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:30:48.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId= +2017-12-26 19:30:48.863 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 19:30:48.864 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 19:30:51.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", ""]) - ModelState is Valid +2017-12-26 19:30:53.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:53.679 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:53.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:53.711 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4845.8625ms +2017-12-26 19:30:53.717 +05:30 [Information] Request finished in 4855.0487ms 200 application/json; charset=utf-8 +2017-12-26 19:30:53.718 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:30:55.565 +05:30 [Debug] Connection id ""0HLACD3I6JPER"" started. +2017-12-26 19:30:55.565 +05:30 [Debug] Connection id ""0HLACD3I6JPEQ"" started. +2017-12-26 19:30:55.566 +05:30 [Debug] Connection id ""0HLACD3I6JPES"" started. +2017-12-26 19:30:55.566 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 19:30:55.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 19:30:55.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 19:30:55.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 19:30:55.571 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 19:30:55.571 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 19:30:55.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 19:30:55.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 19:30:55.576 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 19:30:55.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 19:30:55.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 19:30:55.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 19:30:55.675 +05:30 [Debug] Connection id ""0HLACD3I6JPET"" started. +2017-12-26 19:30:55.686 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 19:30:55.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 19:30:55.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 19:30:58.677 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:30:58.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:30:58.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:30:58.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:30:58.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:30:59.342 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:30:59.343 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:30:59.343 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:30:59.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:30:59.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3763.9402ms +2017-12-26 19:30:59.350 +05:30 [Information] Request finished in 3786.8836ms 200 application/json; charset=utf-8 +2017-12-26 19:30:59.351 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:30:59.356 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 19:30:59.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 19:30:59.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 19:31:00.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:31:00.888 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:31:00.888 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:31:00.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:31:00.901 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5324.5449ms +2017-12-26 19:31:00.903 +05:30 [Information] Request finished in 5337.0692ms 200 application/json; charset=utf-8 +2017-12-26 19:31:00.903 +05:30 [Debug] Connection id ""0HLACD3I6JPER"" completed keep alive response. +2017-12-26 19:31:00.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:31:00.993 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:31:00.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:31:00.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:31:01.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5417.0424ms +2017-12-26 19:31:01.005 +05:30 [Information] Request finished in 5438.3627ms 200 application/json; charset=utf-8 +2017-12-26 19:31:01.005 +05:30 [Debug] Connection id ""0HLACD3I6JPES"" completed keep alive response. +2017-12-26 19:31:01.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:31:01.324 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:31:01.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:31:01.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:31:01.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5636.8275ms +2017-12-26 19:31:01.330 +05:30 [Information] Request finished in 5654.1683ms 200 application/json; charset=utf-8 +2017-12-26 19:31:01.331 +05:30 [Debug] Connection id ""0HLACD3I6JPET"" completed keep alive response. +2017-12-26 19:31:01.333 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-26 19:31:01.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 19:31:01.335 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 19:31:01.429 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:31:01.430 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:31:01.430 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:31:01.431 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:31:01.432 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5857.3188ms +2017-12-26 19:31:01.434 +05:30 [Information] Request finished in 5867.843ms 200 application/json; charset=utf-8 +2017-12-26 19:31:01.434 +05:30 [Debug] Connection id ""0HLACD3I6JPEQ"" completed keep alive response. +2017-12-26 19:31:02.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:31:03.442 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:31:03.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:31:03.682 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:31:03.683 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:31:03.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:31:03.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4327.9091ms +2017-12-26 19:31:03.696 +05:30 [Information] Request finished in 4339.8185ms 200 application/json; charset=utf-8 +2017-12-26 19:31:03.697 +05:30 [Debug] Connection id ""0HLACD3I6JPEP"" completed keep alive response. +2017-12-26 19:31:05.819 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:31:05.820 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:31:05.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:31:05.822 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:31:05.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4534.5201ms +2017-12-26 19:31:05.872 +05:30 [Information] Request finished in 4540.4921ms 200 application/json; charset=utf-8 +2017-12-26 19:31:05.873 +05:30 [Debug] Connection id ""0HLACD3I6JPER"" completed keep alive response. +2017-12-26 19:31:18.340 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=134715397262944 +2017-12-26 19:31:18.340 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=0&count=10&type=undefined +2017-12-26 19:31:18.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 19:31:18.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 19:31:18.342 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 19:31:18.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 19:31:21.408 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["134715397262944"]) - ModelState is Valid +2017-12-26 19:31:21.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 19:31:27.257 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:31:27.275 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:31:27.275 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:31:27.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:31:27.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 9050.1736ms +2017-12-26 19:31:27.908 +05:30 [Information] Request finished in 9072.676ms 200 application/json; charset=utf-8 +2017-12-26 19:31:32.868 +05:30 [Debug] Connection id ""0HLACD3I6JPES"" completed keep alive response. +2017-12-26 19:31:40.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:31:40.281 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:31:40.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:31:40.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:31:40.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 21951.074ms +2017-12-26 19:31:40.326 +05:30 [Information] Request finished in 21987.2097ms 200 application/json; charset=utf-8 +2017-12-26 19:31:40.327 +05:30 [Debug] Connection id ""0HLACD3I6JPET"" completed keep alive response. +2017-12-26 19:31:44.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:31:44.585 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:31:44.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:31:44.587 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:31:44.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 86134.9292ms +2017-12-26 19:31:44.599 +05:30 [Information] Request finished in 86144.7045ms 200 application/json; charset=utf-8 +2017-12-26 19:31:44.600 +05:30 [Debug] Connection id ""0HLACD3I6JPEO"" completed keep alive response. +2017-12-26 19:31:44.612 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=100&count=30 +2017-12-26 19:31:44.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 19:31:44.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 19:31:47.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "100", "30"]) - ModelState is Valid +2017-12-26 19:33:11.868 +05:30 [Debug] Hosting starting +2017-12-26 19:33:12.182 +05:30 [Debug] Hosting started +2017-12-26 19:33:12.425 +05:30 [Debug] Connection id ""0HLACD5JE0FO1"" started. +2017-12-26 19:33:12.443 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" started. +2017-12-26 19:33:12.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-26 19:33:12.722 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-26 19:33:12.812 +05:30 [Information] Request finished in 134.3137ms 200 +2017-12-26 19:33:12.872 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" completed keep alive response. +2017-12-26 19:33:14.397 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:33:14.880 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:33:14.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-26 19:33:14.958 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"2e338d94-0087-43f9-b72d-7c42d7a50254"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-26 19:33:15.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-26 19:33:15.169 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:33:15.338 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-26 19:33:15.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-26 19:33:15.406 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:33:15.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:33:15.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:33:15.704 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 526.6921ms +2017-12-26 19:33:15.766 +05:30 [Information] Request finished in 3108.5222ms 200 application/json; charset=utf-8 +2017-12-26 19:33:15.768 +05:30 [Debug] Connection id ""0HLACD5JE0FO1"" completed keep alive response. +2017-12-26 19:33:18.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:33:25.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:33:25.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:33:25.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:33:25.083 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9910.5242ms +2017-12-26 19:33:25.094 +05:30 [Information] Request finished in 10700.3179ms 200 application/json; charset=utf-8 +2017-12-26 19:33:25.094 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" completed keep alive response. +2017-12-26 19:33:36.018 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:33:36.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:33:36.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:33:39.134 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:33:39.635 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:33:39.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:33:39.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:33:39.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3612.0152ms +2017-12-26 19:33:39.642 +05:30 [Information] Request finished in 3627.4683ms 200 application/json; charset=utf-8 +2017-12-26 19:33:39.642 +05:30 [Debug] Connection id ""0HLACD5JE0FO1"" completed keep alive response. +2017-12-26 19:33:39.723 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:33:39.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:33:39.754 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:33:41.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:33:42.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:33:42.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:33:42.380 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:33:42.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2626.7573ms +2017-12-26 19:33:42.385 +05:30 [Information] Request finished in 2670.8045ms 200 application/json; charset=utf-8 +2017-12-26 19:33:42.385 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" completed keep alive response. +2017-12-26 19:33:42.421 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:33:42.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:33:42.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:33:45.473 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:33:45.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:33:45.969 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:33:45.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:33:45.972 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3548.0316ms +2017-12-26 19:33:45.975 +05:30 [Information] Request finished in 3553.8788ms 200 application/json; charset=utf-8 +2017-12-26 19:33:45.975 +05:30 [Debug] Connection id ""0HLACD5JE0FO1"" completed keep alive response. +2017-12-26 19:34:04.582 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:34:04.583 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:34:04.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:34:07.633 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:34:08.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:34:08.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:34:08.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:34:08.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3550.9541ms +2017-12-26 19:34:08.140 +05:30 [Information] Request finished in 3557.0452ms 200 application/json; charset=utf-8 +2017-12-26 19:34:08.140 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" completed keep alive response. +2017-12-26 19:37:54.908 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" received FIN. +2017-12-26 19:37:54.933 +05:30 [Debug] Connection id ""0HLACD5JE0FO1"" received FIN. +2017-12-26 19:37:54.980 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" disconnecting. +2017-12-26 19:37:54.980 +05:30 [Debug] Connection id ""0HLACD5JE0FO1"" disconnecting. +2017-12-26 19:37:54.981 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" sending FIN. +2017-12-26 19:37:54.983 +05:30 [Debug] Connection id ""0HLACD5JE0FO1"" sending FIN. +2017-12-26 19:37:54.992 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" sent FIN with status "0". +2017-12-26 19:37:54.993 +05:30 [Debug] Connection id ""0HLACD5JE0FO1"" sent FIN with status "-4077". +2017-12-26 19:37:54.995 +05:30 [Debug] Connection id ""0HLACD5JE0FO2"" stopped. +2017-12-26 19:37:54.999 +05:30 [Debug] Connection id ""0HLACD5JE0FO1"" stopped. +2017-12-26 19:37:55.580 +05:30 [Debug] Connection id ""0HLACD5JE0FO3"" started. +2017-12-26 19:37:55.590 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 206 +2017-12-26 19:37:55.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-26 19:37:55.606 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-26 19:38:00.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBACGZB4eNVZBJtwH5ZCiqvn4vLlUAiBwpZARoRq8536bZBlkrQraUMu2YQiYAuNf8mqAy4PZCep1iVGNSQIZAZAbyZBuP1CJeZB0DOP6GBNhBI6iZATZCiK5cbiajwXySyXk5KEIyXWrCwRzuZC8FF0NQorGG3uHqBR9aGfgZDZD", "Free"]) - ModelState is Valid +2017-12-26 19:38:08.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:08.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:08.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:08.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 12993.9459ms +2017-12-26 19:38:08.605 +05:30 [Information] Request finished in 13022.3767ms 200 application/json; charset=utf-8 +2017-12-26 19:38:08.605 +05:30 [Debug] Connection id ""0HLACD5JE0FO3"" completed keep alive response. +2017-12-26 19:38:12.371 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:38:12.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:38:12.372 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:38:15.438 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:38:15.986 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:15.986 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:15.987 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:15.988 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3616.3513ms +2017-12-26 19:38:15.990 +05:30 [Information] Request finished in 3620.2196ms 200 application/json; charset=utf-8 +2017-12-26 19:38:15.991 +05:30 [Debug] Connection id ""0HLACD5JE0FO3"" completed keep alive response. +2017-12-26 19:38:17.019 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:38:17.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:38:17.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:38:19.940 +05:30 [Debug] Connection id ""0HLACD5JE0FO4"" started. +2017-12-26 19:38:19.942 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:38:19.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:38:19.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:38:20.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:38:20.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:20.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:20.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:20.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3683.0504ms +2017-12-26 19:38:20.723 +05:30 [Information] Request finished in 3708.9039ms 200 application/json; charset=utf-8 +2017-12-26 19:38:20.728 +05:30 [Debug] Connection id ""0HLACD5JE0FO3"" completed keep alive response. +2017-12-26 19:38:20.784 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 9 +2017-12-26 19:38:20.784 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-12-26 19:38:20.785 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-12-26 19:38:22.083 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:38:22.632 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:22.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:22.633 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:22.639 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2690.1495ms +2017-12-26 19:38:22.643 +05:30 [Information] Request finished in 2701.3958ms 200 application/json; charset=utf-8 +2017-12-26 19:38:22.644 +05:30 [Debug] Connection id ""0HLACD5JE0FO4"" completed keep alive response. +2017-12-26 19:38:23.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments ([""]) - ModelState is Valid +2017-12-26 19:38:24.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:24.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:24.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:24.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3643.3652ms +2017-12-26 19:38:24.430 +05:30 [Information] Request finished in 3648.9279ms 200 application/json; charset=utf-8 +2017-12-26 19:38:24.431 +05:30 [Debug] Connection id ""0HLACD5JE0FO3"" completed keep alive response. +2017-12-26 19:38:24.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=500443&groupId= +2017-12-26 19:38:24.489 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-26 19:38:24.490 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-26 19:38:26.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["500443", ""]) - ModelState is Valid +2017-12-26 19:38:28.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:28.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:28.378 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:28.461 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3968.7632ms +2017-12-26 19:38:28.464 +05:30 [Information] Request finished in 3975.611ms 200 application/json; charset=utf-8 +2017-12-26 19:38:28.465 +05:30 [Debug] Connection id ""0HLACD5JE0FO4"" completed keep alive response. +2017-12-26 19:38:30.497 +05:30 [Debug] Connection id ""0HLACD5JE0FO5"" started. +2017-12-26 19:38:30.501 +05:30 [Debug] Connection id ""0HLACD5JE0FO6"" started. +2017-12-26 19:38:30.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=500443 +2017-12-26 19:38:30.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-26 19:38:30.505 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=500443 +2017-12-26 19:38:30.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-26 19:38:30.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-26 19:38:30.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-26 19:38:30.517 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=500443 +2017-12-26 19:38:30.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-26 19:38:30.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-26 19:38:30.551 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1152637 +2017-12-26 19:38:30.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-26 19:38:30.555 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-26 19:38:30.599 +05:30 [Debug] Connection id ""0HLACD5JE0FO7"" started. +2017-12-26 19:38:30.599 +05:30 [Debug] Connection id ""0HLACD5JE0FO8"" started. +2017-12-26 19:38:30.602 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=500443 +2017-12-26 19:38:30.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1152637&userId=500443 +2017-12-26 19:38:30.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-26 19:38:30.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-26 19:38:30.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-26 19:38:30.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-26 19:38:33.217 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:38:33.249 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:38:33.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:38:33.873 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:38:33.886 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:38:33.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["500443"]) - ModelState is Valid +2017-12-26 19:38:33.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:33.976 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:38:33.976 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:33.982 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:34.019 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3450.5243ms +2017-12-26 19:38:34.022 +05:30 [Information] Request finished in 3519.8685ms 200 application/json; charset=utf-8 +2017-12-26 19:38:34.023 +05:30 [Debug] Connection id ""0HLACD5JE0FO6"" completed keep alive response. +2017-12-26 19:38:34.038 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1152637 +2017-12-26 19:38:34.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-26 19:38:34.042 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-26 19:38:35.571 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:35.572 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:38:35.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:35.573 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:35.582 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5073.8308ms +2017-12-26 19:38:35.590 +05:30 [Information] Request finished in 5087.9403ms 200 application/json; charset=utf-8 +2017-12-26 19:38:35.590 +05:30 [Debug] Connection id ""0HLACD5JE0FO4"" completed keep alive response. +2017-12-26 19:38:35.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=134715397262944&userId=500443&skip=0&count=10&type=undefined +2017-12-26 19:38:35.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-12-26 19:38:35.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-12-26 19:38:35.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:35.797 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:38:35.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:35.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:35.804 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5298.0026ms +2017-12-26 19:38:35.807 +05:30 [Information] Request finished in 5309.7997ms 200 application/json; charset=utf-8 +2017-12-26 19:38:35.807 +05:30 [Debug] Connection id ""0HLACD5JE0FO3"" completed keep alive response. +2017-12-26 19:38:35.810 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/fbtype?profileId=134715397262944 +2017-12-26 19:38:35.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/fbtype"'. +2017-12-26 19:38:35.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" +2017-12-26 19:38:36.350 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:36.350 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:38:36.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:36.351 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:36.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5835.2192ms +2017-12-26 19:38:36.362 +05:30 [Information] Request finished in 5863.6525ms 200 application/json; charset=utf-8 +2017-12-26 19:38:36.362 +05:30 [Debug] Connection id ""0HLACD5JE0FO5"" completed keep alive response. +2017-12-26 19:38:36.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:36.411 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:38:36.411 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:36.412 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:36.414 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5803.4146ms +2017-12-26 19:38:36.417 +05:30 [Information] Request finished in 5817.5732ms 200 application/json; charset=utf-8 +2017-12-26 19:38:36.418 +05:30 [Debug] Connection id ""0HLACD5JE0FO7"" completed keep alive response. +2017-12-26 19:38:36.467 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:36.468 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:38:36.468 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:36.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:36.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5865.1951ms +2017-12-26 19:38:36.482 +05:30 [Information] Request finished in 5880.8982ms 200 application/json; charset=utf-8 +2017-12-26 19:38:36.482 +05:30 [Debug] Connection id ""0HLACD5JE0FO8"" completed keep alive response. +2017-12-26 19:38:37.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1152637"]) - ModelState is Valid +2017-12-26 19:38:38.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["134715397262944", "500443", "0", "10"]) - ModelState is Valid +2017-12-26 19:38:42.184 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" with arguments (["134715397262944"]) - ModelState is Valid +2017-12-26 19:38:42.696 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:42.697 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:38:42.697 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:42.698 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:42.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.Fbtype (Api.Socioboard)" in 6906.0821ms +2017-12-26 19:38:42.720 +05:30 [Information] Request finished in 6910.1684ms 200 application/json; charset=utf-8 +2017-12-26 19:38:42.721 +05:30 [Debug] Connection id ""0HLACD5JE0FO3"" completed keep alive response. +2017-12-26 19:38:42.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:42.768 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:38:42.768 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:42.769 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:42.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8771.4206ms +2017-12-26 19:38:42.835 +05:30 [Information] Request finished in 8794.7163ms 200 application/json; charset=utf-8 +2017-12-26 19:38:42.835 +05:30 [Debug] Connection id ""0HLACD5JE0FO6"" completed keep alive response. +2017-12-26 19:38:46.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-26 19:38:46.974 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-26 19:38:46.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-26 19:38:46.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-26 19:38:47.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 11412.8684ms +2017-12-26 19:38:47.013 +05:30 [Information] Request finished in 11418.7294ms 200 application/json; charset=utf-8 +2017-12-26 19:38:47.014 +05:30 [Debug] Connection id ""0HLACD5JE0FO4"" completed keep alive response. +2017-12-26 19:40:16.813 +05:30 [Debug] Connection id ""0HLACD5JE0FO7"" received FIN. +2017-12-26 19:40:16.813 +05:30 [Debug] Connection id ""0HLACD5JE0FO5"" received FIN. +2017-12-26 19:40:16.813 +05:30 [Debug] Connection id ""0HLACD5JE0FO8"" received FIN. diff --git a/src/Api.Socioboard/wwwroot/log/log-20171227.txt b/src/Api.Socioboard/wwwroot/log/log-20171227.txt new file mode 100644 index 000000000..f1c586dde --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171227.txt @@ -0,0 +1,4820 @@ +2017-12-27 10:26:08.895 +05:30 [Debug] Hosting starting +2017-12-27 10:26:09.265 +05:30 [Debug] Hosting started +2017-12-27 10:26:09.361 +05:30 [Debug] Connection id ""0HLACSOIJGMHT"" started. +2017-12-27 10:26:09.372 +05:30 [Debug] Connection id ""0HLACSOIJGMHU"" started. +2017-12-27 10:26:09.595 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-27 10:26:09.596 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-27 10:26:09.670 +05:30 [Information] Request finished in 115.7052ms 200 +2017-12-27 10:26:09.725 +05:30 [Debug] Connection id ""0HLACSOIJGMHT"" completed keep alive response. +2017-12-27 10:26:11.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-27 10:26:11.551 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"8f2c8791-5488-4988-8c04-4d318e295c47"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-27 10:26:11.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-27 10:26:11.890 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-27 10:26:11.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-27 10:26:11.944 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:26:11.950 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:26:11.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:26:12.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 640.6849ms +2017-12-27 10:26:12.417 +05:30 [Information] Request finished in 2885.1801ms 200 application/json; charset=utf-8 +2017-12-27 10:26:12.419 +05:30 [Debug] Connection id ""0HLACSOIJGMHU"" completed keep alive response. +2017-12-27 10:26:12.440 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-27 10:26:12.443 +05:30 [Debug] Request did not match any routes. +2017-12-27 10:26:12.466 +05:30 [Debug] The request path "" does not match the path filter +2017-12-27 10:26:12.468 +05:30 [Information] Request finished in 28.3437ms 404 +2017-12-27 10:26:12.468 +05:30 [Debug] Connection id ""0HLACSOIJGMHT"" completed keep alive response. +2017-12-27 10:28:00.233 +05:30 [Debug] Connection id ""0HLACSOIJGMHU"" received FIN. +2017-12-27 10:28:00.233 +05:30 [Debug] Connection id ""0HLACSOIJGMHT"" received FIN. +2017-12-27 10:28:00.234 +05:30 [Debug] Connection id ""0HLACSOIJGMHU"" disconnecting. +2017-12-27 10:28:00.235 +05:30 [Debug] Connection id ""0HLACSOIJGMHT"" disconnecting. +2017-12-27 10:28:00.236 +05:30 [Debug] Connection id ""0HLACSOIJGMHU"" sending FIN. +2017-12-27 10:28:00.236 +05:30 [Debug] Connection id ""0HLACSOIJGMHT"" sending FIN. +2017-12-27 10:28:00.246 +05:30 [Debug] Connection id ""0HLACSOIJGMHU"" sent FIN with status "0". +2017-12-27 10:28:00.247 +05:30 [Debug] Connection id ""0HLACSOIJGMHT"" sent FIN with status "0". +2017-12-27 10:28:00.251 +05:30 [Debug] Connection id ""0HLACSOIJGMHU"" stopped. +2017-12-27 10:28:00.251 +05:30 [Debug] Connection id ""0HLACSOIJGMHT"" stopped. +2017-12-27 10:28:14.126 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" started. +2017-12-27 10:28:14.145 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 206 +2017-12-27 10:28:14.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-27 10:28:14.156 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-27 10:28:17.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAJDIZAQ5RcmkFrZC1uRZCjyNz7uRzZAUKcTbYpwvZCZC3fAZBrWi3X5MJ41mKIq3NY3c1NDpoFSroc8zXhvOMd9tO44ZBl0M6vVedOjRZC9pSFxvowZAKf9HMJl7GHNZBpRZCLG0hhNRqLrkzGDz4gvXkPGh5nQ5kiZCF4gZDZD", "Free"]) - ModelState is Valid +2017-12-27 10:28:30.592 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:28:30.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:28:30.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:28:30.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 16565.3189ms +2017-12-27 10:28:30.724 +05:30 [Information] Request finished in 16592.7237ms 200 application/json; charset=utf-8 +2017-12-27 10:28:30.725 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" completed keep alive response. +2017-12-27 10:28:31.629 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-27 10:28:31.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 10:28:31.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 10:28:34.719 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-27 10:28:36.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:28:36.422 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:28:36.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:28:36.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4835.8011ms +2017-12-27 10:28:36.470 +05:30 [Information] Request finished in 4841.9199ms 200 application/json; charset=utf-8 +2017-12-27 10:28:36.471 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" completed keep alive response. +2017-12-27 10:28:40.437 +05:30 [Debug] Connection id ""0HLACSOIJGMI0"" started. +2017-12-27 10:28:40.438 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 10:28:40.438 +05:30 [Debug] Connection id ""0HLACSOIJGMI1"" started. +2017-12-27 10:28:40.438 +05:30 [Debug] Connection id ""0HLACSOIJGMI2"" started. +2017-12-27 10:28:40.438 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 10:28:40.460 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 10:28:40.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 10:28:40.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 10:28:40.461 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 10:28:40.462 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 10:28:40.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 10:28:40.463 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 10:28:40.464 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 10:28:40.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 10:28:40.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 10:28:40.641 +05:30 [Debug] Connection id ""0HLACSOIJGMI3"" started. +2017-12-27 10:28:40.641 +05:30 [Debug] Connection id ""0HLACSOIJGMI4"" started. +2017-12-27 10:28:41.252 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 10:28:41.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 10:28:41.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 10:28:42.255 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 10:28:42.255 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 10:28:42.256 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 10:28:45.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 10:28:45.379 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 10:28:45.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 10:28:45.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 10:28:45.547 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 10:28:45.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 10:28:45.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:28:45.898 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:28:45.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:28:45.901 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:28:45.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5448.7488ms +2017-12-27 10:28:45.918 +05:30 [Information] Request finished in 5479.6676ms 200 application/json; charset=utf-8 +2017-12-27 10:28:45.919 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" completed keep alive response. +2017-12-27 10:28:45.926 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-27 10:28:45.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-27 10:28:45.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-27 10:28:47.485 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:28:47.485 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:28:47.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:28:47.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:28:47.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6984.1687ms +2017-12-27 10:28:47.495 +05:30 [Information] Request finished in 7055.4549ms 200 application/json; charset=utf-8 +2017-12-27 10:28:47.496 +05:30 [Debug] Connection id ""0HLACSOIJGMI2"" completed keep alive response. +2017-12-27 10:28:47.568 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:28:47.583 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:28:47.583 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:28:47.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:28:47.583 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7125.7666ms +2017-12-27 10:28:47.583 +05:30 [Information] Request finished in 7153.242ms 200 application/json; charset=utf-8 +2017-12-27 10:28:47.583 +05:30 [Debug] Connection id ""0HLACSOIJGMI1"" completed keep alive response. +2017-12-27 10:28:47.964 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:28:47.964 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:28:47.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:28:47.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:28:47.964 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7511.7142ms +2017-12-27 10:28:47.964 +05:30 [Information] Request finished in 7538.1978ms 200 application/json; charset=utf-8 +2017-12-27 10:28:47.964 +05:30 [Debug] Connection id ""0HLACSOIJGMI0"" completed keep alive response. +2017-12-27 10:28:48.016 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:28:48.016 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:28:48.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:28:48.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:28:48.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6776.7005ms +2017-12-27 10:28:48.032 +05:30 [Information] Request finished in 6781.69ms 200 application/json; charset=utf-8 +2017-12-27 10:28:48.032 +05:30 [Debug] Connection id ""0HLACSOIJGMI3"" completed keep alive response. +2017-12-27 10:28:48.084 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:28:48.084 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:28:48.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:28:48.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:28:48.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5840.4395ms +2017-12-27 10:28:48.099 +05:30 [Information] Request finished in 5845.159ms 200 application/json; charset=utf-8 +2017-12-27 10:28:48.099 +05:30 [Debug] Connection id ""0HLACSOIJGMI4"" completed keep alive response. +2017-12-27 10:28:49.030 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 10:28:51.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:28:51.379 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:28:51.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:28:51.380 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:28:51.462 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5532.358ms +2017-12-27 10:28:51.464 +05:30 [Information] Request finished in 5540.7751ms 200 application/json; charset=utf-8 +2017-12-27 10:28:51.464 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" completed keep alive response. +2017-12-27 10:29:50.232 +05:30 [Debug] Connection id ""0HLACSOIJGMI1"" received FIN. +2017-12-27 10:29:50.232 +05:30 [Debug] Connection id ""0HLACSOIJGMI2"" received FIN. +2017-12-27 10:29:50.232 +05:30 [Debug] Connection id ""0HLACSOIJGMI1"" disconnecting. +2017-12-27 10:29:50.232 +05:30 [Debug] Connection id ""0HLACSOIJGMI0"" received FIN. +2017-12-27 10:29:50.233 +05:30 [Debug] Connection id ""0HLACSOIJGMI2"" disconnecting. +2017-12-27 10:29:50.233 +05:30 [Debug] Connection id ""0HLACSOIJGMI3"" received FIN. +2017-12-27 10:29:50.233 +05:30 [Debug] Connection id ""0HLACSOIJGMI0"" disconnecting. +2017-12-27 10:29:50.233 +05:30 [Debug] Connection id ""0HLACSOIJGMI1"" sending FIN. +2017-12-27 10:29:50.233 +05:30 [Debug] Connection id ""0HLACSOIJGMI3"" disconnecting. +2017-12-27 10:29:50.233 +05:30 [Debug] Connection id ""0HLACSOIJGMI0"" sending FIN. +2017-12-27 10:29:50.234 +05:30 [Debug] Connection id ""0HLACSOIJGMI3"" sending FIN. +2017-12-27 10:29:50.235 +05:30 [Debug] Connection id ""0HLACSOIJGMI3"" sent FIN with status "0". +2017-12-27 10:29:50.233 +05:30 [Debug] Connection id ""0HLACSOIJGMI4"" received FIN. +2017-12-27 10:29:50.235 +05:30 [Debug] Connection id ""0HLACSOIJGMI3"" stopped. +2017-12-27 10:29:50.235 +05:30 [Debug] Connection id ""0HLACSOIJGMI2"" sending FIN. +2017-12-27 10:29:50.235 +05:30 [Debug] Connection id ""0HLACSOIJGMI0"" sent FIN with status "0". +2017-12-27 10:29:50.236 +05:30 [Debug] Connection id ""0HLACSOIJGMI2"" sent FIN with status "0". +2017-12-27 10:29:50.236 +05:30 [Debug] Connection id ""0HLACSOIJGMI0"" stopped. +2017-12-27 10:29:50.236 +05:30 [Debug] Connection id ""0HLACSOIJGMI2"" stopped. +2017-12-27 10:29:50.236 +05:30 [Debug] Connection id ""0HLACSOIJGMI1"" sent FIN with status "0". +2017-12-27 10:29:50.239 +05:30 [Debug] Connection id ""0HLACSOIJGMI1"" stopped. +2017-12-27 10:29:50.239 +05:30 [Debug] Connection id ""0HLACSOIJGMI4"" disconnecting. +2017-12-27 10:29:50.239 +05:30 [Debug] Connection id ""0HLACSOIJGMI4"" sending FIN. +2017-12-27 10:29:50.240 +05:30 [Debug] Connection id ""0HLACSOIJGMI4"" sent FIN with status "0". +2017-12-27 10:29:50.240 +05:30 [Debug] Connection id ""0HLACSOIJGMI4"" stopped. +2017-12-27 10:31:39.742 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" received FIN. +2017-12-27 10:31:39.742 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" disconnecting. +2017-12-27 10:31:39.744 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" sending FIN. +2017-12-27 10:31:39.744 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" sent FIN with status "0". +2017-12-27 10:31:39.744 +05:30 [Debug] Connection id ""0HLACSOIJGMHV"" stopped. +2017-12-27 10:45:36.637 +05:30 [Debug] Connection id ""0HLACSOIJGMI5"" started. +2017-12-27 10:45:36.659 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchDataTrending?network=general&skip=0&count=30 +2017-12-27 10:45:36.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchDataTrending"'. +2017-12-27 10:45:36.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" +2017-12-27 10:45:38.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" with arguments (["general", "0", "30"]) - ModelState is Valid +2017-12-27 10:45:52.733 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:45:52.733 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:45:52.733 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:45:52.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:45:52.760 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchDataTrending (Api.Socioboard)" in 16096.2716ms +2017-12-27 10:45:52.763 +05:30 [Information] Request finished in 16124.1628ms 200 application/json; charset=utf-8 +2017-12-27 10:45:52.763 +05:30 [Debug] Connection id ""0HLACSOIJGMI5"" completed keep alive response. +2017-12-27 10:48:09.743 +05:30 [Debug] Connection id ""0HLACSOIJGMI5"" received FIN. +2017-12-27 10:48:09.744 +05:30 [Debug] Connection id ""0HLACSOIJGMI5"" disconnecting. +2017-12-27 10:48:09.744 +05:30 [Debug] Connection id ""0HLACSOIJGMI5"" sending FIN. +2017-12-27 10:48:09.745 +05:30 [Debug] Connection id ""0HLACSOIJGMI5"" sent FIN with status "0". +2017-12-27 10:48:09.745 +05:30 [Debug] Connection id ""0HLACSOIJGMI5"" stopped. +2017-12-27 10:48:36.529 +05:30 [Debug] Connection id ""0HLACSOIJGMI6"" started. +2017-12-27 10:48:36.530 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=urlfb_133524017182208&userId=48&message=http%3A%2F%2Fwww.mirror.co.uk%2Fnews%2Fuk-news%2Fpanic-oxford-street-hundreds-shoppers-11754563&imagePath=https%3A%2F%2Fi2-prod.mirror.co.uk%2Fincoming%2Farticle11728681.ece%2FALTERNATES%2Fs1200%2FPROD-Shoppers-flock-to-Oxford-Street-for-Christmas-gifts-in-London.jpg multipart/form-data; boundary=----WebKitFormBoundaryCKkMNyHwtyOALebP 145 +2017-12-27 10:48:36.531 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-12-27 10:48:36.534 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-12-27 10:48:39.637 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["http://www.mirror.co.uk/news/uk-news/panic-oxford-street-hundreds-shoppers-11754563", "urlfb_133524017182208", "48", "https://i2-prod.mirror.co.uk/incoming/article11728681.ece/ALTERNATES/s1200/PROD-Shoppers-flock-to-Oxford-Street-for-Christmas-gifts-in-London.jpg", "", "defaultUri", "NoMedia", ""]) - ModelState is Valid +2017-12-27 10:48:39.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:48:39.646 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:48:39.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-27 10:48:39.675 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:48:39.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 3148.194ms +2017-12-27 10:48:39.687 +05:30 [Information] Request finished in 3156.8282ms 200 text/plain; charset=utf-8 +2017-12-27 10:48:39.687 +05:30 [Debug] Connection id ""0HLACSOIJGMI6"" completed keep alive response. +2017-12-27 10:50:00.231 +05:30 [Debug] Connection id ""0HLACSOIJGMI6"" received FIN. +2017-12-27 10:50:00.231 +05:30 [Debug] Connection id ""0HLACSOIJGMI6"" disconnecting. +2017-12-27 10:50:00.231 +05:30 [Debug] Connection id ""0HLACSOIJGMI6"" sending FIN. +2017-12-27 10:50:00.232 +05:30 [Debug] Connection id ""0HLACSOIJGMI6"" sent FIN with status "0". +2017-12-27 10:50:00.232 +05:30 [Debug] Connection id ""0HLACSOIJGMI6"" stopped. +2017-12-27 10:54:31.824 +05:30 [Debug] Connection id ""0HLACSOIJGMI7"" started. +2017-12-27 10:54:31.825 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPageReportData?profileId=1155481037833115&daysCount=90 +2017-12-27 10:54:31.826 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPageReportData"'. +2017-12-27 10:54:31.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" +2017-12-27 10:54:34.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-27 10:54:35.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:54:35.320 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:54:35.320 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:54:35.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:54:35.357 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPageReportData (Api.Socioboard)" in 3526.7057ms +2017-12-27 10:54:35.361 +05:30 [Information] Request finished in 3535.571ms 200 application/json; charset=utf-8 +2017-12-27 10:54:35.361 +05:30 [Debug] Connection id ""0HLACSOIJGMI7"" completed keep alive response. +2017-12-27 10:54:35.410 +05:30 [Debug] Connection id ""0HLACSOIJGMI8"" started. +2017-12-27 10:54:35.411 +05:30 [Debug] Connection id ""0HLACSOIJGMI9"" started. +2017-12-27 10:54:35.411 +05:30 [Debug] Connection id ""0HLACSOIJGMIA"" started. +2017-12-27 10:54:35.411 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/getFacebookPagePostallDet?userId=48 +2017-12-27 10:54:35.411 +05:30 [Debug] Connection id ""0HLACSOIJGMIB"" started. +2017-12-27 10:54:35.412 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/getFacebookPagePostallDet"'. +2017-12-27 10:54:35.417 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbTotalFanpage?userId=48&days=90 +2017-12-27 10:54:35.417 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbTotalFanpage"'. +2017-12-27 10:54:35.417 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" +2017-12-27 10:54:35.430 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-27 10:54:35.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-27 10:54:35.434 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-27 10:54:35.436 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFbFanpageDetailsRep?userId=48 +2017-12-27 10:54:35.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFbFanpageDetailsRep"'. +2017-12-27 10:54:35.441 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" +2017-12-27 10:54:35.451 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/FacaebookPageReports/GetFacebookPagePostData?profileId=1155481037833115&daysCount=90 +2017-12-27 10:54:35.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/FacaebookPageReports/GetFacebookPagePostData"'. +2017-12-27 10:54:35.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" +2017-12-27 10:54:35.464 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" +2017-12-27 10:54:38.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 10:54:38.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 10:54:38.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-27 10:54:40.259 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" with arguments (["1155481037833115", "90"]) - ModelState is Valid +2017-12-27 10:54:40.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" with arguments (["48", "90"]) - ModelState is Valid +2017-12-27 10:54:42.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:54:42.460 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:54:42.460 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:54:42.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:54:42.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 7024.0356ms +2017-12-27 10:54:42.520 +05:30 [Information] Request finished in 7084.0073ms 200 application/json; charset=utf-8 +2017-12-27 10:54:42.521 +05:30 [Debug] Connection id ""0HLACSOIJGMIB"" completed keep alive response. +2017-12-27 10:54:43.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:54:43.251 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:54:43.251 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:54:43.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:54:43.259 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFacebookPagePostData (Api.Socioboard)" in 7824.1072ms +2017-12-27 10:54:43.263 +05:30 [Information] Request finished in 7837.6024ms 200 application/json; charset=utf-8 +2017-12-27 10:54:43.264 +05:30 [Debug] Connection id ""0HLACSOIJGMIA"" completed keep alive response. +2017-12-27 10:54:44.517 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:54:44.518 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:54:44.518 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:54:44.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:54:44.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbTotalFanpage (Api.Socioboard)" in 9059.8441ms +2017-12-27 10:54:44.527 +05:30 [Information] Request finished in 9113.957ms 200 application/json; charset=utf-8 +2017-12-27 10:54:44.527 +05:30 [Debug] Connection id ""0HLACSOIJGMI8"" completed keep alive response. +2017-12-27 10:54:45.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:54:45.194 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:54:45.194 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:54:45.197 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:54:45.205 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.GetFbFanpageDetailsRep (Api.Socioboard)" in 9756.5609ms +2017-12-27 10:54:45.217 +05:30 [Information] Request finished in 9781.1368ms 200 application/json; charset=utf-8 +2017-12-27 10:54:45.217 +05:30 [Debug] Connection id ""0HLACSOIJGMI9"" completed keep alive response. +2017-12-27 10:54:45.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 10:54:45.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 10:54:45.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 10:54:45.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 10:54:45.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacaebookPageReportsController.getFacebookPagePostallDet (Api.Socioboard)" in 10446.3307ms +2017-12-27 10:54:45.884 +05:30 [Information] Request finished in 10474.5202ms 200 application/json; charset=utf-8 +2017-12-27 10:54:45.884 +05:30 [Debug] Connection id ""0HLACSOIJGMI7"" completed keep alive response. +2017-12-27 10:57:20.232 +05:30 [Debug] Connection id ""0HLACSOIJGMIB"" received FIN. +2017-12-27 10:57:20.232 +05:30 [Debug] Connection id ""0HLACSOIJGMIA"" received FIN. +2017-12-27 10:57:20.232 +05:30 [Debug] Connection id ""0HLACSOIJGMIB"" disconnecting. +2017-12-27 10:57:20.232 +05:30 [Debug] Connection id ""0HLACSOIJGMIA"" disconnecting. +2017-12-27 10:57:20.233 +05:30 [Debug] Connection id ""0HLACSOIJGMIA"" sending FIN. +2017-12-27 10:57:20.232 +05:30 [Debug] Connection id ""0HLACSOIJGMIB"" sending FIN. +2017-12-27 10:57:20.233 +05:30 [Debug] Connection id ""0HLACSOIJGMIA"" sent FIN with status "0". +2017-12-27 10:57:20.233 +05:30 [Debug] Connection id ""0HLACSOIJGMIB"" sent FIN with status "0". +2017-12-27 10:57:20.233 +05:30 [Debug] Connection id ""0HLACSOIJGMIA"" stopped. +2017-12-27 10:57:20.233 +05:30 [Debug] Connection id ""0HLACSOIJGMIB"" stopped. +2017-12-27 10:57:20.234 +05:30 [Debug] Connection id ""0HLACSOIJGMI8"" received FIN. +2017-12-27 10:57:20.234 +05:30 [Debug] Connection id ""0HLACSOIJGMI9"" received FIN. +2017-12-27 10:57:20.234 +05:30 [Debug] Connection id ""0HLACSOIJGMI7"" received FIN. +2017-12-27 10:57:20.234 +05:30 [Debug] Connection id ""0HLACSOIJGMI8"" disconnecting. +2017-12-27 10:57:20.235 +05:30 [Debug] Connection id ""0HLACSOIJGMI8"" sending FIN. +2017-12-27 10:57:20.235 +05:30 [Debug] Connection id ""0HLACSOIJGMI7"" disconnecting. +2017-12-27 10:57:20.235 +05:30 [Debug] Connection id ""0HLACSOIJGMI7"" sending FIN. +2017-12-27 10:57:20.235 +05:30 [Debug] Connection id ""0HLACSOIJGMI8"" sent FIN with status "0". +2017-12-27 10:57:20.236 +05:30 [Debug] Connection id ""0HLACSOIJGMI7"" sent FIN with status "0". +2017-12-27 10:57:20.236 +05:30 [Debug] Connection id ""0HLACSOIJGMI8"" stopped. +2017-12-27 10:57:20.236 +05:30 [Debug] Connection id ""0HLACSOIJGMI7"" stopped. +2017-12-27 10:57:20.235 +05:30 [Debug] Connection id ""0HLACSOIJGMI9"" disconnecting. +2017-12-27 10:57:20.237 +05:30 [Debug] Connection id ""0HLACSOIJGMI9"" sending FIN. +2017-12-27 10:57:20.237 +05:30 [Debug] Connection id ""0HLACSOIJGMI9"" sent FIN with status "0". +2017-12-27 10:57:20.237 +05:30 [Debug] Connection id ""0HLACSOIJGMI9"" stopped. +2017-12-27 16:13:31.408 +05:30 [Debug] Hosting starting +2017-12-27 16:13:32.140 +05:30 [Debug] Hosting started +2017-12-27 16:13:32.323 +05:30 [Debug] Connection id ""0HLAD2QM9F6EF"" started. +2017-12-27 16:13:32.326 +05:30 [Debug] Connection id ""0HLAD2QM9F6EG"" started. +2017-12-27 16:13:32.728 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-27 16:13:32.728 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-27 16:13:32.836 +05:30 [Information] Request finished in 137.3311ms 200 +2017-12-27 16:13:32.972 +05:30 [Debug] Connection id ""0HLAD2QM9F6EG"" completed keep alive response. +2017-12-27 16:13:34.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-27 16:13:34.587 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3413efee-beb1-4467-b852-06a47e3ce631"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-27 16:13:34.929 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-27 16:13:35.099 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-27 16:13:35.102 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-27 16:13:35.168 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:13:35.174 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:13:35.177 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:13:35.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 714.9446ms +2017-12-27 16:13:35.744 +05:30 [Information] Request finished in 3076.2103ms 200 application/json; charset=utf-8 +2017-12-27 16:13:35.746 +05:30 [Debug] Connection id ""0HLAD2QM9F6EF"" completed keep alive response. +2017-12-27 16:14:35.764 +05:30 [Debug] Connection id ""0HLAD2QM9F6EG"" received FIN. +2017-12-27 16:14:35.765 +05:30 [Debug] Connection id ""0HLAD2QM9F6EF"" received FIN. +2017-12-27 16:14:35.767 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" started. +2017-12-27 16:14:35.892 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 199 +2017-12-27 16:14:35.893 +05:30 [Debug] Connection id ""0HLAD2QM9F6EF"" disconnecting. +2017-12-27 16:14:35.894 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-27 16:14:35.894 +05:30 [Debug] Connection id ""0HLAD2QM9F6EG"" disconnecting. +2017-12-27 16:14:35.895 +05:30 [Debug] Connection id ""0HLAD2QM9F6EF"" sending FIN. +2017-12-27 16:14:35.895 +05:30 [Debug] Connection id ""0HLAD2QM9F6EG"" sending FIN. +2017-12-27 16:14:35.904 +05:30 [Debug] Connection id ""0HLAD2QM9F6EF"" sent FIN with status "0". +2017-12-27 16:14:35.905 +05:30 [Debug] Connection id ""0HLAD2QM9F6EG"" sent FIN with status "0". +2017-12-27 16:14:35.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-27 16:14:35.914 +05:30 [Debug] Connection id ""0HLAD2QM9F6EF"" stopped. +2017-12-27 16:14:35.916 +05:30 [Debug] Connection id ""0HLAD2QM9F6EG"" stopped. +2017-12-27 16:14:39.767 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAHcTobSQjMTKiVtPOx7PiFAZCpujaE8lI6GfFAHCHNuMowZBN9ZBS3OsLmxrX9N9P0tuatvZCIuHzW4qNThuKdzfmie3GyCILCAjZBPo6ZBMMQEAhwH0rsUTD2Nk5PjrKofQHmzK4jlfNoLJW2cB3ElTWRbtgprAZDZD", "Free"]) - ModelState is Valid +2017-12-27 16:14:54.563 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:14:54.591 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:14:54.593 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:14:54.781 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 18871.0952ms +2017-12-27 16:14:54.785 +05:30 [Information] Request finished in 18892.2966ms 200 application/json; charset=utf-8 +2017-12-27 16:14:54.785 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" completed keep alive response. +2017-12-27 16:14:55.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-27 16:14:55.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 16:14:55.380 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 16:14:58.530 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-27 16:15:00.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:00.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:00.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:00.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4956.8361ms +2017-12-27 16:15:00.343 +05:30 [Information] Request finished in 4968.6258ms 200 application/json; charset=utf-8 +2017-12-27 16:15:00.343 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" completed keep alive response. +2017-12-27 16:15:03.500 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" started. +2017-12-27 16:15:03.504 +05:30 [Debug] Connection id ""0HLAD2QM9F6EJ"" started. +2017-12-27 16:15:03.505 +05:30 [Debug] Connection id ""0HLAD2QM9F6EK"" started. +2017-12-27 16:15:03.510 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 16:15:03.511 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 16:15:03.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 16:15:03.550 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 16:15:03.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 16:15:03.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 16:15:03.591 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 16:15:03.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 16:15:03.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 16:15:03.615 +05:30 [Debug] Connection id ""0HLAD2QM9F6EL"" started. +2017-12-27 16:15:03.615 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" started. +2017-12-27 16:15:03.622 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 16:15:03.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 16:15:03.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 16:15:06.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 16:15:06.277 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 16:15:06.278 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 16:15:07.280 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 16:15:07.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 16:15:07.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 16:15:09.397 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:10.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:10.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:10.441 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:10.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:10.492 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:10.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:10.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:10.518 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:10.521 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:10.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3258.2607ms +2017-12-27 16:15:10.548 +05:30 [Information] Request finished in 3267.4152ms 200 application/json; charset=utf-8 +2017-12-27 16:15:10.549 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" completed keep alive response. +2017-12-27 16:15:10.564 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-27 16:15:10.565 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-27 16:15:10.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-27 16:15:11.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:11.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:11.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:11.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:11.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7470.7097ms +2017-12-27 16:15:11.026 +05:30 [Information] Request finished in 7519.5992ms 200 application/json; charset=utf-8 +2017-12-27 16:15:11.026 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" completed keep alive response. +2017-12-27 16:15:12.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:12.380 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:12.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:12.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:12.396 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 8882.1052ms +2017-12-27 16:15:12.400 +05:30 [Information] Request finished in 8916.0897ms 200 application/json; charset=utf-8 +2017-12-27 16:15:12.400 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" completed keep alive response. +2017-12-27 16:15:12.622 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:12.622 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:12.622 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:12.623 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:12.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 9028.6929ms +2017-12-27 16:15:12.629 +05:30 [Information] Request finished in 9117.431ms 200 application/json; charset=utf-8 +2017-12-27 16:15:12.629 +05:30 [Debug] Connection id ""0HLAD2QM9F6EJ"" completed keep alive response. +2017-12-27 16:15:12.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:12.972 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:12.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:12.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:12.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6694.7238ms +2017-12-27 16:15:12.997 +05:30 [Information] Request finished in 6713.8486ms 200 application/json; charset=utf-8 +2017-12-27 16:15:12.997 +05:30 [Debug] Connection id ""0HLAD2QM9F6EL"" completed keep alive response. +2017-12-27 16:15:13.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:13.029 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:13.029 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:13.030 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:13.033 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 9407.5586ms +2017-12-27 16:15:13.038 +05:30 [Information] Request finished in 9528.8542ms 200 application/json; charset=utf-8 +2017-12-27 16:15:13.039 +05:30 [Debug] Connection id ""0HLAD2QM9F6EK"" completed keep alive response. +2017-12-27 16:15:13.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:15.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:15.972 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:15.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:15.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:16.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5473.0142ms +2017-12-27 16:15:16.043 +05:30 [Information] Request finished in 5489.8152ms 200 application/json; charset=utf-8 +2017-12-27 16:15:16.043 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" completed keep alive response. +2017-12-27 16:15:16.475 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 16:15:16.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 16:15:16.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 16:15:19.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 16:15:23.245 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 16:15:23.245 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 16:15:23.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 16:15:25.212 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:25.213 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:25.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:25.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:25.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 8741.1436ms +2017-12-27 16:15:25.223 +05:30 [Information] Request finished in 8747.1896ms 200 application/json; charset=utf-8 +2017-12-27 16:15:25.239 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" completed keep alive response. +2017-12-27 16:15:25.246 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 16:15:25.248 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 16:15:25.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 16:15:26.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 16:15:27.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:27.895 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:27.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:27.899 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4650.7606ms +2017-12-27 16:15:27.908 +05:30 [Information] Request finished in 4659.7967ms 200 application/json; charset=utf-8 +2017-12-27 16:15:27.909 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" completed keep alive response. +2017-12-27 16:15:28.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:28.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 16:15:28.984 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 16:15:28.994 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3733.8539ms +2017-12-27 16:15:29.029 +05:30 [Information] Request finished in 3781.496ms 200 +2017-12-27 16:15:29.030 +05:30 [Debug] Connection id ""0HLAD2QM9F6EJ"" completed keep alive response. +2017-12-27 16:15:31.695 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 16:15:31.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 16:15:31.698 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 16:15:31.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 16:15:31.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 16:15:31.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 16:15:31.845 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 16:15:31.846 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 16:15:31.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 16:15:31.912 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 16:15:31.913 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 16:15:31.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 16:15:31.929 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 16:15:31.930 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 16:15:31.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 16:15:31.968 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 16:15:31.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 16:15:31.970 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 16:15:34.209 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:34.209 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:34.703 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:34.703 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:34.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:34.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:34.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2767.8978ms +2017-12-27 16:15:34.710 +05:30 [Information] Request finished in 2909.0422ms 200 application/json; charset=utf-8 +2017-12-27 16:15:34.710 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" completed keep alive response. +2017-12-27 16:15:34.731 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 16:15:34.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 16:15:34.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 16:15:34.891 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 16:15:35.020 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:35.088 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:35.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:35.221 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:35.222 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:35.222 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:35.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:35.224 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3310.0983ms +2017-12-27 16:15:35.226 +05:30 [Information] Request finished in 3432.651ms 200 application/json; charset=utf-8 +2017-12-27 16:15:35.226 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" completed keep alive response. +2017-12-27 16:15:35.643 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:35.643 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:35.643 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:35.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:35.645 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3831.9387ms +2017-12-27 16:15:35.647 +05:30 [Information] Request finished in 3857.335ms 200 application/json; charset=utf-8 +2017-12-27 16:15:35.648 +05:30 [Debug] Connection id ""0HLAD2QM9F6EK"" completed keep alive response. +2017-12-27 16:15:35.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:35.691 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:35.691 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:35.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:35.693 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3845.6286ms +2017-12-27 16:15:35.696 +05:30 [Information] Request finished in 3901.9519ms 200 application/json; charset=utf-8 +2017-12-27 16:15:35.696 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" completed keep alive response. +2017-12-27 16:15:36.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:36.134 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:36.134 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:36.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:36.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4165.9781ms +2017-12-27 16:15:36.154 +05:30 [Information] Request finished in 4229.1199ms 200 application/json; charset=utf-8 +2017-12-27 16:15:36.154 +05:30 [Debug] Connection id ""0HLAD2QM9F6EJ"" completed keep alive response. +2017-12-27 16:15:37.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:38.841 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:38.842 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:38.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:38.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:38.844 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4111.1925ms +2017-12-27 16:15:38.847 +05:30 [Information] Request finished in 4115.3575ms 200 application/json; charset=utf-8 +2017-12-27 16:15:38.848 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" completed keep alive response. +2017-12-27 16:15:40.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:15:40.455 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:15:40.456 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:15:40.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:15:40.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 8758.6132ms +2017-12-27 16:15:40.460 +05:30 [Information] Request finished in 8768.0405ms 200 application/json; charset=utf-8 +2017-12-27 16:15:40.461 +05:30 [Debug] Connection id ""0HLAD2QM9F6EL"" completed keep alive response. +2017-12-27 16:15:40.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 16:15:40.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 16:15:40.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 16:15:43.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:15:44.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 16:15:44.029 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 16:15:44.030 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3562.0462ms +2017-12-27 16:15:44.031 +05:30 [Information] Request finished in 3565.9643ms 200 +2017-12-27 16:15:44.031 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" completed keep alive response. +2017-12-27 16:17:12.456 +05:30 [Debug] Connection id ""0HLAD2QM9F6EK"" received FIN. +2017-12-27 16:17:12.456 +05:30 [Debug] Connection id ""0HLAD2QM9F6EJ"" received FIN. +2017-12-27 16:17:12.456 +05:30 [Debug] Connection id ""0HLAD2QM9F6EK"" disconnecting. +2017-12-27 16:17:12.456 +05:30 [Debug] Connection id ""0HLAD2QM9F6EL"" received FIN. +2017-12-27 16:17:12.457 +05:30 [Debug] Connection id ""0HLAD2QM9F6EJ"" disconnecting. +2017-12-27 16:17:12.456 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" received FIN. +2017-12-27 16:17:12.457 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" received FIN. +2017-12-27 16:17:12.457 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" received FIN. +2017-12-27 16:17:12.457 +05:30 [Debug] Connection id ""0HLAD2QM9F6EK"" sending FIN. +2017-12-27 16:17:12.457 +05:30 [Debug] Connection id ""0HLAD2QM9F6EJ"" sending FIN. +2017-12-27 16:17:12.458 +05:30 [Debug] Connection id ""0HLAD2QM9F6EK"" sent FIN with status "0". +2017-12-27 16:17:12.458 +05:30 [Debug] Connection id ""0HLAD2QM9F6EJ"" sent FIN with status "0". +2017-12-27 16:17:12.458 +05:30 [Debug] Connection id ""0HLAD2QM9F6EJ"" stopped. +2017-12-27 16:17:12.457 +05:30 [Debug] Connection id ""0HLAD2QM9F6EL"" disconnecting. +2017-12-27 16:17:12.458 +05:30 [Debug] Connection id ""0HLAD2QM9F6EK"" stopped. +2017-12-27 16:17:12.480 +05:30 [Debug] Connection id ""0HLAD2QM9F6EL"" sending FIN. +2017-12-27 16:17:12.482 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" disconnecting. +2017-12-27 16:17:12.482 +05:30 [Debug] Connection id ""0HLAD2QM9F6EL"" sent FIN with status "0". +2017-12-27 16:17:12.482 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" disconnecting. +2017-12-27 16:17:12.482 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" sending FIN. +2017-12-27 16:17:12.482 +05:30 [Debug] Connection id ""0HLAD2QM9F6EL"" stopped. +2017-12-27 16:17:12.482 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" sending FIN. +2017-12-27 16:17:12.482 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" disconnecting. +2017-12-27 16:17:12.483 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" sent FIN with status "0". +2017-12-27 16:17:12.483 +05:30 [Debug] Connection id ""0HLAD2QM9F6EH"" stopped. +2017-12-27 16:17:12.483 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" sending FIN. +2017-12-27 16:17:12.484 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" sent FIN with status "0". +2017-12-27 16:17:12.484 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" sent FIN with status "0". +2017-12-27 16:17:12.484 +05:30 [Debug] Connection id ""0HLAD2QM9F6EM"" stopped. +2017-12-27 16:17:12.484 +05:30 [Debug] Connection id ""0HLAD2QM9F6EI"" stopped. +2017-12-27 16:51:15.983 +05:30 [Debug] Hosting starting +2017-12-27 16:51:16.371 +05:30 [Debug] Hosting started +2017-12-27 16:51:16.641 +05:30 [Debug] Connection id ""0HLAD3FP3N3F6"" started. +2017-12-27 16:51:16.653 +05:30 [Debug] Connection id ""0HLAD3FP3N3F7"" started. +2017-12-27 16:51:16.858 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-27 16:51:16.858 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-27 16:51:16.950 +05:30 [Information] Request finished in 143.713ms 200 +2017-12-27 16:51:17.009 +05:30 [Debug] Connection id ""0HLAD3FP3N3F7"" completed keep alive response. +2017-12-27 16:51:18.893 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-27 16:51:18.975 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cc69591d-88e5-4b21-a391-ee873ec7ca5c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-27 16:51:19.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-27 16:51:19.464 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-27 16:51:19.467 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-27 16:51:19.549 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:51:19.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:51:19.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:51:20.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 765.8837ms +2017-12-27 16:51:20.267 +05:30 [Information] Request finished in 3473.3181ms 200 application/json; charset=utf-8 +2017-12-27 16:51:20.270 +05:30 [Debug] Connection id ""0HLAD3FP3N3F6"" completed keep alive response. +2017-12-27 16:51:21.908 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-27 16:51:21.912 +05:30 [Debug] Request did not match any routes. +2017-12-27 16:51:21.935 +05:30 [Debug] The request path "" does not match the path filter +2017-12-27 16:51:21.938 +05:30 [Information] Request finished in 29.9622ms 404 +2017-12-27 16:51:21.941 +05:30 [Debug] Connection id ""0HLAD3FP3N3F7"" completed keep alive response. +2017-12-27 16:53:07.444 +05:30 [Debug] Connection id ""0HLAD3FP3N3F6"" received FIN. +2017-12-27 16:53:07.444 +05:30 [Debug] Connection id ""0HLAD3FP3N3F7"" received FIN. +2017-12-27 16:53:07.445 +05:30 [Debug] Connection id ""0HLAD3FP3N3F6"" disconnecting. +2017-12-27 16:53:07.445 +05:30 [Debug] Connection id ""0HLAD3FP3N3F7"" disconnecting. +2017-12-27 16:53:07.446 +05:30 [Debug] Connection id ""0HLAD3FP3N3F6"" sending FIN. +2017-12-27 16:53:07.446 +05:30 [Debug] Connection id ""0HLAD3FP3N3F7"" sending FIN. +2017-12-27 16:53:07.452 +05:30 [Debug] Connection id ""0HLAD3FP3N3F7"" sent FIN with status "0". +2017-12-27 16:53:07.452 +05:30 [Debug] Connection id ""0HLAD3FP3N3F6"" sent FIN with status "0". +2017-12-27 16:53:07.454 +05:30 [Debug] Connection id ""0HLAD3FP3N3F6"" stopped. +2017-12-27 16:53:07.454 +05:30 [Debug] Connection id ""0HLAD3FP3N3F7"" stopped. +2017-12-27 16:54:46.719 +05:30 [Debug] Connection id ""0HLAD3FP3N3F8"" started. +2017-12-27 16:54:46.722 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 202 +2017-12-27 16:54:46.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-27 16:54:46.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-27 16:54:50.392 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAHKko8gn35QckrOqf8eZAASvgXa2QWLR33fmdN75GKxJPSaZBZBlBpZBzsrjnIOQ7T31tJtVYlN0QSgZBYSei9CtA7ZBGdwBlZBo2VqJiSo7TpvR52Xlu6UZCsrQDHiyjGInKgMdrPNZCvm0C3qIEDcojMVxphKgBFQZDZD", "Free"]) - ModelState is Valid +2017-12-27 16:55:05.190 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:55:05.240 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:55:05.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:55:05.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 18745.0676ms +2017-12-27 16:55:05.485 +05:30 [Information] Request finished in 18762.9226ms 200 application/json; charset=utf-8 +2017-12-27 16:55:05.486 +05:30 [Debug] Connection id ""0HLAD3FP3N3F8"" completed keep alive response. +2017-12-27 16:55:06.060 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-27 16:55:06.061 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 16:55:06.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 16:55:08.166 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-27 16:55:09.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:55:09.907 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:55:09.911 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:55:10.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3936.1827ms +2017-12-27 16:55:10.009 +05:30 [Information] Request finished in 3947.8327ms 200 application/json; charset=utf-8 +2017-12-27 16:55:10.009 +05:30 [Debug] Connection id ""0HLAD3FP3N3F8"" completed keep alive response. +2017-12-27 16:55:12.401 +05:30 [Debug] Connection id ""0HLAD3FP3N3F9"" started. +2017-12-27 16:55:12.402 +05:30 [Debug] Connection id ""0HLAD3FP3N3FA"" started. +2017-12-27 16:55:12.404 +05:30 [Debug] Connection id ""0HLAD3FP3N3FB"" started. +2017-12-27 16:55:12.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 16:55:12.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 16:55:12.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 16:55:12.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 16:55:12.410 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 16:55:12.418 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 16:55:12.410 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 16:55:12.425 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 16:55:12.425 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 16:55:12.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 16:55:12.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 16:55:12.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 16:55:12.587 +05:30 [Debug] Connection id ""0HLAD3FP3N3FC"" started. +2017-12-27 16:55:12.587 +05:30 [Debug] Connection id ""0HLAD3FP3N3FD"" started. +2017-12-27 16:55:13.082 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 16:55:13.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 16:55:13.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 16:55:14.084 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 16:55:14.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 16:55:14.085 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 16:55:17.245 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:55:17.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:55:17.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:55:17.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:55:17.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:55:17.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:55:18.473 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:55:18.474 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:55:18.474 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:55:18.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:55:18.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5402.7728ms +2017-12-27 16:55:18.491 +05:30 [Information] Request finished in 5408.194ms 200 application/json; charset=utf-8 +2017-12-27 16:55:18.491 +05:30 [Debug] Connection id ""0HLAD3FP3N3FC"" completed keep alive response. +2017-12-27 16:55:18.496 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-27 16:55:18.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-27 16:55:18.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-27 16:55:19.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:55:19.232 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:55:19.233 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:55:19.234 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:55:19.238 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6828.2725ms +2017-12-27 16:55:19.240 +05:30 [Information] Request finished in 6841.0714ms 200 application/json; charset=utf-8 +2017-12-27 16:55:19.241 +05:30 [Debug] Connection id ""0HLAD3FP3N3F8"" completed keep alive response. +2017-12-27 16:55:19.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:55:19.420 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:55:19.420 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:55:19.421 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:55:19.420 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:55:19.422 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:55:19.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:55:19.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:55:19.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6973.0909ms +2017-12-27 16:55:19.429 +05:30 [Information] Request finished in 7023.3856ms 200 application/json; charset=utf-8 +2017-12-27 16:55:19.430 +05:30 [Debug] Connection id ""0HLAD3FP3N3FB"" completed keep alive response. +2017-12-27 16:55:19.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7008.8108ms +2017-12-27 16:55:19.444 +05:30 [Information] Request finished in 7040.2677ms 200 application/json; charset=utf-8 +2017-12-27 16:55:19.445 +05:30 [Debug] Connection id ""0HLAD3FP3N3F9"" completed keep alive response. +2017-12-27 16:55:19.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:55:19.944 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:55:19.945 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:55:19.946 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:55:19.949 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5861.6029ms +2017-12-27 16:55:19.950 +05:30 [Information] Request finished in 5867.2241ms 200 application/json; charset=utf-8 +2017-12-27 16:55:19.951 +05:30 [Debug] Connection id ""0HLAD3FP3N3FD"" completed keep alive response. +2017-12-27 16:55:19.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:55:19.980 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:55:19.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:55:19.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:55:19.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7555.4587ms +2017-12-27 16:55:19.984 +05:30 [Information] Request finished in 7579.5948ms 200 application/json; charset=utf-8 +2017-12-27 16:55:19.985 +05:30 [Debug] Connection id ""0HLAD3FP3N3FA"" completed keep alive response. +2017-12-27 16:55:21.529 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:55:23.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:55:23.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:55:23.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:55:23.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:55:23.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5354.3603ms +2017-12-27 16:55:23.856 +05:30 [Information] Request finished in 5359.8994ms 200 application/json; charset=utf-8 +2017-12-27 16:55:23.856 +05:30 [Debug] Connection id ""0HLAD3FP3N3FC"" completed keep alive response. +2017-12-27 16:56:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3F8"" received FIN. +2017-12-27 16:56:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3FB"" received FIN. +2017-12-27 16:56:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3FD"" received FIN. +2017-12-27 16:56:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3F9"" received FIN. +2017-12-27 16:56:47.017 +05:30 [Debug] Connection id ""0HLAD3FP3N3FA"" received FIN. +2017-12-27 16:56:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3F8"" disconnecting. +2017-12-27 16:56:47.017 +05:30 [Debug] Connection id ""0HLAD3FP3N3FC"" received FIN. +2017-12-27 16:56:47.017 +05:30 [Debug] Connection id ""0HLAD3FP3N3F8"" sending FIN. +2017-12-27 16:56:47.017 +05:30 [Debug] Connection id ""0HLAD3FP3N3FB"" disconnecting. +2017-12-27 16:56:47.018 +05:30 [Debug] Connection id ""0HLAD3FP3N3FB"" sending FIN. +2017-12-27 16:56:47.018 +05:30 [Debug] Connection id ""0HLAD3FP3N3F8"" sent FIN with status "0". +2017-12-27 16:56:47.018 +05:30 [Debug] Connection id ""0HLAD3FP3N3FB"" sent FIN with status "0". +2017-12-27 16:56:47.018 +05:30 [Debug] Connection id ""0HLAD3FP3N3F8"" stopped. +2017-12-27 16:56:47.018 +05:30 [Debug] Connection id ""0HLAD3FP3N3FB"" stopped. +2017-12-27 16:56:47.018 +05:30 [Debug] Connection id ""0HLAD3FP3N3FD"" disconnecting. +2017-12-27 16:56:47.019 +05:30 [Debug] Connection id ""0HLAD3FP3N3FD"" sending FIN. +2017-12-27 16:56:47.019 +05:30 [Debug] Connection id ""0HLAD3FP3N3F9"" disconnecting. +2017-12-27 16:56:47.050 +05:30 [Debug] Connection id ""0HLAD3FP3N3F9"" sending FIN. +2017-12-27 16:56:47.050 +05:30 [Debug] Connection id ""0HLAD3FP3N3FA"" disconnecting. +2017-12-27 16:56:47.050 +05:30 [Debug] Connection id ""0HLAD3FP3N3FC"" disconnecting. +2017-12-27 16:56:47.050 +05:30 [Debug] Connection id ""0HLAD3FP3N3F9"" sent FIN with status "0". +2017-12-27 16:56:47.019 +05:30 [Debug] Connection id ""0HLAD3FP3N3FD"" sent FIN with status "0". +2017-12-27 16:56:47.051 +05:30 [Debug] Connection id ""0HLAD3FP3N3F9"" stopped. +2017-12-27 16:56:47.051 +05:30 [Debug] Connection id ""0HLAD3FP3N3FD"" stopped. +2017-12-27 16:56:47.051 +05:30 [Debug] Connection id ""0HLAD3FP3N3FC"" sending FIN. +2017-12-27 16:56:47.052 +05:30 [Debug] Connection id ""0HLAD3FP3N3FA"" sending FIN. +2017-12-27 16:56:47.052 +05:30 [Debug] Connection id ""0HLAD3FP3N3FC"" sent FIN with status "0". +2017-12-27 16:56:47.052 +05:30 [Debug] Connection id ""0HLAD3FP3N3FA"" sent FIN with status "0". +2017-12-27 16:56:47.052 +05:30 [Debug] Connection id ""0HLAD3FP3N3FA"" stopped. +2017-12-27 16:56:47.052 +05:30 [Debug] Connection id ""0HLAD3FP3N3FC"" stopped. +2017-12-27 16:57:49.423 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" started. +2017-12-27 16:57:49.447 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 16:57:49.448 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 16:57:49.449 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 16:57:52.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 16:57:54.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:57:54.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:57:54.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:57:54.050 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4600.0865ms +2017-12-27 16:57:54.057 +05:30 [Information] Request finished in 4631.4302ms 200 application/json; charset=utf-8 +2017-12-27 16:57:54.058 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" completed keep alive response. +2017-12-27 16:57:55.182 +05:30 [Debug] Connection id ""0HLAD3FP3N3FF"" started. +2017-12-27 16:57:55.182 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 16:57:55.183 +05:30 [Debug] Connection id ""0HLAD3FP3N3FG"" started. +2017-12-27 16:57:55.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 16:57:55.183 +05:30 [Debug] Connection id ""0HLAD3FP3N3FH"" started. +2017-12-27 16:57:55.185 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 16:57:55.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 16:57:55.200 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 16:57:55.200 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 16:57:55.201 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 16:57:55.201 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 16:57:55.203 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 16:57:55.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 16:57:55.205 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 16:57:55.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 16:57:55.361 +05:30 [Debug] Connection id ""0HLAD3FP3N3FI"" started. +2017-12-27 16:57:55.372 +05:30 [Debug] Connection id ""0HLAD3FP3N3FJ"" started. +2017-12-27 16:57:55.405 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 16:57:55.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 16:57:55.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 16:57:56.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 16:57:56.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 16:57:56.570 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 16:57:59.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:57:59.783 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:57:59.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:57:59.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:57:59.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:57:59.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:58:00.310 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:58:00.310 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:58:00.310 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:58:00.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:58:00.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5107.2305ms +2017-12-27 16:58:00.315 +05:30 [Information] Request finished in 5117.7339ms 200 application/json; charset=utf-8 +2017-12-27 16:58:00.316 +05:30 [Debug] Connection id ""0HLAD3FP3N3FH"" completed keep alive response. +2017-12-27 16:58:00.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 16:58:00.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 16:58:00.328 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 16:58:00.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:58:00.441 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:58:00.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:58:00.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:58:00.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:58:00.452 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:58:00.452 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:58:00.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5252.2555ms +2017-12-27 16:58:00.495 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:58:00.506 +05:30 [Information] Request finished in 5306.3177ms 200 application/json; charset=utf-8 +2017-12-27 16:58:00.506 +05:30 [Debug] Connection id ""0HLAD3FP3N3FG"" completed keep alive response. +2017-12-27 16:58:00.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5282.2727ms +2017-12-27 16:58:00.540 +05:30 [Information] Request finished in 5356.8397ms 200 application/json; charset=utf-8 +2017-12-27 16:58:00.541 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" completed keep alive response. +2017-12-27 16:58:00.872 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:58:00.872 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:58:00.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:58:00.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:58:00.874 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:58:00.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5468.1271ms +2017-12-27 16:58:00.876 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:58:00.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:58:00.881 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:58:00.902 +05:30 [Information] Request finished in 5508.6654ms 200 application/json; charset=utf-8 +2017-12-27 16:58:00.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5681.3906ms +2017-12-27 16:58:00.903 +05:30 [Debug] Connection id ""0HLAD3FP3N3FI"" completed keep alive response. +2017-12-27 16:58:00.910 +05:30 [Information] Request finished in 5725.2048ms 200 application/json; charset=utf-8 +2017-12-27 16:58:00.910 +05:30 [Debug] Connection id ""0HLAD3FP3N3FF"" completed keep alive response. +2017-12-27 16:58:00.957 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:58:00.957 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:58:00.958 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:58:00.959 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:58:00.960 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4388.9578ms +2017-12-27 16:58:00.962 +05:30 [Information] Request finished in 4392.7365ms 200 application/json; charset=utf-8 +2017-12-27 16:58:00.962 +05:30 [Debug] Connection id ""0HLAD3FP3N3FJ"" completed keep alive response. +2017-12-27 16:58:03.365 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 16:58:09.128 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:58:09.128 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:58:09.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:58:09.130 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:58:09.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 8806.7766ms +2017-12-27 16:58:09.143 +05:30 [Information] Request finished in 8815.802ms 200 application/json; charset=utf-8 +2017-12-27 16:58:09.144 +05:30 [Debug] Connection id ""0HLAD3FP3N3FH"" completed keep alive response. +2017-12-27 16:58:09.152 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 16:58:09.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 16:58:09.153 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 16:58:12.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:58:12.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 16:58:12.747 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 16:58:12.751 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3595.8634ms +2017-12-27 16:58:12.754 +05:30 [Information] Request finished in 3602.3796ms 200 +2017-12-27 16:58:12.755 +05:30 [Debug] Connection id ""0HLAD3FP3N3FG"" completed keep alive response. +2017-12-27 16:58:39.088 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 16:58:39.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 16:58:39.089 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 16:58:42.155 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 16:58:47.783 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:58:47.784 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:58:47.784 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:58:47.785 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:58:47.787 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 8696.6259ms +2017-12-27 16:58:47.790 +05:30 [Information] Request finished in 8701.6263ms 200 application/json; charset=utf-8 +2017-12-27 16:58:47.790 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" completed keep alive response. +2017-12-27 16:58:47.799 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 16:58:47.800 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 16:58:47.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 16:58:50.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:58:51.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 16:58:51.390 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 16:58:51.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3588.9528ms +2017-12-27 16:58:51.392 +05:30 [Information] Request finished in 3594.9664ms 200 +2017-12-27 16:58:51.393 +05:30 [Debug] Connection id ""0HLAD3FP3N3FI"" completed keep alive response. +2017-12-27 16:59:34.675 +05:30 [Debug] Connection id ""0HLAD3FP3N3FF"" received FIN. +2017-12-27 16:59:34.675 +05:30 [Debug] Connection id ""0HLAD3FP3N3FH"" received FIN. +2017-12-27 16:59:34.675 +05:30 [Debug] Connection id ""0HLAD3FP3N3FJ"" received FIN. +2017-12-27 16:59:34.675 +05:30 [Debug] Connection id ""0HLAD3FP3N3FG"" received FIN. +2017-12-27 16:59:34.675 +05:30 [Debug] Connection id ""0HLAD3FP3N3FH"" disconnecting. +2017-12-27 16:59:34.676 +05:30 [Debug] Connection id ""0HLAD3FP3N3FH"" sending FIN. +2017-12-27 16:59:34.676 +05:30 [Debug] Connection id ""0HLAD3FP3N3FJ"" disconnecting. +2017-12-27 16:59:34.676 +05:30 [Debug] Connection id ""0HLAD3FP3N3FJ"" sending FIN. +2017-12-27 16:59:34.676 +05:30 [Debug] Connection id ""0HLAD3FP3N3FH"" sent FIN with status "0". +2017-12-27 16:59:34.677 +05:30 [Debug] Connection id ""0HLAD3FP3N3FH"" stopped. +2017-12-27 16:59:34.677 +05:30 [Debug] Connection id ""0HLAD3FP3N3FJ"" sent FIN with status "0". +2017-12-27 16:59:34.679 +05:30 [Debug] Connection id ""0HLAD3FP3N3FJ"" stopped. +2017-12-27 16:59:34.679 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 16:59:34.682 +05:30 [Debug] Connection id ""0HLAD3FP3N3FG"" disconnecting. +2017-12-27 16:59:34.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 16:59:34.680 +05:30 [Debug] Connection id ""0HLAD3FP3N3FF"" disconnecting. +2017-12-27 16:59:34.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 16:59:34.683 +05:30 [Debug] Connection id ""0HLAD3FP3N3FG"" sending FIN. +2017-12-27 16:59:34.683 +05:30 [Debug] Connection id ""0HLAD3FP3N3FF"" sending FIN. +2017-12-27 16:59:34.685 +05:30 [Debug] Connection id ""0HLAD3FP3N3FF"" sent FIN with status "0". +2017-12-27 16:59:34.685 +05:30 [Debug] Connection id ""0HLAD3FP3N3FF"" stopped. +2017-12-27 16:59:34.686 +05:30 [Debug] Connection id ""0HLAD3FP3N3FG"" sent FIN with status "0". +2017-12-27 16:59:34.686 +05:30 [Debug] Connection id ""0HLAD3FP3N3FG"" stopped. +2017-12-27 16:59:36.775 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 16:59:38.329 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:59:38.330 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:59:38.331 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:59:38.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3649.985ms +2017-12-27 16:59:38.341 +05:30 [Information] Request finished in 3663.6948ms 200 application/json; charset=utf-8 +2017-12-27 16:59:38.342 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" completed keep alive response. +2017-12-27 16:59:42.881 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 16:59:42.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 16:59:42.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 16:59:42.944 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 16:59:42.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 16:59:42.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 16:59:43.258 +05:30 [Debug] Connection id ""0HLAD3FP3N3FK"" started. +2017-12-27 16:59:43.298 +05:30 [Debug] Connection id ""0HLAD3FP3N3FL"" started. +2017-12-27 16:59:43.313 +05:30 [Debug] Connection id ""0HLAD3FP3N3FM"" started. +2017-12-27 16:59:43.313 +05:30 [Debug] Connection id ""0HLAD3FP3N3FN"" started. +2017-12-27 16:59:43.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 16:59:43.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 16:59:43.345 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 16:59:43.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 16:59:43.434 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 16:59:43.436 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 16:59:43.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 16:59:43.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 16:59:43.447 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 16:59:43.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 16:59:43.455 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 16:59:43.466 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 16:59:45.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:59:46.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 16:59:46.294 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 16:59:46.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 16:59:46.295 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 16:59:46.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 16:59:46.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 16:59:46.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 2858.9211ms +2017-12-27 16:59:46.340 +05:30 [Information] Request finished in 3022.2576ms 200 application/json; charset=utf-8 +2017-12-27 16:59:46.341 +05:30 [Debug] Connection id ""0HLAD3FP3N3FL"" completed keep alive response. +2017-12-27 17:00:24.063 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:00:25.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:00:25.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:00:26.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:00:26.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:00:26.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:00:34.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:00:34.485 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:00:34.485 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:00:34.503 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:00:34.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:00:34.535 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:00:34.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:00:34.536 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 51096.325ms +2017-12-27 17:00:34.538 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:00:34.573 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 51192.4128ms +2017-12-27 17:00:34.574 +05:30 [Information] Request finished in 51173.014ms 200 application/json; charset=utf-8 +2017-12-27 17:00:34.575 +05:30 [Debug] Connection id ""0HLAD3FP3N3FN"" completed keep alive response. +2017-12-27 17:00:34.631 +05:30 [Information] Request finished in 51328.6309ms 200 application/json; charset=utf-8 +2017-12-27 17:00:34.643 +05:30 [Debug] Connection id ""0HLAD3FP3N3FK"" completed keep alive response. +2017-12-27 17:00:34.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:00:34.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:00:34.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:02:46.385 +05:30 [Debug] Connection id ""0HLAD3FP3N3FI"" received FIN. +2017-12-27 17:02:46.439 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" received FIN. +2017-12-27 17:02:46.439 +05:30 [Debug] Connection id ""0HLAD3FP3N3FK"" received FIN. +2017-12-27 17:02:46.439 +05:30 [Debug] Connection id ""0HLAD3FP3N3FN"" received FIN. +2017-12-27 17:02:46.439 +05:30 [Debug] Connection id ""0HLAD3FP3N3FM"" received FIN. +2017-12-27 17:02:46.440 +05:30 [Debug] Connection id ""0HLAD3FP3N3FL"" received FIN. +2017-12-27 17:02:46.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:02:46.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:02:47.529 +05:30 [Debug] Connection id ""0HLAD3FP3N3FK"" disconnecting. +2017-12-27 17:02:47.530 +05:30 [Debug] Connection id ""0HLAD3FP3N3FK"" sending FIN. +2017-12-27 17:02:47.530 +05:30 [Debug] Connection id ""0HLAD3FP3N3FK"" sent FIN with status "0". +2017-12-27 17:02:47.531 +05:30 [Debug] Connection id ""0HLAD3FP3N3FK"" stopped. +2017-12-27 17:02:51.783 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.NotFoundResult". +2017-12-27 17:02:51.796 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 404 +2017-12-27 17:02:51.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 188851.7617ms +2017-12-27 17:02:51.813 +05:30 [Information] Request finished in 188929.6664ms 404 +2017-12-27 17:02:51.813 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" completed keep alive response. +2017-12-27 17:02:51.813 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" disconnecting. +2017-12-27 17:02:51.836 +05:30 [Information] Connection id ""0HLAD3FP3N3FE"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-27 17:02:51.837 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" sending FIN. +2017-12-27 17:02:51.855 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" sent FIN with status "0". +2017-12-27 17:02:51.856 +05:30 [Debug] Connection id ""0HLAD3FP3N3FE"" stopped. +2017-12-27 17:02:52.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:02:52.119 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:02:52.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:02:52.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:02:52.129 +05:30 [Debug] Connection id ""0HLAD3FP3N3FL"" disconnecting. +2017-12-27 17:02:52.131 +05:30 [Information] Connection id ""0HLAD3FP3N3FL"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-27 17:02:52.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:02:52.132 +05:30 [Debug] Connection id ""0HLAD3FP3N3FL"" stopped. +2017-12-27 17:02:52.132 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:02:52.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 146150.7611ms +2017-12-27 17:02:52.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:02:52.133 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:02:52.135 +05:30 [Debug] Connection id ""0HLAD3FP3N3FN"" disconnecting. +2017-12-27 17:02:52.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 137334.8352ms +2017-12-27 17:02:52.202 +05:30 [Information] Request finished in 185769.1558ms 200 application/json; charset=utf-8 +2017-12-27 17:02:52.202 +05:30 [Information] Request finished in 137384.4264ms 200 application/json; charset=utf-8 +2017-12-27 17:02:52.205 +05:30 [Information] Connection id ""0HLAD3FP3N3FN"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-27 17:02:52.206 +05:30 [Debug] Connection id ""0HLAD3FP3N3FN"" stopped. +2017-12-27 17:02:52.341 +05:30 [Fatal] could not execute query +[ select cast(count(*) as SIGNED) as col_0_0_ from Groups groups0_ where groups0_.id in (?p0 , ?p1 , ?p2 , ?p3 , ?p4 , ?p5 , ?p6 , ?p7 , ?p8) ] + Name:p1_0_ - Value:48 Name:p1_1_ - Value:1151049 Name:p1_2_ - Value:1151052 Name:p1_3_ - Value:1151053 Name:p1_4_ - Value:1151057 Name:p1_5_ - Value:1151058 Name:p1_6_ - Value:1151061 Name:p1_7_ - Value:1151072 Name:p1_8_ - Value:1151078 +[SQL: select cast(count(*) as SIGNED) as col_0_0_ from Groups groups0_ where groups0_.id in (?p0 , ?p1 , ?p2 , ?p3 , ?p4 , ?p5 , ?p6 , ?p7 , ?p8)] +2017-12-27 17:02:52.445 +05:30 [Fatal] could not execute query +[ select notificati0_.Id as Id24_, notificati0_.UserId as UserId24_, notificati0_.notificationtime as notifica3_24_, notificati0_.MsgId as MsgId24_, notificati0_.MsgStatus as MsgStatus24_, notificati0_.ReadOrUnread as ReadOrUn6_24_, notificati0_.NotificationType as Notifica7_24_ from Notifications notificati0_ where notificati0_.UserId=? order by notificati0_.Id desc limit ?, ? ] + Name:p1 - Value:48 Name:p2 - Value:0 Name:p3 - Value:10 +[SQL: select notificati0_.Id as Id24_, notificati0_.UserId as UserId24_, notificati0_.notificationtime as notifica3_24_, notificati0_.MsgId as MsgId24_, notificati0_.MsgStatus as MsgStatus24_, notificati0_.ReadOrUnread as ReadOrUn6_24_, notificati0_.NotificationType as Notifica7_24_ from Notifications notificati0_ where notificati0_.UserId=? order by notificati0_.Id desc limit ?, ?] +2017-12-27 17:02:52.450 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Counts[T](Expression`1 query) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 137 +2017-12-27 17:02:52.452 +05:30 [Error] Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. +2017-12-27 17:02:52.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:02:52.453 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:02:52.453 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:02:52.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:02:52.455 +05:30 [Debug] Connection id ""0HLAD3FP3N3FM"" disconnecting. +2017-12-27 17:02:52.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 188988.8724ms +2017-12-27 17:02:52.478 +05:30 [Information] Connection id ""0HLAD3FP3N3FM"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-27 17:02:52.491 +05:30 [Debug] Connection id ""0HLAD3FP3N3FM"" stopped. +2017-12-27 17:02:52.493 +05:30 [Information] Request finished in 189125.6488ms 200 application/json; charset=utf-8 +2017-12-27 17:02:52.494 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.FindWithRangeDesct[T](Expression`1 query, Int32 skip, Int32 take, Expression`1 DescVar) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 433 +2017-12-27 17:02:52.495 +05:30 [Error] Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. +2017-12-27 17:02:52.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.NotFoundResult". +2017-12-27 17:02:52.547 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 404 +2017-12-27 17:02:52.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 189666.6307ms +2017-12-27 17:02:52.551 +05:30 [Information] Request finished in 189683.7521ms 404 +2017-12-27 17:02:52.552 +05:30 [Debug] Connection id ""0HLAD3FP3N3FI"" completed keep alive response. +2017-12-27 17:02:52.552 +05:30 [Debug] Connection id ""0HLAD3FP3N3FI"" disconnecting. +2017-12-27 17:02:52.553 +05:30 [Information] Connection id ""0HLAD3FP3N3FI"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-12-27 17:02:52.554 +05:30 [Debug] Connection id ""0HLAD3FP3N3FI"" stopped. +2017-12-27 17:02:58.362 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" started. +2017-12-27 17:02:58.363 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 17:02:58.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:02:58.364 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:03:00.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 17:03:01.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:03:01.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:03:01.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:03:02.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3630.9964ms +2017-12-27 17:03:02.015 +05:30 [Information] Request finished in 3649.8456ms 200 application/json; charset=utf-8 +2017-12-27 17:03:02.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" completed keep alive response. +2017-12-27 17:03:02.973 +05:30 [Debug] Connection id ""0HLAD3FP3N3FP"" started. +2017-12-27 17:03:02.974 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" started. +2017-12-27 17:03:02.977 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" started. +2017-12-27 17:03:02.984 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:03:02.985 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:03:02.985 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:03:02.987 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:03:02.989 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:03:02.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:03:03.021 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:03:03.024 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:03:03.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:03:03.022 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:03:03.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:03:03.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:03:03.092 +05:30 [Debug] Connection id ""0HLAD3FP3N3FS"" started. +2017-12-27 17:03:03.092 +05:30 [Debug] Connection id ""0HLAD3FP3N3FT"" started. +2017-12-27 17:03:03.094 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:03:03.096 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:03:03.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:03:03.101 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:03:03.101 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:03:03.101 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:03:05.213 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:03:06.136 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:03:06.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:03:06.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:03:06.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:03:06.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:03:06.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:03:06.314 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:03:06.315 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:03:06.316 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:03:06.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3214.862ms +2017-12-27 17:03:06.321 +05:30 [Information] Request finished in 3226.8243ms 200 application/json; charset=utf-8 +2017-12-27 17:03:06.321 +05:30 [Debug] Connection id ""0HLAD3FP3N3FT"" completed keep alive response. +2017-12-27 17:03:06.338 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 17:03:06.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 17:03:06.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 17:03:06.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:03:06.732 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:03:06.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:03:06.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:03:06.735 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3707.2758ms +2017-12-27 17:03:06.738 +05:30 [Information] Request finished in 3761.5712ms 200 application/json; charset=utf-8 +2017-12-27 17:03:06.739 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" completed keep alive response. +2017-12-27 17:03:06.744 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 17:03:06.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 17:03:06.745 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 17:03:06.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:03:06.750 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:03:06.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:03:06.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:03:06.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3774.1636ms +2017-12-27 17:03:06.768 +05:30 [Information] Request finished in 3795.9034ms 200 application/json; charset=utf-8 +2017-12-27 17:03:06.768 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" completed keep alive response. +2017-12-27 17:03:06.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:03:06.849 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:03:06.850 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:03:06.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:03:06.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3860.4177ms +2017-12-27 17:03:06.854 +05:30 [Information] Request finished in 3873.327ms 200 application/json; charset=utf-8 +2017-12-27 17:03:06.854 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" completed keep alive response. +2017-12-27 17:03:08.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:03:08.671 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:03:08.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:03:08.673 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:03:08.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5634.2657ms +2017-12-27 17:03:08.677 +05:30 [Information] Request finished in 5701.5411ms 200 application/json; charset=utf-8 +2017-12-27 17:03:08.678 +05:30 [Debug] Connection id ""0HLAD3FP3N3FP"" completed keep alive response. +2017-12-27 17:03:08.698 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:03:08.698 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:03:08.699 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:03:08.700 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:03:08.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5598.0588ms +2017-12-27 17:03:08.703 +05:30 [Information] Request finished in 5608.9251ms 200 application/json; charset=utf-8 +2017-12-27 17:03:08.704 +05:30 [Debug] Connection id ""0HLAD3FP3N3FS"" completed keep alive response. +2017-12-27 17:03:09.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 17:03:09.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:03:12.121 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:03:12.121 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:03:12.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:03:12.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:03:12.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5383.0903ms +2017-12-27 17:03:12.132 +05:30 [Information] Request finished in 5386.9521ms 200 application/json; charset=utf-8 +2017-12-27 17:03:12.132 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" completed keep alive response. +2017-12-27 17:03:15.566 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:03:15.566 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:03:15.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:03:15.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:03:15.571 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 9228.9087ms +2017-12-27 17:03:15.576 +05:30 [Information] Request finished in 9237.4863ms 200 application/json; charset=utf-8 +2017-12-27 17:03:15.576 +05:30 [Debug] Connection id ""0HLAD3FP3N3FT"" completed keep alive response. +2017-12-27 17:03:15.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 17:03:15.608 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 17:03:15.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 17:03:18.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:03:19.178 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 17:03:19.179 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 17:03:19.180 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3570.4484ms +2017-12-27 17:03:19.182 +05:30 [Information] Request finished in 3578.724ms 200 +2017-12-27 17:03:19.183 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" completed keep alive response. +2017-12-27 17:04:04.469 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 17:04:04.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:04:04.470 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:04:06.585 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 17:04:08.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:04:08.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:04:08.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:04:08.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3632.1515ms +2017-12-27 17:04:08.107 +05:30 [Information] Request finished in 3638.3785ms 200 application/json; charset=utf-8 +2017-12-27 17:04:08.108 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" completed keep alive response. +2017-12-27 17:04:08.969 +05:30 [Debug] Connection id ""0HLAD3FP3N3FP"" received FIN. +2017-12-27 17:04:08.969 +05:30 [Debug] Connection id ""0HLAD3FP3N3FS"" received FIN. +2017-12-27 17:04:08.969 +05:30 [Debug] Connection id ""0HLAD3FP3N3FP"" disconnecting. +2017-12-27 17:04:08.970 +05:30 [Debug] Connection id ""0HLAD3FP3N3FS"" disconnecting. +2017-12-27 17:04:08.970 +05:30 [Debug] Connection id ""0HLAD3FP3N3FP"" sending FIN. +2017-12-27 17:04:08.999 +05:30 [Debug] Connection id ""0HLAD3FP3N3FP"" sent FIN with status "0". +2017-12-27 17:04:08.993 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:04:08.991 +05:30 [Debug] Connection id ""0HLAD3FP3N3FS"" sending FIN. +2017-12-27 17:04:09.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:04:08.999 +05:30 [Debug] Connection id ""0HLAD3FP3N3FP"" stopped. +2017-12-27 17:04:09.001 +05:30 [Debug] Connection id ""0HLAD3FP3N3FS"" sent FIN with status "0". +2017-12-27 17:04:09.003 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:04:09.003 +05:30 [Debug] Connection id ""0HLAD3FP3N3FS"" stopped. +2017-12-27 17:04:09.001 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:04:09.003 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:04:09.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:04:09.008 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:04:09.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:04:09.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:04:09.002 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:04:09.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:04:09.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:04:09.066 +05:30 [Debug] Connection id ""0HLAD3FP3N3FU"" started. +2017-12-27 17:04:09.066 +05:30 [Debug] Connection id ""0HLAD3FP3N3FV"" started. +2017-12-27 17:04:10.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:04:10.113 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:04:10.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:04:11.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:04:11.113 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:04:11.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:04:14.142 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:04:14.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:04:14.250 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:04:14.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:04:14.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:04:14.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:04:14.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:04:14.710 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:04:14.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:04:14.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:04:14.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5705.5354ms +2017-12-27 17:04:14.714 +05:30 [Information] Request finished in 5722.3786ms 200 application/json; charset=utf-8 +2017-12-27 17:04:14.715 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" completed keep alive response. +2017-12-27 17:04:14.728 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 17:04:14.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 17:04:14.738 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 17:04:14.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:04:14.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:04:14.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:04:14.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:04:14.822 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5804.1433ms +2017-12-27 17:04:14.826 +05:30 [Information] Request finished in 5855.2832ms 200 application/json; charset=utf-8 +2017-12-27 17:04:14.827 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" completed keep alive response. +2017-12-27 17:04:14.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 17:04:14.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 17:04:14.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 17:04:14.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:04:14.917 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:04:14.917 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:04:14.918 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:04:14.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5892.2976ms +2017-12-27 17:04:14.921 +05:30 [Information] Request finished in 5951.4566ms 200 application/json; charset=utf-8 +2017-12-27 17:04:14.922 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" completed keep alive response. +2017-12-27 17:04:15.273 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:04:15.273 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:04:15.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:04:15.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:04:15.276 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6270.2445ms +2017-12-27 17:04:15.278 +05:30 [Information] Request finished in 6307.7324ms 200 application/json; charset=utf-8 +2017-12-27 17:04:15.278 +05:30 [Debug] Connection id ""0HLAD3FP3N3FT"" completed keep alive response. +2017-12-27 17:04:15.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:04:15.297 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:04:15.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:04:15.299 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:04:15.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5185.4242ms +2017-12-27 17:04:15.303 +05:30 [Information] Request finished in 5189.8402ms 200 application/json; charset=utf-8 +2017-12-27 17:04:15.304 +05:30 [Debug] Connection id ""0HLAD3FP3N3FU"" completed keep alive response. +2017-12-27 17:04:15.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:04:15.325 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:04:15.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:04:15.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:04:15.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4213.0588ms +2017-12-27 17:04:15.329 +05:30 [Information] Request finished in 4216.4332ms 200 application/json; charset=utf-8 +2017-12-27 17:04:15.329 +05:30 [Debug] Connection id ""0HLAD3FP3N3FV"" completed keep alive response. +2017-12-27 17:04:17.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 17:04:17.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:04:30.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:04:30.224 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:04:30.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:04:30.225 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:04:31.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 16805.8445ms +2017-12-27 17:04:31.649 +05:30 [Information] Request finished in 16814.2943ms 200 application/json; charset=utf-8 +2017-12-27 17:04:31.649 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" completed keep alive response. +2017-12-27 17:04:35.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:04:35.697 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:04:35.697 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:04:35.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:04:35.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 20961.8299ms +2017-12-27 17:04:35.706 +05:30 [Information] Request finished in 20976.8448ms 200 application/json; charset=utf-8 +2017-12-27 17:04:35.706 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" completed keep alive response. +2017-12-27 17:04:35.717 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 17:04:35.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 17:04:35.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 17:04:38.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:04:39.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 17:04:39.297 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 17:04:39.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3578.2174ms +2017-12-27 17:04:39.301 +05:30 [Information] Request finished in 3585.9419ms 200 +2017-12-27 17:04:39.302 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" completed keep alive response. +2017-12-27 17:05:42.869 +05:30 [Debug] Connection id ""0HLAD3FP3N3FT"" received FIN. +2017-12-27 17:05:42.870 +05:30 [Debug] Connection id ""0HLAD3FP3N3FU"" received FIN. +2017-12-27 17:05:42.870 +05:30 [Debug] Connection id ""0HLAD3FP3N3FV"" received FIN. +2017-12-27 17:05:42.870 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" received FIN. +2017-12-27 17:05:42.870 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" received FIN. +2017-12-27 17:05:42.871 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" received FIN. +2017-12-27 17:05:42.871 +05:30 [Debug] Connection id ""0HLAD3FP3N3FT"" disconnecting. +2017-12-27 17:05:42.873 +05:30 [Debug] Connection id ""0HLAD3FP3N3FT"" sending FIN. +2017-12-27 17:05:42.873 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" disconnecting. +2017-12-27 17:05:42.874 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" disconnecting. +2017-12-27 17:05:42.874 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" disconnecting. +2017-12-27 17:05:42.872 +05:30 [Debug] Connection id ""0HLAD3FP3N3G0"" started. +2017-12-27 17:05:42.873 +05:30 [Debug] Connection id ""0HLAD3FP3N3FT"" sent FIN with status "0". +2017-12-27 17:05:42.875 +05:30 [Debug] Connection id ""0HLAD3FP3N3FT"" stopped. +2017-12-27 17:05:42.875 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" sending FIN. +2017-12-27 17:05:42.877 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" sending FIN. +2017-12-27 17:05:42.877 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" sent FIN with status "0". +2017-12-27 17:05:42.878 +05:30 [Debug] Connection id ""0HLAD3FP3N3FO"" stopped. +2017-12-27 17:05:42.878 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" sent FIN with status "0". +2017-12-27 17:05:42.879 +05:30 [Debug] Connection id ""0HLAD3FP3N3FQ"" stopped. +2017-12-27 17:05:42.871 +05:30 [Debug] Connection id ""0HLAD3FP3N3FV"" disconnecting. +2017-12-27 17:05:42.875 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" sending FIN. +2017-12-27 17:05:42.881 +05:30 [Debug] Connection id ""0HLAD3FP3N3FV"" sending FIN. +2017-12-27 17:05:42.881 +05:30 [Debug] Connection id ""0HLAD3FP3N3FU"" disconnecting. +2017-12-27 17:05:42.882 +05:30 [Debug] Connection id ""0HLAD3FP3N3FV"" sent FIN with status "0". +2017-12-27 17:05:42.882 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" sent FIN with status "0". +2017-12-27 17:05:42.883 +05:30 [Debug] Connection id ""0HLAD3FP3N3FR"" stopped. +2017-12-27 17:05:42.884 +05:30 [Debug] Connection id ""0HLAD3FP3N3FU"" sending FIN. +2017-12-27 17:05:42.884 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 17:05:42.884 +05:30 [Debug] Connection id ""0HLAD3FP3N3FU"" sent FIN with status "0". +2017-12-27 17:05:42.885 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:05:42.882 +05:30 [Debug] Connection id ""0HLAD3FP3N3FV"" stopped. +2017-12-27 17:05:42.885 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:05:42.885 +05:30 [Debug] Connection id ""0HLAD3FP3N3FU"" stopped. +2017-12-27 17:05:45.943 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 17:05:47.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:05:47.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:05:47.472 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:05:47.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4587.9774ms +2017-12-27 17:05:47.476 +05:30 [Information] Request finished in 4594.5565ms 200 application/json; charset=utf-8 +2017-12-27 17:05:47.477 +05:30 [Debug] Connection id ""0HLAD3FP3N3G0"" completed keep alive response. +2017-12-27 17:05:51.291 +05:30 [Debug] Connection id ""0HLAD3FP3N3G1"" started. +2017-12-27 17:05:51.311 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 17:05:51.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 17:05:51.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 17:05:51.327 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 17:05:51.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 17:05:51.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 17:05:51.394 +05:30 [Debug] Connection id ""0HLAD3FP3N3G2"" started. +2017-12-27 17:05:51.395 +05:30 [Debug] Connection id ""0HLAD3FP3N3G3"" started. +2017-12-27 17:05:51.403 +05:30 [Debug] Connection id ""0HLAD3FP3N3G4"" started. +2017-12-27 17:05:51.407 +05:30 [Debug] Connection id ""0HLAD3FP3N3G5"" started. +2017-12-27 17:05:51.433 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:05:51.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:05:51.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:05:51.550 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:05:51.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:05:51.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:05:52.892 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:05:52.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:05:52.893 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:05:53.891 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:05:53.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:05:53.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:05:56.010 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:05:56.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:05:56.690 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:05:56.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:05:56.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:05:56.693 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3799.5114ms +2017-12-27 17:05:56.695 +05:30 [Information] Request finished in 3804.6011ms 200 application/json; charset=utf-8 +2017-12-27 17:05:56.695 +05:30 [Debug] Connection id ""0HLAD3FP3N3G4"" completed keep alive response. +2017-12-27 17:05:56.699 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:05:56.700 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:05:56.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:05:56.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 17:05:57.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:05:57.072 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:05:57.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:05:57.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:05:58.743 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:05:58.744 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:05:58.744 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:05:58.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:05:58.748 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 7406.0838ms +2017-12-27 17:05:58.754 +05:30 [Information] Request finished in 7460.0166ms 200 application/json; charset=utf-8 +2017-12-27 17:05:58.754 +05:30 [Debug] Connection id ""0HLAD3FP3N3G1"" completed keep alive response. +2017-12-27 17:05:58.763 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:05:58.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:05:58.764 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:05:58.895 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:05:58.895 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:05:58.895 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:05:58.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:05:58.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7342.4217ms +2017-12-27 17:05:58.901 +05:30 [Information] Request finished in 7476.4369ms 200 application/json; charset=utf-8 +2017-12-27 17:05:58.901 +05:30 [Debug] Connection id ""0HLAD3FP3N3G2"" completed keep alive response. +2017-12-27 17:05:58.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:05:58.940 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:05:58.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:05:58.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:05:58.942 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7498.5042ms +2017-12-27 17:05:58.944 +05:30 [Information] Request finished in 7540.2312ms 200 application/json; charset=utf-8 +2017-12-27 17:05:58.945 +05:30 [Debug] Connection id ""0HLAD3FP3N3G3"" completed keep alive response. +2017-12-27 17:05:59.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:05:59.428 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:05:59.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:05:59.429 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:05:59.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5536.8194ms +2017-12-27 17:05:59.432 +05:30 [Information] Request finished in 5541.0348ms 200 application/json; charset=utf-8 +2017-12-27 17:05:59.432 +05:30 [Debug] Connection id ""0HLAD3FP3N3G5"" completed keep alive response. +2017-12-27 17:06:00.661 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:06:01.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:06:01.677 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:06:01.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:06:01.679 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:06:01.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4979.1123ms +2017-12-27 17:06:01.686 +05:30 [Information] Request finished in 4987.4719ms 200 application/json; charset=utf-8 +2017-12-27 17:06:01.687 +05:30 [Debug] Connection id ""0HLAD3FP3N3G4"" completed keep alive response. +2017-12-27 17:06:01.824 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:06:02.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:06:02.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:06:02.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:06:02.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:06:02.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4143.417ms +2017-12-27 17:06:02.911 +05:30 [Information] Request finished in 4152.471ms 200 application/json; charset=utf-8 +2017-12-27 17:06:02.911 +05:30 [Debug] Connection id ""0HLAD3FP3N3G1"" completed keep alive response. +2017-12-27 17:06:03.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:06:03.955 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:06:03.956 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:06:03.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:06:03.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 12651.0545ms +2017-12-27 17:06:03.990 +05:30 [Information] Request finished in 12707.7168ms 200 application/json; charset=utf-8 +2017-12-27 17:06:03.990 +05:30 [Debug] Connection id ""0HLAD3FP3N3G0"" completed keep alive response. +2017-12-27 17:06:04.010 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 17:06:04.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 17:06:04.011 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 17:06:07.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:06:07.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 17:06:07.588 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 17:06:07.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3577.1951ms +2017-12-27 17:06:07.592 +05:30 [Information] Request finished in 3584.4817ms 200 +2017-12-27 17:06:07.592 +05:30 [Debug] Connection id ""0HLAD3FP3N3G2"" completed keep alive response. +2017-12-27 17:07:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3G3"" received FIN. +2017-12-27 17:07:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3G5"" received FIN. +2017-12-27 17:07:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3G4"" received FIN. +2017-12-27 17:07:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3G0"" received FIN. +2017-12-27 17:07:47.017 +05:30 [Debug] Connection id ""0HLAD3FP3N3G2"" received FIN. +2017-12-27 17:07:47.016 +05:30 [Debug] Connection id ""0HLAD3FP3N3G1"" received FIN. +2017-12-27 17:07:47.017 +05:30 [Debug] Connection id ""0HLAD3FP3N3G3"" disconnecting. +2017-12-27 17:07:47.018 +05:30 [Debug] Connection id ""0HLAD3FP3N3G3"" sending FIN. +2017-12-27 17:07:47.018 +05:30 [Debug] Connection id ""0HLAD3FP3N3G5"" disconnecting. +2017-12-27 17:07:47.022 +05:30 [Debug] Connection id ""0HLAD3FP3N3G5"" sending FIN. +2017-12-27 17:07:47.022 +05:30 [Debug] Connection id ""0HLAD3FP3N3G1"" disconnecting. +2017-12-27 17:07:47.022 +05:30 [Debug] Connection id ""0HLAD3FP3N3G5"" sent FIN with status "0". +2017-12-27 17:07:47.023 +05:30 [Debug] Connection id ""0HLAD3FP3N3G5"" stopped. +2017-12-27 17:07:47.019 +05:30 [Debug] Connection id ""0HLAD3FP3N3G3"" sent FIN with status "0". +2017-12-27 17:07:47.023 +05:30 [Debug] Connection id ""0HLAD3FP3N3G3"" stopped. +2017-12-27 17:07:47.023 +05:30 [Debug] Connection id ""0HLAD3FP3N3G1"" sending FIN. +2017-12-27 17:07:47.024 +05:30 [Debug] Connection id ""0HLAD3FP3N3G1"" sent FIN with status "0". +2017-12-27 17:07:47.024 +05:30 [Debug] Connection id ""0HLAD3FP3N3G1"" stopped. +2017-12-27 17:07:47.020 +05:30 [Debug] Connection id ""0HLAD3FP3N3G0"" disconnecting. +2017-12-27 17:07:47.025 +05:30 [Debug] Connection id ""0HLAD3FP3N3G0"" sending FIN. +2017-12-27 17:07:47.025 +05:30 [Debug] Connection id ""0HLAD3FP3N3G0"" sent FIN with status "0". +2017-12-27 17:07:47.026 +05:30 [Debug] Connection id ""0HLAD3FP3N3G0"" stopped. +2017-12-27 17:07:47.019 +05:30 [Debug] Connection id ""0HLAD3FP3N3G4"" disconnecting. +2017-12-27 17:07:47.021 +05:30 [Debug] Connection id ""0HLAD3FP3N3G2"" disconnecting. +2017-12-27 17:07:47.026 +05:30 [Debug] Connection id ""0HLAD3FP3N3G2"" sending FIN. +2017-12-27 17:07:47.027 +05:30 [Debug] Connection id ""0HLAD3FP3N3G4"" sending FIN. +2017-12-27 17:07:47.027 +05:30 [Debug] Connection id ""0HLAD3FP3N3G2"" sent FIN with status "0". +2017-12-27 17:07:47.027 +05:30 [Debug] Connection id ""0HLAD3FP3N3G2"" stopped. +2017-12-27 17:07:47.027 +05:30 [Debug] Connection id ""0HLAD3FP3N3G4"" sent FIN with status "0". +2017-12-27 17:07:47.030 +05:30 [Debug] Connection id ""0HLAD3FP3N3G4"" stopped. +2017-12-27 17:22:48.203 +05:30 [Debug] Hosting starting +2017-12-27 17:22:48.711 +05:30 [Debug] Hosting started +2017-12-27 17:22:48.878 +05:30 [Debug] Connection id ""0HLAD41D1G1KA"" started. +2017-12-27 17:22:48.878 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" started. +2017-12-27 17:22:49.208 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-27 17:22:49.219 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-27 17:22:49.529 +05:30 [Information] Request finished in 349.1824ms 200 +2017-12-27 17:22:49.648 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" completed keep alive response. +2017-12-27 17:22:51.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-27 17:22:51.110 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0b9f4e2b-4dfb-4411-ab6e-316cc05a1632"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-27 17:22:51.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-27 17:22:51.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-27 17:22:51.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-27 17:22:51.600 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:22:51.607 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:22:51.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:22:51.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 587.3337ms +2017-12-27 17:22:52.094 +05:30 [Information] Request finished in 3041.5752ms 200 application/json; charset=utf-8 +2017-12-27 17:22:52.097 +05:30 [Debug] Connection id ""0HLAD41D1G1KA"" completed keep alive response. +2017-12-27 17:22:52.171 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-27 17:22:52.174 +05:30 [Debug] Request did not match any routes. +2017-12-27 17:22:52.205 +05:30 [Debug] The request path "" does not match the path filter +2017-12-27 17:22:52.412 +05:30 [Information] Request finished in 149.5482ms 404 +2017-12-27 17:22:52.412 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" completed keep alive response. +2017-12-27 17:23:13.167 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 199 +2017-12-27 17:23:13.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-27 17:23:13.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-27 17:23:16.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAIuTMaB1dEELNSjrivUo72WHfLJK4oav2mdiGPGnXNICAN18OjRD9ZAUfZAZBVgtLmIZBJRZC5bk3kM4dPentvCvqoW9NibzHCrh7XKJgOEAS8yxKtbbo38mSjo1NecTudxqHBv1wsDl60jsPZAqpMswsrPFB2GQZDZD", "Free"]) - ModelState is Valid +2017-12-27 17:23:30.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:23:30.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:23:30.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:23:30.719 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 17543.3257ms +2017-12-27 17:23:30.721 +05:30 [Information] Request finished in 17570.212ms 200 application/json; charset=utf-8 +2017-12-27 17:23:30.722 +05:30 [Debug] Connection id ""0HLAD41D1G1KA"" completed keep alive response. +2017-12-27 17:23:31.310 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-27 17:23:31.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:23:31.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:23:34.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-27 17:23:40.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:23:40.821 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:23:40.822 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:23:40.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 9549.8034ms +2017-12-27 17:23:40.865 +05:30 [Information] Request finished in 9556.7762ms 200 application/json; charset=utf-8 +2017-12-27 17:23:40.865 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" completed keep alive response. +2017-12-27 17:23:43.002 +05:30 [Debug] Connection id ""0HLAD41D1G1KC"" started. +2017-12-27 17:23:43.002 +05:30 [Debug] Connection id ""0HLAD41D1G1KD"" started. +2017-12-27 17:23:43.004 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:23:43.004 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:23:43.005 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:23:43.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:23:43.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:23:43.007 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:23:43.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:23:43.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:23:43.016 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:23:43.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:23:43.018 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:23:43.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:23:43.107 +05:30 [Debug] Connection id ""0HLAD41D1G1KE"" started. +2017-12-27 17:23:43.110 +05:30 [Debug] Connection id ""0HLAD41D1G1KF"" started. +2017-12-27 17:23:43.752 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:23:43.752 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:23:43.754 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:23:44.753 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:23:44.754 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:23:44.754 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:23:47.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:23:47.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:23:47.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:23:47.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:23:47.956 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:23:47.955 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:23:49.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:23:49.017 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:23:49.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:23:49.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:23:49.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6014.7573ms +2017-12-27 17:23:49.034 +05:30 [Information] Request finished in 6026.8073ms 200 application/json; charset=utf-8 +2017-12-27 17:23:49.034 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" completed keep alive response. +2017-12-27 17:23:49.055 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-27 17:23:49.057 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-27 17:23:49.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-27 17:23:49.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:23:49.840 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:23:49.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:23:49.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:23:49.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6829.8195ms +2017-12-27 17:23:49.891 +05:30 [Information] Request finished in 6885.4358ms 200 application/json; charset=utf-8 +2017-12-27 17:23:49.892 +05:30 [Debug] Connection id ""0HLAD41D1G1KA"" completed keep alive response. +2017-12-27 17:23:50.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:23:50.075 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:23:50.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:23:50.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:23:50.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7069.2272ms +2017-12-27 17:23:50.089 +05:30 [Information] Request finished in 7083.2151ms 200 application/json; charset=utf-8 +2017-12-27 17:23:50.090 +05:30 [Debug] Connection id ""0HLAD41D1G1KD"" completed keep alive response. +2017-12-27 17:23:50.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:23:50.158 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:23:50.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:23:50.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:23:50.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7127.9088ms +2017-12-27 17:23:50.169 +05:30 [Information] Request finished in 7165.1909ms 200 application/json; charset=utf-8 +2017-12-27 17:23:50.170 +05:30 [Debug] Connection id ""0HLAD41D1G1KC"" completed keep alive response. +2017-12-27 17:23:50.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:23:50.425 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:23:50.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:23:50.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:23:50.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6673.0285ms +2017-12-27 17:23:50.430 +05:30 [Information] Request finished in 6678.7221ms 200 application/json; charset=utf-8 +2017-12-27 17:23:50.430 +05:30 [Debug] Connection id ""0HLAD41D1G1KE"" completed keep alive response. +2017-12-27 17:23:50.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:23:50.522 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:23:50.523 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:23:50.523 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:23:50.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5769.4037ms +2017-12-27 17:23:50.528 +05:30 [Information] Request finished in 5774.4641ms 200 application/json; charset=utf-8 +2017-12-27 17:23:50.528 +05:30 [Debug] Connection id ""0HLAD41D1G1KF"" completed keep alive response. +2017-12-27 17:23:52.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:23:54.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:23:54.649 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:23:54.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:23:54.651 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:23:54.690 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5629.5788ms +2017-12-27 17:23:54.693 +05:30 [Information] Request finished in 5639.226ms 200 application/json; charset=utf-8 +2017-12-27 17:23:54.693 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" completed keep alive response. +2017-12-27 17:26:29.245 +05:30 [Debug] Connection id ""0HLAD41D1G1KA"" received FIN. +2017-12-27 17:26:29.245 +05:30 [Debug] Connection id ""0HLAD41D1G1KC"" received FIN. +2017-12-27 17:26:29.246 +05:30 [Debug] Connection id ""0HLAD41D1G1KF"" received FIN. +2017-12-27 17:26:29.246 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" received FIN. +2017-12-27 17:26:29.246 +05:30 [Debug] Connection id ""0HLAD41D1G1KD"" received FIN. +2017-12-27 17:26:29.249 +05:30 [Debug] Connection id ""0HLAD41D1G1KE"" received FIN. +2017-12-27 17:26:29.250 +05:30 [Debug] Connection id ""0HLAD41D1G1KA"" disconnecting. +2017-12-27 17:26:29.251 +05:30 [Debug] Connection id ""0HLAD41D1G1KC"" disconnecting. +2017-12-27 17:26:29.275 +05:30 [Debug] Connection id ""0HLAD41D1G1KD"" disconnecting. +2017-12-27 17:26:29.276 +05:30 [Debug] Connection id ""0HLAD41D1G1KE"" disconnecting. +2017-12-27 17:26:29.275 +05:30 [Debug] Connection id ""0HLAD41D1G1KC"" sending FIN. +2017-12-27 17:26:29.277 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" disconnecting. +2017-12-27 17:26:29.252 +05:30 [Debug] Connection id ""0HLAD41D1G1KF"" disconnecting. +2017-12-27 17:26:29.277 +05:30 [Debug] Connection id ""0HLAD41D1G1KA"" sending FIN. +2017-12-27 17:26:29.280 +05:30 [Debug] Connection id ""0HLAD41D1G1KD"" sending FIN. +2017-12-27 17:26:29.281 +05:30 [Debug] Connection id ""0HLAD41D1G1KE"" sending FIN. +2017-12-27 17:26:29.280 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" sending FIN. +2017-12-27 17:26:29.282 +05:30 [Debug] Connection id ""0HLAD41D1G1KF"" sending FIN. +2017-12-27 17:26:29.293 +05:30 [Debug] Connection id ""0HLAD41D1G1KE"" sent FIN with status "0". +2017-12-27 17:26:29.293 +05:30 [Debug] Connection id ""0HLAD41D1G1KF"" sent FIN with status "0". +2017-12-27 17:26:29.298 +05:30 [Debug] Connection id ""0HLAD41D1G1KE"" stopped. +2017-12-27 17:26:29.298 +05:30 [Debug] Connection id ""0HLAD41D1G1KF"" stopped. +2017-12-27 17:26:29.298 +05:30 [Debug] Connection id ""0HLAD41D1G1KD"" sent FIN with status "0". +2017-12-27 17:26:29.299 +05:30 [Debug] Connection id ""0HLAD41D1G1KD"" stopped. +2017-12-27 17:26:29.299 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" sent FIN with status "0". +2017-12-27 17:26:29.300 +05:30 [Debug] Connection id ""0HLAD41D1G1KA"" sent FIN with status "0". +2017-12-27 17:26:29.300 +05:30 [Debug] Connection id ""0HLAD41D1G1KA"" stopped. +2017-12-27 17:26:29.300 +05:30 [Debug] Connection id ""0HLAD41D1G1KB"" stopped. +2017-12-27 17:26:29.301 +05:30 [Debug] Connection id ""0HLAD41D1G1KC"" sent FIN with status "0". +2017-12-27 17:26:29.301 +05:30 [Debug] Connection id ""0HLAD41D1G1KC"" stopped. +2017-12-27 17:41:47.733 +05:30 [Debug] Connection id ""0HLAD41D1G1KG"" started. +2017-12-27 17:41:47.735 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 17:41:47.736 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:41:47.738 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:41:50.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 17:41:53.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:41:53.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:41:53.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:41:53.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5975.4574ms +2017-12-27 17:41:53.752 +05:30 [Information] Request finished in 6003.0261ms 200 application/json; charset=utf-8 +2017-12-27 17:41:53.752 +05:30 [Debug] Connection id ""0HLAD41D1G1KG"" completed keep alive response. +2017-12-27 17:42:03.204 +05:30 [Debug] Connection id ""0HLAD41D1G1KH"" started. +2017-12-27 17:42:03.206 +05:30 [Debug] Connection id ""0HLAD41D1G1KJ"" started. +2017-12-27 17:42:03.206 +05:30 [Debug] Connection id ""0HLAD41D1G1KI"" started. +2017-12-27 17:42:03.207 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:42:03.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:42:03.211 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:42:03.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:42:03.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:42:03.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:42:03.225 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:42:03.226 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:42:03.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:42:03.242 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:42:03.242 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:42:03.243 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:42:03.413 +05:30 [Debug] Connection id ""0HLAD41D1G1KK"" started. +2017-12-27 17:42:03.413 +05:30 [Debug] Connection id ""0HLAD41D1G1KL"" started. +2017-12-27 17:42:03.415 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:42:03.416 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:42:03.417 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:42:03.419 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:42:03.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:42:03.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:42:05.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:42:05.706 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:42:05.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:42:06.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:42:06.546 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:42:06.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:42:06.787 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:42:06.787 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:42:06.787 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:42:06.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:42:06.790 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3368.4499ms +2017-12-27 17:42:06.792 +05:30 [Information] Request finished in 3378.5558ms 200 application/json; charset=utf-8 +2017-12-27 17:42:06.793 +05:30 [Debug] Connection id ""0HLAD41D1G1KL"" completed keep alive response. +2017-12-27 17:42:06.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-27 17:42:06.796 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-27 17:42:06.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-27 17:42:07.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:42:07.797 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:42:07.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:42:07.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:42:07.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4555.0097ms +2017-12-27 17:42:07.801 +05:30 [Information] Request finished in 4594.1724ms 200 application/json; charset=utf-8 +2017-12-27 17:42:07.801 +05:30 [Debug] Connection id ""0HLAD41D1G1KJ"" completed keep alive response. +2017-12-27 17:42:08.370 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:42:08.370 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:42:08.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:42:08.371 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:42:08.374 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5159.3281ms +2017-12-27 17:42:08.376 +05:30 [Information] Request finished in 5168.1013ms 200 application/json; charset=utf-8 +2017-12-27 17:42:08.376 +05:30 [Debug] Connection id ""0HLAD41D1G1KI"" completed keep alive response. +2017-12-27 17:42:08.450 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:42:08.450 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:42:08.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:42:08.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:42:08.453 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5240.2761ms +2017-12-27 17:42:08.455 +05:30 [Information] Request finished in 5250.6174ms 200 application/json; charset=utf-8 +2017-12-27 17:42:08.456 +05:30 [Debug] Connection id ""0HLAD41D1G1KG"" completed keep alive response. +2017-12-27 17:42:08.987 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:42:08.987 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:42:08.987 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:42:08.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:42:08.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5762.4918ms +2017-12-27 17:42:08.992 +05:30 [Information] Request finished in 5785.0601ms 200 application/json; charset=utf-8 +2017-12-27 17:42:08.992 +05:30 [Debug] Connection id ""0HLAD41D1G1KH"" completed keep alive response. +2017-12-27 17:42:09.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:42:09.105 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:42:09.106 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:42:09.106 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:42:09.108 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:42:09.109 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5691.4165ms +2017-12-27 17:42:09.111 +05:30 [Information] Request finished in 5697.7176ms 200 application/json; charset=utf-8 +2017-12-27 17:42:09.112 +05:30 [Debug] Connection id ""0HLAD41D1G1KK"" completed keep alive response. +2017-12-27 17:42:11.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:42:11.355 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:42:11.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:42:11.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:42:11.358 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4560.113ms +2017-12-27 17:42:11.362 +05:30 [Information] Request finished in 4566.0122ms 200 application/json; charset=utf-8 +2017-12-27 17:42:11.362 +05:30 [Debug] Connection id ""0HLAD41D1G1KL"" completed keep alive response. +2017-12-27 17:44:49.242 +05:30 [Debug] Connection id ""0HLAD41D1G1KI"" received FIN. +2017-12-27 17:44:49.242 +05:30 [Debug] Connection id ""0HLAD41D1G1KJ"" received FIN. +2017-12-27 17:44:49.242 +05:30 [Debug] Connection id ""0HLAD41D1G1KH"" received FIN. +2017-12-27 17:44:49.243 +05:30 [Debug] Connection id ""0HLAD41D1G1KG"" received FIN. +2017-12-27 17:44:49.243 +05:30 [Debug] Connection id ""0HLAD41D1G1KK"" received FIN. +2017-12-27 17:44:49.243 +05:30 [Debug] Connection id ""0HLAD41D1G1KL"" received FIN. +2017-12-27 17:44:49.269 +05:30 [Debug] Connection id ""0HLAD41D1G1KI"" disconnecting. +2017-12-27 17:44:49.270 +05:30 [Debug] Connection id ""0HLAD41D1G1KJ"" disconnecting. +2017-12-27 17:44:49.270 +05:30 [Debug] Connection id ""0HLAD41D1G1KK"" disconnecting. +2017-12-27 17:44:49.270 +05:30 [Debug] Connection id ""0HLAD41D1G1KL"" disconnecting. +2017-12-27 17:44:49.270 +05:30 [Debug] Connection id ""0HLAD41D1G1KJ"" sending FIN. +2017-12-27 17:44:49.270 +05:30 [Debug] Connection id ""0HLAD41D1G1KI"" sending FIN. +2017-12-27 17:44:49.270 +05:30 [Debug] Connection id ""0HLAD41D1G1KG"" disconnecting. +2017-12-27 17:44:49.271 +05:30 [Debug] Connection id ""0HLAD41D1G1KL"" sending FIN. +2017-12-27 17:44:49.271 +05:30 [Debug] Connection id ""0HLAD41D1G1KK"" sending FIN. +2017-12-27 17:44:49.271 +05:30 [Debug] Connection id ""0HLAD41D1G1KG"" sending FIN. +2017-12-27 17:44:49.271 +05:30 [Debug] Connection id ""0HLAD41D1G1KK"" sent FIN with status "0". +2017-12-27 17:44:49.272 +05:30 [Debug] Connection id ""0HLAD41D1G1KG"" sent FIN with status "0". +2017-12-27 17:44:49.270 +05:30 [Debug] Connection id ""0HLAD41D1G1KH"" disconnecting. +2017-12-27 17:44:49.272 +05:30 [Debug] Connection id ""0HLAD41D1G1KG"" stopped. +2017-12-27 17:44:49.272 +05:30 [Debug] Connection id ""0HLAD41D1G1KK"" stopped. +2017-12-27 17:44:49.272 +05:30 [Debug] Connection id ""0HLAD41D1G1KL"" sent FIN with status "0". +2017-12-27 17:44:49.273 +05:30 [Debug] Connection id ""0HLAD41D1G1KI"" sent FIN with status "0". +2017-12-27 17:44:49.273 +05:30 [Debug] Connection id ""0HLAD41D1G1KL"" stopped. +2017-12-27 17:44:49.273 +05:30 [Debug] Connection id ""0HLAD41D1G1KI"" stopped. +2017-12-27 17:44:49.273 +05:30 [Debug] Connection id ""0HLAD41D1G1KH"" sending FIN. +2017-12-27 17:44:49.273 +05:30 [Debug] Connection id ""0HLAD41D1G1KJ"" sent FIN with status "0". +2017-12-27 17:44:49.274 +05:30 [Debug] Connection id ""0HLAD41D1G1KJ"" stopped. +2017-12-27 17:44:49.274 +05:30 [Debug] Connection id ""0HLAD41D1G1KH"" sent FIN with status "0". +2017-12-27 17:44:49.274 +05:30 [Debug] Connection id ""0HLAD41D1G1KH"" stopped. +2017-12-27 17:49:07.293 +05:30 [Debug] Connection id ""0HLAD41D1G1KM"" started. +2017-12-27 17:49:07.298 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 17:49:07.298 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:49:07.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:49:09.408 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 17:49:12.384 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:49:12.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:49:12.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:49:12.386 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5086.6378ms +2017-12-27 17:49:12.388 +05:30 [Information] Request finished in 5091.25ms 200 application/json; charset=utf-8 +2017-12-27 17:49:12.389 +05:30 [Debug] Connection id ""0HLAD41D1G1KM"" completed keep alive response. +2017-12-27 17:49:16.844 +05:30 [Debug] Connection id ""0HLAD41D1G1KN"" started. +2017-12-27 17:49:16.846 +05:30 [Debug] Connection id ""0HLAD41D1G1KO"" started. +2017-12-27 17:49:16.846 +05:30 [Debug] Connection id ""0HLAD41D1G1KP"" started. +2017-12-27 17:49:16.869 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:49:16.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:49:16.955 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:49:17.077 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:49:17.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:49:17.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:49:17.161 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:49:17.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:49:17.162 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:49:17.319 +05:30 [Debug] Connection id ""0HLAD41D1G1KQ"" started. +2017-12-27 17:49:17.319 +05:30 [Debug] Connection id ""0HLAD41D1G1KR"" started. +2017-12-27 17:49:17.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:49:17.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:49:17.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:49:17.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 17:49:17.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 17:49:17.532 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 17:49:17.581 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 17:49:17.582 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 17:49:17.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 17:49:20.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:49:20.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:49:20.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:49:20.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:49:20.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:49:23.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:49:23.730 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:49:23.730 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:49:23.731 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:49:23.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6776.935ms +2017-12-27 17:49:23.735 +05:30 [Information] Request finished in 6910.7901ms 200 application/json; charset=utf-8 +2017-12-27 17:49:23.735 +05:30 [Debug] Connection id ""0HLAD41D1G1KM"" completed keep alive response. +2017-12-27 17:49:23.739 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:49:23.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:49:23.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:49:24.791 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:49:24.803 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:49:24.816 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:49:24.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:49:24.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7655.807ms +2017-12-27 17:49:24.834 +05:30 [Information] Request finished in 7754.6159ms 200 application/json; charset=utf-8 +2017-12-27 17:49:24.835 +05:30 [Debug] Connection id ""0HLAD41D1G1KO"" completed keep alive response. +2017-12-27 17:49:24.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 17:49:24.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:49:24.886 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:49:24.893 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:49:24.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:49:24.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7815.8079ms +2017-12-27 17:49:24.980 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:49:24.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:49:24.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:49:24.985 +05:30 [Information] Request finished in 8110.3938ms 200 application/json; charset=utf-8 +2017-12-27 17:49:24.986 +05:30 [Debug] Connection id ""0HLAD41D1G1KP"" completed keep alive response. +2017-12-27 17:49:25.019 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:49:25.019 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:49:25.019 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:49:25.028 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:49:25.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7623.284ms +2017-12-27 17:49:25.059 +05:30 [Information] Request finished in 8212.4897ms 200 application/json; charset=utf-8 +2017-12-27 17:49:25.059 +05:30 [Debug] Connection id ""0HLAD41D1G1KN"" completed keep alive response. +2017-12-27 17:49:25.835 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:49:26.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:49:26.828 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:49:26.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:49:26.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:49:26.833 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3091.2482ms +2017-12-27 17:49:26.839 +05:30 [Information] Request finished in 3099.3459ms 200 application/json; charset=utf-8 +2017-12-27 17:49:26.840 +05:30 [Debug] Connection id ""0HLAD41D1G1KM"" completed keep alive response. +2017-12-27 17:49:27.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:49:27.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:49:27.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-12-27 17:49:27.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:49:27.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 10346.5344ms +2017-12-27 17:49:27.881 +05:30 [Information] Request finished in 10487.7371ms 200 text/plain; charset=utf-8 +2017-12-27 17:49:27.882 +05:30 [Debug] Connection id ""0HLAD41D1G1KQ"" completed keep alive response. +2017-12-27 17:49:28.041 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:49:29.135 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:49:29.135 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:49:29.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:49:29.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:49:29.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4155.2791ms +2017-12-27 17:49:29.149 +05:30 [Information] Request finished in 4246.5988ms 200 application/json; charset=utf-8 +2017-12-27 17:49:29.150 +05:30 [Debug] Connection id ""0HLAD41D1G1KO"" completed keep alive response. +2017-12-27 17:49:30.576 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:49:30.576 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:49:30.576 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:49:30.578 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:49:30.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 13003.6285ms +2017-12-27 17:49:30.595 +05:30 [Information] Request finished in 13200.2359ms 200 application/json; charset=utf-8 +2017-12-27 17:49:30.596 +05:30 [Debug] Connection id ""0HLAD41D1G1KR"" completed keep alive response. +2017-12-27 17:49:30.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 17:49:30.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 17:49:30.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 17:49:33.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:49:34.206 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 17:49:34.214 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 17:49:34.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3604.2858ms +2017-12-27 17:49:34.220 +05:30 [Information] Request finished in 3614.8896ms 200 +2017-12-27 17:49:34.221 +05:30 [Debug] Connection id ""0HLAD41D1G1KP"" completed keep alive response. +2017-12-27 17:53:10.922 +05:30 [Debug] Hosting starting +2017-12-27 17:53:11.251 +05:30 [Debug] Hosting started +2017-12-27 17:53:11.427 +05:30 [Debug] Connection id ""0HLAD4IC6M057"" started. +2017-12-27 17:53:11.430 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" started. +2017-12-27 17:53:11.613 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-27 17:53:11.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-27 17:53:11.706 +05:30 [Information] Request finished in 111.5284ms 200 +2017-12-27 17:53:11.779 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" completed keep alive response. +2017-12-27 17:53:13.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-27 17:53:13.236 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"22fa525d-dff6-4857-92fe-c20b0b7b3a5b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-27 17:53:13.633 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-27 17:53:13.952 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-27 17:53:13.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-27 17:53:14.040 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:53:14.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:53:14.085 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:53:14.593 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 875.6959ms +2017-12-27 17:53:14.794 +05:30 [Information] Request finished in 3215.4626ms 200 application/json; charset=utf-8 +2017-12-27 17:53:14.796 +05:30 [Debug] Connection id ""0HLAD4IC6M057"" completed keep alive response. +2017-12-27 17:53:15.001 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-27 17:53:15.005 +05:30 [Debug] Request did not match any routes. +2017-12-27 17:53:15.032 +05:30 [Debug] The request path "" does not match the path filter +2017-12-27 17:53:15.035 +05:30 [Information] Request finished in 34.1163ms 404 +2017-12-27 17:53:15.036 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" completed keep alive response. +2017-12-27 17:53:37.170 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 200 +2017-12-27 17:53:37.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-27 17:53:37.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-27 17:53:40.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBADz0ZBkBB6Rp1GZAG3t8jazdojjst5KM8z6adcNKwSj4LzWoG0aldpMso6c8FsZBtdDoU03CLDSOOCFuQRTb44t2rhhclCjZBGFBvf24WTyWhZBm36tG2urwwnYCQ6rnIBnvxZAbpS2ZCrhFHWmjalXY6XpuJrQOgZDZD", "Free"]) - ModelState is Valid +2017-12-27 17:53:50.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:53:50.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:53:50.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:53:50.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 13455.0806ms +2017-12-27 17:53:50.639 +05:30 [Information] Request finished in 13471.8094ms 200 application/json; charset=utf-8 +2017-12-27 17:53:50.639 +05:30 [Debug] Connection id ""0HLAD4IC6M057"" completed keep alive response. +2017-12-27 17:53:51.256 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-27 17:53:51.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:53:51.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:53:54.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-27 17:53:55.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:53:55.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:53:55.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:53:56.052 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4792.1303ms +2017-12-27 17:53:56.054 +05:30 [Information] Request finished in 4798.1576ms 200 application/json; charset=utf-8 +2017-12-27 17:53:56.055 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" completed keep alive response. +2017-12-27 17:53:57.589 +05:30 [Debug] Connection id ""0HLAD4IC6M05A"" started. +2017-12-27 17:53:57.589 +05:30 [Debug] Connection id ""0HLAD4IC6M059"" started. +2017-12-27 17:53:57.590 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:53:57.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:53:57.612 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:53:57.590 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:53:57.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:53:57.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:53:57.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:53:57.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:53:57.615 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:53:57.616 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:53:57.621 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:53:57.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:53:57.738 +05:30 [Debug] Connection id ""0HLAD4IC6M05B"" started. +2017-12-27 17:53:57.738 +05:30 [Debug] Connection id ""0HLAD4IC6M05C"" started. +2017-12-27 17:53:58.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:53:58.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:53:58.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:53:59.295 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:53:59.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:53:59.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:54:02.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:54:02.488 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:54:02.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:54:02.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:54:02.626 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:54:02.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:54:03.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:54:03.072 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:54:03.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:54:03.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:54:03.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5463.2685ms +2017-12-27 17:54:03.082 +05:30 [Information] Request finished in 5491.4001ms 200 application/json; charset=utf-8 +2017-12-27 17:54:03.082 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" completed keep alive response. +2017-12-27 17:54:03.086 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-27 17:54:03.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-27 17:54:03.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-27 17:54:04.622 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:54:04.623 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:54:04.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:54:04.629 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:54:04.648 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7022.0949ms +2017-12-27 17:54:04.652 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:54:04.652 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:54:04.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:54:04.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:54:04.658 +05:30 [Information] Request finished in 7063.979ms 200 application/json; charset=utf-8 +2017-12-27 17:54:04.659 +05:30 [Debug] Connection id ""0HLAD4IC6M05A"" completed keep alive response. +2017-12-27 17:54:04.667 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7048.6939ms +2017-12-27 17:54:04.673 +05:30 [Information] Request finished in 7082.9865ms 200 application/json; charset=utf-8 +2017-12-27 17:54:04.684 +05:30 [Debug] Connection id ""0HLAD4IC6M057"" completed keep alive response. +2017-12-27 17:54:05.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:54:05.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:54:05.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:54:05.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:54:05.033 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5734.2361ms +2017-12-27 17:54:05.037 +05:30 [Information] Request finished in 5741.6235ms 200 application/json; charset=utf-8 +2017-12-27 17:54:05.038 +05:30 [Debug] Connection id ""0HLAD4IC6M05C"" completed keep alive response. +2017-12-27 17:54:05.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:54:05.176 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:54:05.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:54:05.177 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:54:05.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7548.9431ms +2017-12-27 17:54:05.183 +05:30 [Information] Request finished in 7592.8239ms 200 application/json; charset=utf-8 +2017-12-27 17:54:05.184 +05:30 [Debug] Connection id ""0HLAD4IC6M059"" completed keep alive response. +2017-12-27 17:54:05.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:54:05.216 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:54:05.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:54:05.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:54:05.226 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6907.5432ms +2017-12-27 17:54:05.230 +05:30 [Information] Request finished in 6934.0799ms 200 application/json; charset=utf-8 +2017-12-27 17:54:05.231 +05:30 [Debug] Connection id ""0HLAD4IC6M05B"" completed keep alive response. +2017-12-27 17:54:06.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:54:08.415 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:54:08.416 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:54:08.416 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:54:08.417 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:54:08.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5387.757ms +2017-12-27 17:54:08.479 +05:30 [Information] Request finished in 5393.4627ms 200 application/json; charset=utf-8 +2017-12-27 17:54:08.480 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" completed keep alive response. +2017-12-27 17:55:27.941 +05:30 [Debug] Connection id ""0HLAD4IC6M05A"" received FIN. +2017-12-27 17:55:27.945 +05:30 [Debug] Connection id ""0HLAD4IC6M05C"" received FIN. +2017-12-27 17:55:27.951 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" received FIN. +2017-12-27 17:55:27.951 +05:30 [Debug] Connection id ""0HLAD4IC6M05A"" disconnecting. +2017-12-27 17:55:27.952 +05:30 [Debug] Connection id ""0HLAD4IC6M05C"" disconnecting. +2017-12-27 17:55:27.952 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" disconnecting. +2017-12-27 17:55:27.953 +05:30 [Debug] Connection id ""0HLAD4IC6M057"" received FIN. +2017-12-27 17:55:27.953 +05:30 [Debug] Connection id ""0HLAD4IC6M059"" received FIN. +2017-12-27 17:55:27.953 +05:30 [Debug] Connection id ""0HLAD4IC6M05B"" received FIN. +2017-12-27 17:55:27.954 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" started. +2017-12-27 17:55:27.955 +05:30 [Debug] Connection id ""0HLAD4IC6M057"" disconnecting. +2017-12-27 17:55:27.955 +05:30 [Debug] Connection id ""0HLAD4IC6M059"" disconnecting. +2017-12-27 17:55:27.955 +05:30 [Debug] Connection id ""0HLAD4IC6M05B"" disconnecting. +2017-12-27 17:55:27.958 +05:30 [Debug] Connection id ""0HLAD4IC6M05A"" sending FIN. +2017-12-27 17:55:27.961 +05:30 [Debug] Connection id ""0HLAD4IC6M05C"" sending FIN. +2017-12-27 17:55:27.962 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" sending FIN. +2017-12-27 17:55:27.962 +05:30 [Debug] Connection id ""0HLAD4IC6M05E"" started. +2017-12-27 17:55:27.973 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" sent FIN with status "0". +2017-12-27 17:55:27.975 +05:30 [Debug] Connection id ""0HLAD4IC6M057"" sending FIN. +2017-12-27 17:55:27.977 +05:30 [Debug] Connection id ""0HLAD4IC6M059"" sending FIN. +2017-12-27 17:55:27.982 +05:30 [Debug] Connection id ""0HLAD4IC6M05B"" sending FIN. +2017-12-27 17:55:27.983 +05:30 [Debug] Connection id ""0HLAD4IC6M05B"" sent FIN with status "0". +2017-12-27 17:55:28.052 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 17:55:28.053 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 17:55:28.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 17:55:28.056 +05:30 [Debug] Connection id ""0HLAD4IC6M058"" stopped. +2017-12-27 17:55:28.059 +05:30 [Debug] Connection id ""0HLAD4IC6M05C"" sent FIN with status "0". +2017-12-27 17:55:28.059 +05:30 [Debug] Connection id ""0HLAD4IC6M05C"" stopped. +2017-12-27 17:55:28.059 +05:30 [Debug] Connection id ""0HLAD4IC6M05B"" stopped. +2017-12-27 17:55:28.071 +05:30 [Debug] Connection id ""0HLAD4IC6M059"" sent FIN with status "0". +2017-12-27 17:55:28.071 +05:30 [Debug] Connection id ""0HLAD4IC6M059"" stopped. +2017-12-27 17:55:28.071 +05:30 [Debug] Connection id ""0HLAD4IC6M057"" sent FIN with status "0". +2017-12-27 17:55:28.072 +05:30 [Debug] Connection id ""0HLAD4IC6M057"" stopped. +2017-12-27 17:55:28.075 +05:30 [Debug] Connection id ""0HLAD4IC6M05A"" sent FIN with status "0". +2017-12-27 17:55:28.076 +05:30 [Debug] Connection id ""0HLAD4IC6M05A"" stopped. +2017-12-27 17:55:28.101 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 17:55:28.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 17:55:28.108 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 17:55:31.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:55:32.888 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 17:55:36.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:55:36.835 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:55:36.835 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:55:36.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:55:36.837 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 8781.1772ms +2017-12-27 17:55:36.840 +05:30 [Information] Request finished in 8882.8379ms 200 application/json; charset=utf-8 +2017-12-27 17:55:36.840 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" completed keep alive response. +2017-12-27 17:55:38.502 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:55:38.502 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:55:38.502 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:55:38.503 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:55:38.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10401.5598ms +2017-12-27 17:55:38.513 +05:30 [Information] Request finished in 10435.5552ms 200 application/json; charset=utf-8 +2017-12-27 17:55:38.514 +05:30 [Debug] Connection id ""0HLAD4IC6M05E"" completed keep alive response. +2017-12-27 17:55:38.519 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 17:55:38.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 17:55:38.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 17:55:41.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:55:42.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 17:55:42.145 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 17:55:42.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3623.9334ms +2017-12-27 17:55:42.156 +05:30 [Information] Request finished in 3635.9433ms 200 +2017-12-27 17:55:42.157 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" completed keep alive response. +2017-12-27 17:56:39.362 +05:30 [Debug] Connection id ""0HLAD4IC6M05E"" received FIN. +2017-12-27 17:56:39.362 +05:30 [Debug] Connection id ""0HLAD4IC6M05E"" disconnecting. +2017-12-27 17:56:39.362 +05:30 [Debug] Connection id ""0HLAD4IC6M05E"" sending FIN. +2017-12-27 17:56:39.364 +05:30 [Debug] Connection id ""0HLAD4IC6M05E"" sent FIN with status "0". +2017-12-27 17:56:39.365 +05:30 [Debug] Connection id ""0HLAD4IC6M05E"" stopped. +2017-12-27 17:56:39.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 17:56:39.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:56:39.368 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:56:42.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 17:56:43.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:56:43.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:56:43.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:56:43.975 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4596.8147ms +2017-12-27 17:56:43.984 +05:30 [Information] Request finished in 4619.1342ms 200 application/json; charset=utf-8 +2017-12-27 17:56:43.984 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" completed keep alive response. +2017-12-27 17:56:49.127 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" started. +2017-12-27 17:56:49.127 +05:30 [Debug] Connection id ""0HLAD4IC6M05G"" started. +2017-12-27 17:56:49.128 +05:30 [Debug] Connection id ""0HLAD4IC6M05H"" started. +2017-12-27 17:56:49.129 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:56:49.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:56:49.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:56:49.137 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:56:49.139 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:56:49.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:56:49.147 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:56:49.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:56:49.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:56:49.182 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:56:49.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:56:49.183 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:56:49.330 +05:30 [Debug] Connection id ""0HLAD4IC6M05I"" started. +2017-12-27 17:56:49.334 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" started. +2017-12-27 17:56:49.339 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:56:49.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:56:49.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:56:51.020 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:56:51.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:56:51.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:56:54.231 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:56:54.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:56:54.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:56:54.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:56:54.286 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:56:54.340 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:56:54.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:56:54.759 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:56:54.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:56:54.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:56:54.789 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5630.9416ms +2017-12-27 17:56:54.845 +05:30 [Information] Request finished in 5686.9943ms 200 application/json; charset=utf-8 +2017-12-27 17:56:54.845 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" completed keep alive response. +2017-12-27 17:56:54.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:56:54.880 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:56:54.881 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:56:54.894 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 17:56:54.894 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 17:56:54.894 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 17:56:55.084 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:56:55.085 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:56:55.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:56:55.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:56:55.090 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5942.7888ms +2017-12-27 17:56:55.094 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:56:55.095 +05:30 [Information] Request finished in 5965.6895ms 200 application/json; charset=utf-8 +2017-12-27 17:56:55.096 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" completed keep alive response. +2017-12-27 17:56:55.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5912.3389ms +2017-12-27 17:56:55.161 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 17:56:55.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 17:56:55.162 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 17:56:55.165 +05:30 [Information] Request finished in 6029.5669ms 200 application/json; charset=utf-8 +2017-12-27 17:56:55.169 +05:30 [Debug] Connection id ""0HLAD4IC6M05H"" completed keep alive response. +2017-12-27 17:56:55.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:56:55.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:56:55.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:56:55.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:56:55.299 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:56:55.299 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:56:55.299 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:56:55.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:56:55.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5978.991ms +2017-12-27 17:56:55.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6174.5336ms +2017-12-27 17:56:55.330 +05:30 [Information] Request finished in 5992.1007ms 200 application/json; charset=utf-8 +2017-12-27 17:56:55.331 +05:30 [Debug] Connection id ""0HLAD4IC6M05I"" completed keep alive response. +2017-12-27 17:56:55.361 +05:30 [Information] Request finished in 6204.3826ms 200 application/json; charset=utf-8 +2017-12-27 17:56:55.361 +05:30 [Debug] Connection id ""0HLAD4IC6M05G"" completed keep alive response. +2017-12-27 17:56:55.384 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:56:55.384 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:56:55.385 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:56:55.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:56:55.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4377.2487ms +2017-12-27 17:56:55.426 +05:30 [Information] Request finished in 4412.6479ms 200 application/json; charset=utf-8 +2017-12-27 17:56:55.427 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" completed keep alive response. +2017-12-27 17:56:57.276 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:56:58.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 17:57:00.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:00.089 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:00.089 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:00.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:00.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 4927.3954ms +2017-12-27 17:57:00.094 +05:30 [Information] Request finished in 4960.5113ms 200 application/json; charset=utf-8 +2017-12-27 17:57:00.094 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" completed keep alive response. +2017-12-27 17:57:04.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:04.522 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:04.523 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:04.524 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:04.527 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 9631.0126ms +2017-12-27 17:57:04.531 +05:30 [Information] Request finished in 9670.3289ms 200 application/json; charset=utf-8 +2017-12-27 17:57:04.532 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" completed keep alive response. +2017-12-27 17:57:04.540 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 17:57:04.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 17:57:04.542 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 17:57:07.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:57:08.178 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 17:57:08.184 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 17:57:08.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3642.2791ms +2017-12-27 17:57:08.198 +05:30 [Information] Request finished in 3654.8009ms 200 +2017-12-27 17:57:08.198 +05:30 [Debug] Connection id ""0HLAD4IC6M05H"" completed keep alive response. +2017-12-27 17:57:08.793 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 17:57:08.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:57:08.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:57:15.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 17:57:17.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:17.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:17.505 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:17.506 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 8709.5551ms +2017-12-27 17:57:17.509 +05:30 [Information] Request finished in 8714.6905ms 200 application/json; charset=utf-8 +2017-12-27 17:57:17.509 +05:30 [Debug] Connection id ""0HLAD4IC6M05I"" completed keep alive response. +2017-12-27 17:57:18.396 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:57:18.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:57:18.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:57:18.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:57:18.401 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:57:18.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:57:18.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:57:18.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:57:18.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:57:18.437 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:57:18.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:57:18.440 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:57:18.506 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:57:18.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:57:18.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:57:18.512 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:57:18.513 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:57:18.513 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:57:22.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:57:22.125 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:57:22.194 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:57:22.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:57:22.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:57:22.203 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:57:22.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:22.658 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:22.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:22.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:22.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:22.661 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:22.661 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:22.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4237.4869ms +2017-12-27 17:57:22.665 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:22.672 +05:30 [Information] Request finished in 4273.0429ms 200 application/json; charset=utf-8 +2017-12-27 17:57:22.673 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" completed keep alive response. +2017-12-27 17:57:22.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 4271.5093ms +2017-12-27 17:57:22.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 17:57:22.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 17:57:22.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 17:57:22.688 +05:30 [Information] Request finished in 4286.9114ms 200 application/json; charset=utf-8 +2017-12-27 17:57:22.688 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" completed keep alive response. +2017-12-27 17:57:22.699 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 17:57:22.700 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 17:57:22.701 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 17:57:22.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:22.853 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:22.853 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:22.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:22.856 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4432.2047ms +2017-12-27 17:57:22.858 +05:30 [Information] Request finished in 4463.5226ms 200 application/json; charset=utf-8 +2017-12-27 17:57:22.858 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" completed keep alive response. +2017-12-27 17:57:23.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:23.204 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:23.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:23.206 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:23.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4766.0588ms +2017-12-27 17:57:23.213 +05:30 [Information] Request finished in 4817.7912ms 200 application/json; charset=utf-8 +2017-12-27 17:57:23.213 +05:30 [Debug] Connection id ""0HLAD4IC6M05G"" completed keep alive response. +2017-12-27 17:57:23.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:23.264 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:23.265 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:23.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:23.269 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4758.2658ms +2017-12-27 17:57:23.272 +05:30 [Information] Request finished in 4768.5963ms 200 application/json; charset=utf-8 +2017-12-27 17:57:23.272 +05:30 [Debug] Connection id ""0HLAD4IC6M05H"" completed keep alive response. +2017-12-27 17:57:23.279 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:23.279 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:23.279 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:23.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:23.284 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4767.0512ms +2017-12-27 17:57:23.286 +05:30 [Information] Request finished in 4777.3558ms 200 application/json; charset=utf-8 +2017-12-27 17:57:23.286 +05:30 [Debug] Connection id ""0HLAD4IC6M05I"" completed keep alive response. +2017-12-27 17:57:25.736 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 17:57:25.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:57:28.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:28.464 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:28.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:28.465 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:28.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5767.6362ms +2017-12-27 17:57:28.473 +05:30 [Information] Request finished in 5781.6757ms 200 application/json; charset=utf-8 +2017-12-27 17:57:28.474 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" completed keep alive response. +2017-12-27 17:57:32.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:57:32.885 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:57:32.885 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:57:32.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:57:32.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10204.735ms +2017-12-27 17:57:32.893 +05:30 [Information] Request finished in 10215.508ms 200 application/json; charset=utf-8 +2017-12-27 17:57:32.893 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" completed keep alive response. +2017-12-27 17:57:32.918 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 17:57:32.919 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 17:57:32.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 17:57:35.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:57:36.495 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 17:57:36.496 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 17:57:36.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3577.1447ms +2017-12-27 17:57:36.499 +05:30 [Information] Request finished in 3597.6675ms 200 +2017-12-27 17:57:36.499 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" completed keep alive response. +2017-12-27 17:58:23.804 +05:30 [Debug] Connection id ""0HLAD4IC6M05G"" received FIN. +2017-12-27 17:58:23.804 +05:30 [Debug] Connection id ""0HLAD4IC6M05H"" received FIN. +2017-12-27 17:58:23.804 +05:30 [Debug] Connection id ""0HLAD4IC6M05I"" received FIN. +2017-12-27 17:58:23.804 +05:30 [Debug] Connection id ""0HLAD4IC6M05G"" disconnecting. +2017-12-27 17:58:23.804 +05:30 [Debug] Connection id ""0HLAD4IC6M05H"" disconnecting. +2017-12-27 17:58:23.805 +05:30 [Debug] Connection id ""0HLAD4IC6M05G"" sending FIN. +2017-12-27 17:58:23.805 +05:30 [Debug] Connection id ""0HLAD4IC6M05I"" disconnecting. +2017-12-27 17:58:23.805 +05:30 [Debug] Connection id ""0HLAD4IC6M05H"" sending FIN. +2017-12-27 17:58:23.809 +05:30 [Debug] Connection id ""0HLAD4IC6M05H"" sent FIN with status "0". +2017-12-27 17:58:23.810 +05:30 [Debug] Connection id ""0HLAD4IC6M05I"" sending FIN. +2017-12-27 17:58:23.810 +05:30 [Debug] Connection id ""0HLAD4IC6M05H"" stopped. +2017-12-27 17:58:23.810 +05:30 [Debug] Connection id ""0HLAD4IC6M05G"" sent FIN with status "0". +2017-12-27 17:58:23.811 +05:30 [Debug] Connection id ""0HLAD4IC6M05I"" sent FIN with status "0". +2017-12-27 17:58:23.811 +05:30 [Debug] Connection id ""0HLAD4IC6M05G"" stopped. +2017-12-27 17:58:23.811 +05:30 [Debug] Connection id ""0HLAD4IC6M05I"" stopped. +2017-12-27 17:58:23.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 17:58:23.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 17:58:23.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 17:58:26.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 17:58:28.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:58:28.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:58:28.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:58:28.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4561.1462ms +2017-12-27 17:58:28.383 +05:30 [Information] Request finished in 4575.6562ms 200 application/json; charset=utf-8 +2017-12-27 17:58:28.384 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" completed keep alive response. +2017-12-27 17:58:31.936 +05:30 [Debug] Connection id ""0HLAD4IC6M05K"" started. +2017-12-27 17:58:31.942 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 17:58:31.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 17:58:31.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 17:58:32.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 17:58:32.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 17:58:32.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 17:58:32.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 17:58:32.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 17:58:32.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 17:58:32.188 +05:30 [Debug] Connection id ""0HLAD4IC6M05L"" started. +2017-12-27 17:58:32.202 +05:30 [Debug] Connection id ""0HLAD4IC6M05M"" started. +2017-12-27 17:58:32.243 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 17:58:32.243 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 17:58:32.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 17:58:32.275 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 17:58:32.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 17:58:32.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 17:58:33.879 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 17:58:33.880 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 17:58:33.880 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 17:58:36.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:58:37.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:58:37.431 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:58:37.431 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:58:37.432 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:58:37.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5489.7051ms +2017-12-27 17:58:37.435 +05:30 [Information] Request finished in 5510.4873ms 200 application/json; charset=utf-8 +2017-12-27 17:58:37.435 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" completed keep alive response. +2017-12-27 17:58:37.440 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 17:58:37.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 17:58:37.441 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 17:58:37.959 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:58:37.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:58:38.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:58:38.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:58:38.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:58:38.611 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:58:38.611 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:58:38.611 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:58:38.612 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:58:38.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6368.4045ms +2017-12-27 17:58:38.615 +05:30 [Information] Request finished in 6678.1222ms 200 application/json; charset=utf-8 +2017-12-27 17:58:38.615 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" completed keep alive response. +2017-12-27 17:58:38.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 17:58:38.625 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 17:58:38.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 17:58:38.685 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:58:38.685 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:58:38.685 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:58:38.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:58:38.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6660.929ms +2017-12-27 17:58:38.690 +05:30 [Information] Request finished in 6749.0205ms 200 application/json; charset=utf-8 +2017-12-27 17:58:38.690 +05:30 [Debug] Connection id ""0HLAD4IC6M05K"" completed keep alive response. +2017-12-27 17:58:39.086 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:58:39.087 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:58:39.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:58:39.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:58:39.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6954.0563ms +2017-12-27 17:58:39.090 +05:30 [Information] Request finished in 7153.4538ms 200 application/json; charset=utf-8 +2017-12-27 17:58:39.091 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" completed keep alive response. +2017-12-27 17:58:39.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:58:39.112 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:58:39.112 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:58:39.113 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:58:39.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6833.1472ms +2017-12-27 17:58:39.127 +05:30 [Information] Request finished in 6919.4902ms 200 application/json; charset=utf-8 +2017-12-27 17:58:39.127 +05:30 [Debug] Connection id ""0HLAD4IC6M05L"" completed keep alive response. +2017-12-27 17:58:39.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:58:39.201 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:58:39.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:58:39.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:58:39.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5321.3117ms +2017-12-27 17:58:39.207 +05:30 [Information] Request finished in 5328.0338ms 200 application/json; charset=utf-8 +2017-12-27 17:58:39.208 +05:30 [Debug] Connection id ""0HLAD4IC6M05M"" completed keep alive response. +2017-12-27 17:58:40.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 17:58:41.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:58:44.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:58:44.056 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:58:44.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:58:44.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:58:44.059 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5432.2579ms +2017-12-27 17:58:44.061 +05:30 [Information] Request finished in 5436.3924ms 200 application/json; charset=utf-8 +2017-12-27 17:58:44.061 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" completed keep alive response. +2017-12-27 17:58:47.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 17:58:47.276 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 17:58:47.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 17:58:47.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 17:58:47.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 9836.8573ms +2017-12-27 17:58:47.282 +05:30 [Information] Request finished in 9841.9976ms 200 application/json; charset=utf-8 +2017-12-27 17:58:47.283 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" completed keep alive response. +2017-12-27 17:58:47.290 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 17:58:47.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 17:58:47.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 17:58:50.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 17:58:50.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 17:58:50.887 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 17:58:50.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3595.4696ms +2017-12-27 17:58:50.895 +05:30 [Information] Request finished in 3602.9621ms 200 +2017-12-27 17:58:50.904 +05:30 [Debug] Connection id ""0HLAD4IC6M05K"" completed keep alive response. +2017-12-27 18:00:27.575 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" received FIN. +2017-12-27 18:00:27.576 +05:30 [Debug] Connection id ""0HLAD4IC6M05M"" received FIN. +2017-12-27 18:00:27.576 +05:30 [Debug] Connection id ""0HLAD4IC6M05L"" received FIN. +2017-12-27 18:00:27.576 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" received FIN. +2017-12-27 18:00:27.576 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" disconnecting. +2017-12-27 18:00:27.576 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" received FIN. +2017-12-27 18:00:27.577 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" sending FIN. +2017-12-27 18:00:27.577 +05:30 [Debug] Connection id ""0HLAD4IC6M05K"" received FIN. +2017-12-27 18:00:27.577 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" sent FIN with status "0". +2017-12-27 18:00:27.578 +05:30 [Debug] Connection id ""0HLAD4IC6M05M"" disconnecting. +2017-12-27 18:00:27.578 +05:30 [Debug] Connection id ""0HLAD4IC6M05J"" stopped. +2017-12-27 18:00:27.578 +05:30 [Debug] Connection id ""0HLAD4IC6M05M"" sending FIN. +2017-12-27 18:00:27.578 +05:30 [Debug] Connection id ""0HLAD4IC6M05N"" started. +2017-12-27 18:00:27.578 +05:30 [Debug] Connection id ""0HLAD4IC6M05M"" sent FIN with status "0". +2017-12-27 18:00:27.579 +05:30 [Debug] Connection id ""0HLAD4IC6M05M"" stopped. +2017-12-27 18:00:27.579 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" disconnecting. +2017-12-27 18:00:27.579 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" disconnecting. +2017-12-27 18:00:27.579 +05:30 [Debug] Connection id ""0HLAD4IC6M05K"" disconnecting. +2017-12-27 18:00:27.579 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" sending FIN. +2017-12-27 18:00:27.582 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" sending FIN. +2017-12-27 18:00:27.582 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:00:27.582 +05:30 [Debug] Connection id ""0HLAD4IC6M05K"" sending FIN. +2017-12-27 18:00:27.582 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:00:27.582 +05:30 [Debug] Connection id ""0HLAD4IC6M05K"" sent FIN with status "0". +2017-12-27 18:00:27.578 +05:30 [Debug] Connection id ""0HLAD4IC6M05L"" disconnecting. +2017-12-27 18:00:27.582 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:00:27.583 +05:30 [Debug] Connection id ""0HLAD4IC6M05L"" sending FIN. +2017-12-27 18:00:27.584 +05:30 [Debug] Connection id ""0HLAD4IC6M05L"" sent FIN with status "0". +2017-12-27 18:00:27.583 +05:30 [Debug] Connection id ""0HLAD4IC6M05K"" stopped. +2017-12-27 18:00:27.585 +05:30 [Debug] Connection id ""0HLAD4IC6M05L"" stopped. +2017-12-27 18:00:27.585 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" sent FIN with status "0". +2017-12-27 18:00:27.586 +05:30 [Debug] Connection id ""0HLAD4IC6M05F"" stopped. +2017-12-27 18:00:27.586 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" sent FIN with status "0". +2017-12-27 18:00:27.586 +05:30 [Debug] Connection id ""0HLAD4IC6M05D"" stopped. +2017-12-27 18:00:30.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:00:32.150 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:00:32.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:00:32.152 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:00:32.153 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4568.5323ms +2017-12-27 18:00:32.155 +05:30 [Information] Request finished in 4574.4424ms 200 application/json; charset=utf-8 +2017-12-27 18:00:32.155 +05:30 [Debug] Connection id ""0HLAD4IC6M05N"" completed keep alive response. +2017-12-27 18:00:37.255 +05:30 [Debug] Connection id ""0HLAD4IC6M05O"" started. +2017-12-27 18:00:37.283 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:00:37.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:00:37.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:00:37.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:00:37.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:00:37.374 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:00:37.410 +05:30 [Debug] Connection id ""0HLAD4IC6M05P"" started. +2017-12-27 18:00:37.410 +05:30 [Debug] Connection id ""0HLAD4IC6M05Q"" started. +2017-12-27 18:00:37.456 +05:30 [Debug] Connection id ""0HLAD4IC6M05S"" started. +2017-12-27 18:00:37.459 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:00:37.459 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:00:37.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:00:37.420 +05:30 [Debug] Connection id ""0HLAD4IC6M05R"" started. +2017-12-27 18:00:37.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:00:37.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:00:37.504 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:00:37.571 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:00:37.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:00:37.573 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:00:37.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:00:37.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:00:37.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:00:39.556 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:00:41.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:00:41.149 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:00:42.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:00:42.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:00:42.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:00:42.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:00:42.188 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:00:42.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:00:42.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:00:42.194 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4732.6587ms +2017-12-27 18:00:42.197 +05:30 [Information] Request finished in 4781.3069ms 200 application/json; charset=utf-8 +2017-12-27 18:00:42.197 +05:30 [Debug] Connection id ""0HLAD4IC6M05P"" completed keep alive response. +2017-12-27 18:00:42.202 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:00:42.202 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:00:42.203 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:00:42.234 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:00:42.235 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:00:42.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:00:42.235 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:00:42.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 4951.6195ms +2017-12-27 18:00:42.239 +05:30 [Information] Request finished in 4995.7842ms 200 application/json; charset=utf-8 +2017-12-27 18:00:42.239 +05:30 [Debug] Connection id ""0HLAD4IC6M05N"" completed keep alive response. +2017-12-27 18:00:42.243 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:00:42.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:00:42.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:00:42.666 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:00:42.667 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:00:42.667 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:00:42.668 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:00:42.669 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5093.0343ms +2017-12-27 18:00:42.671 +05:30 [Information] Request finished in 5170.3639ms 200 application/json; charset=utf-8 +2017-12-27 18:00:42.671 +05:30 [Debug] Connection id ""0HLAD4IC6M05S"" completed keep alive response. +2017-12-27 18:00:42.736 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:00:42.737 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:00:42.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:00:42.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:00:42.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5234.0798ms +2017-12-27 18:00:42.742 +05:30 [Information] Request finished in 5283.2067ms 200 application/json; charset=utf-8 +2017-12-27 18:00:42.742 +05:30 [Debug] Connection id ""0HLAD4IC6M05Q"" completed keep alive response. +2017-12-27 18:00:42.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:00:42.812 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:00:42.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:00:42.813 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:00:42.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5188.2957ms +2017-12-27 18:00:42.816 +05:30 [Information] Request finished in 5262.7137ms 200 application/json; charset=utf-8 +2017-12-27 18:00:42.817 +05:30 [Debug] Connection id ""0HLAD4IC6M05R"" completed keep alive response. +2017-12-27 18:00:44.289 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:00:45.316 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:00:45.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:00:45.318 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:00:45.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:00:45.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:00:45.320 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 3116.1692ms +2017-12-27 18:00:45.323 +05:30 [Information] Request finished in 3121.169ms 200 application/json; charset=utf-8 +2017-12-27 18:00:45.323 +05:30 [Debug] Connection id ""0HLAD4IC6M05P"" completed keep alive response. +2017-12-27 18:00:46.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:00:46.413 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:00:46.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:00:46.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:00:46.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4169.8508ms +2017-12-27 18:00:46.419 +05:30 [Information] Request finished in 4176.2423ms 200 application/json; charset=utf-8 +2017-12-27 18:00:46.419 +05:30 [Debug] Connection id ""0HLAD4IC6M05N"" completed keep alive response. +2017-12-27 18:00:46.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:00:46.789 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:00:46.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:00:46.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:00:46.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 9415.7337ms +2017-12-27 18:00:46.797 +05:30 [Information] Request finished in 9513.6929ms 200 application/json; charset=utf-8 +2017-12-27 18:00:46.798 +05:30 [Debug] Connection id ""0HLAD4IC6M05O"" completed keep alive response. +2017-12-27 18:00:46.853 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:00:46.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:00:46.854 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:00:49.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:00:50.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:00:50.450 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:00:50.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3595.7377ms +2017-12-27 18:00:50.452 +05:30 [Information] Request finished in 3612.3953ms 200 +2017-12-27 18:00:50.453 +05:30 [Debug] Connection id ""0HLAD4IC6M05S"" completed keep alive response. +2017-12-27 18:01:57.051 +05:30 [Debug] Connection id ""0HLAD4IC6M05R"" received FIN. +2017-12-27 18:01:57.051 +05:30 [Debug] Connection id ""0HLAD4IC6M05Q"" received FIN. +2017-12-27 18:01:57.051 +05:30 [Debug] Connection id ""0HLAD4IC6M05R"" disconnecting. +2017-12-27 18:01:57.052 +05:30 [Debug] Connection id ""0HLAD4IC6M05N"" received FIN. +2017-12-27 18:01:57.051 +05:30 [Debug] Connection id ""0HLAD4IC6M05P"" received FIN. +2017-12-27 18:01:57.075 +05:30 [Debug] Connection id ""0HLAD4IC6M05N"" disconnecting. +2017-12-27 18:01:57.075 +05:30 [Debug] Connection id ""0HLAD4IC6M05O"" received FIN. +2017-12-27 18:01:57.075 +05:30 [Debug] Connection id ""0HLAD4IC6M05P"" disconnecting. +2017-12-27 18:01:57.075 +05:30 [Debug] Connection id ""0HLAD4IC6M05R"" sending FIN. +2017-12-27 18:01:57.053 +05:30 [Debug] Connection id ""0HLAD4IC6M05Q"" disconnecting. +2017-12-27 18:01:57.075 +05:30 [Debug] Connection id ""0HLAD4IC6M05O"" disconnecting. +2017-12-27 18:01:57.076 +05:30 [Debug] Connection id ""0HLAD4IC6M05P"" sending FIN. +2017-12-27 18:01:57.074 +05:30 [Debug] Connection id ""0HLAD4IC6M05S"" received FIN. +2017-12-27 18:01:57.077 +05:30 [Debug] Connection id ""0HLAD4IC6M05O"" sending FIN. +2017-12-27 18:01:57.077 +05:30 [Debug] Connection id ""0HLAD4IC6M05N"" sending FIN. +2017-12-27 18:01:57.077 +05:30 [Debug] Connection id ""0HLAD4IC6M05O"" sent FIN with status "0". +2017-12-27 18:01:57.077 +05:30 [Debug] Connection id ""0HLAD4IC6M05S"" disconnecting. +2017-12-27 18:01:57.077 +05:30 [Debug] Connection id ""0HLAD4IC6M05Q"" sending FIN. +2017-12-27 18:01:57.078 +05:30 [Debug] Connection id ""0HLAD4IC6M05S"" sending FIN. +2017-12-27 18:01:57.077 +05:30 [Debug] Connection id ""0HLAD4IC6M05O"" stopped. +2017-12-27 18:01:57.078 +05:30 [Debug] Connection id ""0HLAD4IC6M05T"" started. +2017-12-27 18:01:57.078 +05:30 [Debug] Connection id ""0HLAD4IC6M05P"" sent FIN with status "0". +2017-12-27 18:01:57.078 +05:30 [Debug] Connection id ""0HLAD4IC6M05S"" sent FIN with status "0". +2017-12-27 18:01:57.078 +05:30 [Debug] Connection id ""0HLAD4IC6M05P"" stopped. +2017-12-27 18:01:57.079 +05:30 [Debug] Connection id ""0HLAD4IC6M05R"" sent FIN with status "0". +2017-12-27 18:01:57.079 +05:30 [Debug] Connection id ""0HLAD4IC6M05R"" stopped. +2017-12-27 18:01:57.079 +05:30 [Debug] Connection id ""0HLAD4IC6M05S"" stopped. +2017-12-27 18:01:57.079 +05:30 [Debug] Connection id ""0HLAD4IC6M05Q"" sent FIN with status "0". +2017-12-27 18:01:57.080 +05:30 [Debug] Connection id ""0HLAD4IC6M05Q"" stopped. +2017-12-27 18:01:57.080 +05:30 [Debug] Connection id ""0HLAD4IC6M05N"" sent FIN with status "0". +2017-12-27 18:01:57.080 +05:30 [Debug] Connection id ""0HLAD4IC6M05N"" stopped. +2017-12-27 18:01:57.082 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:01:57.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:01:57.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:02:00.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:02:01.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:02:01.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:02:01.671 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:02:01.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4588.9456ms +2017-12-27 18:02:01.678 +05:30 [Information] Request finished in 4595.3723ms 200 application/json; charset=utf-8 +2017-12-27 18:02:01.679 +05:30 [Debug] Connection id ""0HLAD4IC6M05T"" completed keep alive response. +2017-12-27 18:02:03.022 +05:30 [Debug] Connection id ""0HLAD4IC6M05U"" started. +2017-12-27 18:02:03.022 +05:30 [Debug] Connection id ""0HLAD4IC6M060"" started. +2017-12-27 18:02:03.022 +05:30 [Debug] Connection id ""0HLAD4IC6M05V"" started. +2017-12-27 18:02:03.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:02:03.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:02:03.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:02:03.082 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:02:03.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:02:03.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:02:03.097 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:02:03.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:02:03.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:02:03.146 +05:30 [Debug] Connection id ""0HLAD4IC6M062"" started. +2017-12-27 18:02:03.146 +05:30 [Debug] Connection id ""0HLAD4IC6M061"" started. +2017-12-27 18:02:03.216 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:02:03.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:02:03.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:02:03.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:02:03.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:02:03.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:02:03.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:02:03.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:02:03.296 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:02:05.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:02:05.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:02:05.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:02:05.770 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:02:05.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:02:05.771 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:02:05.772 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 2687.8259ms +2017-12-27 18:02:05.774 +05:30 [Information] Request finished in 2750.9497ms 200 application/json; charset=utf-8 +2017-12-27 18:02:05.775 +05:30 [Debug] Connection id ""0HLAD4IC6M05U"" completed keep alive response. +2017-12-27 18:02:05.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:02:05.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:02:05.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:02:05.833 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:02:05.834 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:02:05.834 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:02:05.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:02:05.844 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2808.2221ms +2017-12-27 18:02:05.846 +05:30 [Information] Request finished in 2834.7564ms 200 application/json; charset=utf-8 +2017-12-27 18:02:05.847 +05:30 [Debug] Connection id ""0HLAD4IC6M05T"" completed keep alive response. +2017-12-27 18:02:05.863 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:02:05.864 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:02:05.865 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:02:06.133 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:02:06.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:02:06.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:02:06.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:02:06.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:02:06.659 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:02:06.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:02:06.664 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:02:06.670 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3566.3251ms +2017-12-27 18:02:06.673 +05:30 [Information] Request finished in 3646.6575ms 200 application/json; charset=utf-8 +2017-12-27 18:02:06.673 +05:30 [Debug] Connection id ""0HLAD4IC6M05V"" completed keep alive response. +2017-12-27 18:02:07.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:02:07.325 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:02:07.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:02:07.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:02:07.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4108.5641ms +2017-12-27 18:02:07.330 +05:30 [Information] Request finished in 4306.3569ms 200 application/json; charset=utf-8 +2017-12-27 18:02:07.330 +05:30 [Debug] Connection id ""0HLAD4IC6M060"" completed keep alive response. +2017-12-27 18:02:07.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:02:07.449 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:02:07.450 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:02:07.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:02:07.453 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4167.9132ms +2017-12-27 18:02:07.454 +05:30 [Information] Request finished in 4299.0818ms 200 application/json; charset=utf-8 +2017-12-27 18:02:07.455 +05:30 [Debug] Connection id ""0HLAD4IC6M061"" completed keep alive response. +2017-12-27 18:02:07.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:02:07.519 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:02:07.519 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:02:07.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:02:07.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4222.919ms +2017-12-27 18:02:07.522 +05:30 [Information] Request finished in 4365.379ms 200 application/json; charset=utf-8 +2017-12-27 18:02:07.523 +05:30 [Debug] Connection id ""0HLAD4IC6M062"" completed keep alive response. +2017-12-27 18:02:08.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:02:08.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:02:11.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:02:11.812 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:02:11.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:02:11.813 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:02:11.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5948.5315ms +2017-12-27 18:02:11.818 +05:30 [Information] Request finished in 5963.8608ms 200 application/json; charset=utf-8 +2017-12-27 18:02:11.819 +05:30 [Debug] Connection id ""0HLAD4IC6M05T"" completed keep alive response. +2017-12-27 18:02:15.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:02:15.999 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:02:16.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:02:16.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:02:16.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10221.1509ms +2017-12-27 18:02:16.004 +05:30 [Information] Request finished in 10225.7713ms 200 application/json; charset=utf-8 +2017-12-27 18:02:16.005 +05:30 [Debug] Connection id ""0HLAD4IC6M05U"" completed keep alive response. +2017-12-27 18:02:16.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:02:16.029 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:02:16.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:02:18.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:02:18.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:02:18.689 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:02:18.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 2659.0418ms +2017-12-27 18:02:18.695 +05:30 [Information] Request finished in 2679.1099ms 200 +2017-12-27 18:02:18.696 +05:30 [Debug] Connection id ""0HLAD4IC6M05V"" completed keep alive response. +2017-12-27 18:03:54.393 +05:30 [Debug] Connection id ""0HLAD4IC6M060"" received FIN. +2017-12-27 18:03:54.393 +05:30 [Debug] Connection id ""0HLAD4IC6M062"" received FIN. +2017-12-27 18:03:54.393 +05:30 [Debug] Connection id ""0HLAD4IC6M060"" disconnecting. +2017-12-27 18:03:54.393 +05:30 [Debug] Connection id ""0HLAD4IC6M061"" received FIN. +2017-12-27 18:03:54.393 +05:30 [Debug] Connection id ""0HLAD4IC6M05U"" received FIN. +2017-12-27 18:03:54.394 +05:30 [Debug] Connection id ""0HLAD4IC6M05T"" received FIN. +2017-12-27 18:03:54.394 +05:30 [Debug] Connection id ""0HLAD4IC6M062"" disconnecting. +2017-12-27 18:03:54.394 +05:30 [Debug] Connection id ""0HLAD4IC6M05V"" received FIN. +2017-12-27 18:03:54.394 +05:30 [Debug] Connection id ""0HLAD4IC6M060"" sending FIN. +2017-12-27 18:03:54.397 +05:30 [Debug] Connection id ""0HLAD4IC6M05T"" disconnecting. +2017-12-27 18:03:54.396 +05:30 [Debug] Connection id ""0HLAD4IC6M062"" sending FIN. +2017-12-27 18:03:54.400 +05:30 [Debug] Connection id ""0HLAD4IC6M060"" sent FIN with status "0". +2017-12-27 18:03:54.400 +05:30 [Debug] Connection id ""0HLAD4IC6M060"" stopped. +2017-12-27 18:03:54.400 +05:30 [Debug] Connection id ""0HLAD4IC6M063"" started. +2017-12-27 18:03:54.401 +05:30 [Debug] Connection id ""0HLAD4IC6M05T"" sending FIN. +2017-12-27 18:03:54.401 +05:30 [Debug] Connection id ""0HLAD4IC6M05T"" sent FIN with status "0". +2017-12-27 18:03:54.401 +05:30 [Debug] Connection id ""0HLAD4IC6M062"" sent FIN with status "0". +2017-12-27 18:03:54.401 +05:30 [Debug] Connection id ""0HLAD4IC6M05T"" stopped. +2017-12-27 18:03:54.397 +05:30 [Debug] Connection id ""0HLAD4IC6M05U"" disconnecting. +2017-12-27 18:03:54.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:03:54.397 +05:30 [Debug] Connection id ""0HLAD4IC6M05V"" disconnecting. +2017-12-27 18:03:54.394 +05:30 [Debug] Connection id ""0HLAD4IC6M061"" disconnecting. +2017-12-27 18:03:54.402 +05:30 [Debug] Connection id ""0HLAD4IC6M062"" stopped. +2017-12-27 18:03:54.403 +05:30 [Debug] Connection id ""0HLAD4IC6M061"" sending FIN. +2017-12-27 18:03:54.403 +05:30 [Debug] Connection id ""0HLAD4IC6M05U"" sending FIN. +2017-12-27 18:03:54.403 +05:30 [Debug] Connection id ""0HLAD4IC6M061"" sent FIN with status "0". +2017-12-27 18:03:54.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:03:54.403 +05:30 [Debug] Connection id ""0HLAD4IC6M05V"" sending FIN. +2017-12-27 18:03:54.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:03:54.404 +05:30 [Debug] Connection id ""0HLAD4IC6M05V"" sent FIN with status "0". +2017-12-27 18:03:54.404 +05:30 [Debug] Connection id ""0HLAD4IC6M061"" stopped. +2017-12-27 18:03:54.404 +05:30 [Debug] Connection id ""0HLAD4IC6M05V"" stopped. +2017-12-27 18:03:54.406 +05:30 [Debug] Connection id ""0HLAD4IC6M05U"" sent FIN with status "0". +2017-12-27 18:03:54.407 +05:30 [Debug] Connection id ""0HLAD4IC6M05U"" stopped. +2017-12-27 18:03:56.517 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:03:58.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:03:58.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:03:58.054 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:03:58.055 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3650.634ms +2017-12-27 18:03:58.058 +05:30 [Information] Request finished in 3657.0271ms 200 application/json; charset=utf-8 +2017-12-27 18:03:58.059 +05:30 [Debug] Connection id ""0HLAD4IC6M063"" completed keep alive response. +2017-12-27 18:04:01.421 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:04:01.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:04:01.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:04:01.429 +05:30 [Debug] Connection id ""0HLAD4IC6M064"" started. +2017-12-27 18:04:01.435 +05:30 [Debug] Connection id ""0HLAD4IC6M065"" started. +2017-12-27 18:04:01.435 +05:30 [Debug] Connection id ""0HLAD4IC6M066"" started. +2017-12-27 18:04:01.439 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:04:01.447 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:04:01.448 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:04:01.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:04:01.449 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:04:01.449 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:04:01.468 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:04:01.478 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:04:01.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:04:02.024 +05:30 [Debug] Connection id ""0HLAD4IC6M067"" started. +2017-12-27 18:04:02.033 +05:30 [Debug] Connection id ""0HLAD4IC6M068"" started. +2017-12-27 18:04:03.078 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:04:03.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:04:03.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:04:04.085 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:04:04.086 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:04:04.087 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:04:07.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:04:07.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:04:07.186 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:04:07.708 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:04:07.708 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:04:07.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:04:07.710 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:04:07.711 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6261.3391ms +2017-12-27 18:04:07.714 +05:30 [Information] Request finished in 6277.0854ms 200 application/json; charset=utf-8 +2017-12-27 18:04:07.715 +05:30 [Debug] Connection id ""0HLAD4IC6M064"" completed keep alive response. +2017-12-27 18:04:07.800 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:04:07.812 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:04:07.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:04:07.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:04:07.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:04:07.844 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:04:07.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:04:07.845 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:04:07.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:04:07.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:04:07.850 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6426.201ms +2017-12-27 18:04:07.853 +05:30 [Information] Request finished in 6434.3376ms 200 application/json; charset=utf-8 +2017-12-27 18:04:07.854 +05:30 [Debug] Connection id ""0HLAD4IC6M063"" completed keep alive response. +2017-12-27 18:04:07.858 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:04:07.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:04:07.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:04:08.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:04:08.230 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:04:08.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:04:08.231 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:04:08.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6752.5567ms +2017-12-27 18:04:08.236 +05:30 [Information] Request finished in 6798.5893ms 200 application/json; charset=utf-8 +2017-12-27 18:04:08.236 +05:30 [Debug] Connection id ""0HLAD4IC6M065"" completed keep alive response. +2017-12-27 18:04:08.352 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:04:08.352 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:04:08.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:04:08.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:04:08.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6903.9159ms +2017-12-27 18:04:08.358 +05:30 [Information] Request finished in 6920.1477ms 200 application/json; charset=utf-8 +2017-12-27 18:04:08.358 +05:30 [Debug] Connection id ""0HLAD4IC6M066"" completed keep alive response. +2017-12-27 18:04:08.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:04:08.846 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:04:08.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:04:08.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:04:08.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5767.3541ms +2017-12-27 18:04:08.850 +05:30 [Information] Request finished in 5770.6063ms 200 application/json; charset=utf-8 +2017-12-27 18:04:08.851 +05:30 [Debug] Connection id ""0HLAD4IC6M067"" completed keep alive response. +2017-12-27 18:04:08.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:04:08.909 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:04:08.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:04:08.911 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:04:08.912 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4823.8559ms +2017-12-27 18:04:08.913 +05:30 [Information] Request finished in 4828.5462ms 200 application/json; charset=utf-8 +2017-12-27 18:04:08.913 +05:30 [Debug] Connection id ""0HLAD4IC6M068"" completed keep alive response. +2017-12-27 18:04:10.886 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:04:12.955 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:04:14.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:04:14.160 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:04:14.161 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:04:14.162 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:04:14.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 6303.6343ms +2017-12-27 18:04:14.167 +05:30 [Information] Request finished in 6308.5915ms 200 application/json; charset=utf-8 +2017-12-27 18:04:14.167 +05:30 [Debug] Connection id ""0HLAD4IC6M063"" completed keep alive response. +2017-12-27 18:04:18.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:04:18.553 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:04:18.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:04:18.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:04:18.559 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10712.9038ms +2017-12-27 18:04:18.563 +05:30 [Information] Request finished in 10811.1811ms 200 application/json; charset=utf-8 +2017-12-27 18:04:18.564 +05:30 [Debug] Connection id ""0HLAD4IC6M064"" completed keep alive response. +2017-12-27 18:04:18.578 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:04:18.579 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:04:18.580 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:04:21.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:04:22.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:04:22.167 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:04:22.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3586.9552ms +2017-12-27 18:04:22.169 +05:30 [Information] Request finished in 3592.6964ms 200 +2017-12-27 18:04:22.170 +05:30 [Debug] Connection id ""0HLAD4IC6M065"" completed keep alive response. +2017-12-27 18:06:01.406 +05:30 [Debug] Connection id ""0HLAD4IC6M066"" received FIN. +2017-12-27 18:06:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M067"" received FIN. +2017-12-27 18:06:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M066"" disconnecting. +2017-12-27 18:06:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M063"" received FIN. +2017-12-27 18:06:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M068"" received FIN. +2017-12-27 18:06:01.408 +05:30 [Debug] Connection id ""0HLAD4IC6M066"" sending FIN. +2017-12-27 18:06:01.408 +05:30 [Debug] Connection id ""0HLAD4IC6M067"" disconnecting. +2017-12-27 18:06:01.409 +05:30 [Debug] Connection id ""0HLAD4IC6M063"" disconnecting. +2017-12-27 18:06:01.409 +05:30 [Debug] Connection id ""0HLAD4IC6M068"" disconnecting. +2017-12-27 18:06:01.410 +05:30 [Debug] Connection id ""0HLAD4IC6M068"" sending FIN. +2017-12-27 18:06:01.409 +05:30 [Debug] Connection id ""0HLAD4IC6M066"" sent FIN with status "0". +2017-12-27 18:06:01.410 +05:30 [Debug] Connection id ""0HLAD4IC6M064"" received FIN. +2017-12-27 18:06:01.410 +05:30 [Debug] Connection id ""0HLAD4IC6M066"" stopped. +2017-12-27 18:06:01.412 +05:30 [Debug] Connection id ""0HLAD4IC6M067"" sending FIN. +2017-12-27 18:06:01.411 +05:30 [Debug] Connection id ""0HLAD4IC6M068"" sent FIN with status "0". +2017-12-27 18:06:01.416 +05:30 [Debug] Connection id ""0HLAD4IC6M068"" stopped. +2017-12-27 18:06:01.417 +05:30 [Debug] Connection id ""0HLAD4IC6M065"" received FIN. +2017-12-27 18:06:01.419 +05:30 [Debug] Connection id ""0HLAD4IC6M065"" disconnecting. +2017-12-27 18:06:01.412 +05:30 [Debug] Connection id ""0HLAD4IC6M063"" sending FIN. +2017-12-27 18:06:01.422 +05:30 [Debug] Connection id ""0HLAD4IC6M065"" sending FIN. +2017-12-27 18:06:01.423 +05:30 [Debug] Connection id ""0HLAD4IC6M065"" sent FIN with status "0". +2017-12-27 18:06:01.423 +05:30 [Debug] Connection id ""0HLAD4IC6M063"" sent FIN with status "0". +2017-12-27 18:06:01.424 +05:30 [Debug] Connection id ""0HLAD4IC6M065"" stopped. +2017-12-27 18:06:01.425 +05:30 [Debug] Connection id ""0HLAD4IC6M063"" stopped. +2017-12-27 18:06:01.426 +05:30 [Debug] Connection id ""0HLAD4IC6M067"" sent FIN with status "0". +2017-12-27 18:06:01.426 +05:30 [Debug] Connection id ""0HLAD4IC6M067"" stopped. +2017-12-27 18:06:01.419 +05:30 [Debug] Connection id ""0HLAD4IC6M064"" disconnecting. +2017-12-27 18:06:01.430 +05:30 [Debug] Connection id ""0HLAD4IC6M064"" sending FIN. +2017-12-27 18:06:01.430 +05:30 [Debug] Connection id ""0HLAD4IC6M064"" sent FIN with status "0". +2017-12-27 18:06:01.430 +05:30 [Debug] Connection id ""0HLAD4IC6M064"" stopped. +2017-12-27 18:49:46.174 +05:30 [Debug] Connection id ""0HLAD4IC6M069"" started. +2017-12-27 18:49:46.175 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 201 +2017-12-27 18:49:46.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-27 18:49:46.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-27 18:49:49.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAPxpOOzQc8zaT0mFXzuhPUJPkFyl1VxrHVaQ69ZCRHForhp24ahyI5EpjYqZBrNZAsKVRCm8t9vZBfZA0rLKUU5JvhjUWzxpAVaNNTcZA4EDIwgryEbkYuqiK1ZAgqpWWtSIZBpjfazF8zFU8beKJoDhsbLCkv3zSwZDZD", "Free"]) - ModelState is Valid +2017-12-27 18:49:53.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:49:53.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:49:53.649 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:49:53.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 7474.5264ms +2017-12-27 18:49:53.655 +05:30 [Information] Request finished in 7479.2951ms 200 application/json; charset=utf-8 +2017-12-27 18:49:53.655 +05:30 [Debug] Connection id ""0HLAD4IC6M069"" completed keep alive response. +2017-12-27 18:49:53.707 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-27 18:49:53.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:49:53.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:49:56.767 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-27 18:49:58.302 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:49:58.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:49:58.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:49:58.305 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4595.7585ms +2017-12-27 18:49:58.314 +05:30 [Information] Request finished in 4601.6071ms 200 application/json; charset=utf-8 +2017-12-27 18:49:58.315 +05:30 [Debug] Connection id ""0HLAD4IC6M069"" completed keep alive response. +2017-12-27 18:49:59.468 +05:30 [Debug] Connection id ""0HLAD4IC6M06A"" started. +2017-12-27 18:49:59.469 +05:30 [Debug] Connection id ""0HLAD4IC6M06B"" started. +2017-12-27 18:49:59.469 +05:30 [Debug] Connection id ""0HLAD4IC6M06C"" started. +2017-12-27 18:49:59.470 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:49:59.492 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:49:59.492 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:49:59.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:49:59.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:49:59.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:49:59.498 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:49:59.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:49:59.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:49:59.508 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:49:59.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:49:59.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:49:59.573 +05:30 [Debug] Connection id ""0HLAD4IC6M06D"" started. +2017-12-27 18:49:59.573 +05:30 [Debug] Connection id ""0HLAD4IC6M06E"" started. +2017-12-27 18:50:01.313 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:50:01.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:50:01.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:50:02.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:50:02.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:50:02.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:50:04.441 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:50:05.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:50:05.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:50:05.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:50:05.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:50:05.490 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:50:05.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:50:05.545 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:50:05.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:50:05.546 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:50:05.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3236.3238ms +2017-12-27 18:50:05.559 +05:30 [Information] Request finished in 3248.1091ms 200 application/json; charset=utf-8 +2017-12-27 18:50:05.559 +05:30 [Debug] Connection id ""0HLAD4IC6M06E"" completed keep alive response. +2017-12-27 18:50:05.566 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-27 18:50:05.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-27 18:50:05.567 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-27 18:50:07.317 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:50:07.317 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:50:07.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:50:07.318 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:50:07.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7812.9731ms +2017-12-27 18:50:07.322 +05:30 [Information] Request finished in 7850.2776ms 200 application/json; charset=utf-8 +2017-12-27 18:50:07.322 +05:30 [Debug] Connection id ""0HLAD4IC6M06C"" completed keep alive response. +2017-12-27 18:50:07.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:50:07.417 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:50:07.417 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:50:07.420 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:50:07.422 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7908.1938ms +2017-12-27 18:50:07.430 +05:30 [Information] Request finished in 7959.2333ms 200 application/json; charset=utf-8 +2017-12-27 18:50:07.430 +05:30 [Debug] Connection id ""0HLAD4IC6M06B"" completed keep alive response. +2017-12-27 18:50:07.535 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:50:07.535 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:50:07.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:50:07.537 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:50:07.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8044.9705ms +2017-12-27 18:50:07.587 +05:30 [Information] Request finished in 8118.8128ms 200 application/json; charset=utf-8 +2017-12-27 18:50:07.620 +05:30 [Debug] Connection id ""0HLAD4IC6M069"" completed keep alive response. +2017-12-27 18:50:07.826 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:50:07.826 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:50:07.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:50:07.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:50:07.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6517.4713ms +2017-12-27 18:50:07.840 +05:30 [Information] Request finished in 6529.1325ms 200 application/json; charset=utf-8 +2017-12-27 18:50:07.840 +05:30 [Debug] Connection id ""0HLAD4IC6M06D"" completed keep alive response. +2017-12-27 18:50:07.867 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:50:07.868 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:50:07.868 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:50:07.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:50:07.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8376.3346ms +2017-12-27 18:50:07.968 +05:30 [Information] Request finished in 8431.2757ms 200 application/json; charset=utf-8 +2017-12-27 18:50:07.969 +05:30 [Debug] Connection id ""0HLAD4IC6M06A"" completed keep alive response. +2017-12-27 18:50:08.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:50:10.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:50:10.835 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:50:10.835 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:50:10.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:50:10.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5268.8499ms +2017-12-27 18:50:10.841 +05:30 [Information] Request finished in 5275.7185ms 200 application/json; charset=utf-8 +2017-12-27 18:50:10.841 +05:30 [Debug] Connection id ""0HLAD4IC6M06E"" completed keep alive response. +2017-12-27 18:51:51.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06C"" received FIN. +2017-12-27 18:51:51.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06D"" received FIN. +2017-12-27 18:51:51.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06A"" received FIN. +2017-12-27 18:51:51.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06C"" disconnecting. +2017-12-27 18:51:51.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06D"" disconnecting. +2017-12-27 18:51:51.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06C"" sending FIN. +2017-12-27 18:51:51.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06A"" disconnecting. +2017-12-27 18:51:51.409 +05:30 [Debug] Connection id ""0HLAD4IC6M06D"" sending FIN. +2017-12-27 18:51:51.410 +05:30 [Debug] Connection id ""0HLAD4IC6M06A"" sending FIN. +2017-12-27 18:51:51.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06B"" received FIN. +2017-12-27 18:51:51.412 +05:30 [Debug] Connection id ""0HLAD4IC6M06B"" disconnecting. +2017-12-27 18:51:51.411 +05:30 [Debug] Connection id ""0HLAD4IC6M06A"" sent FIN with status "0". +2017-12-27 18:51:51.412 +05:30 [Debug] Connection id ""0HLAD4IC6M069"" received FIN. +2017-12-27 18:51:51.413 +05:30 [Debug] Connection id ""0HLAD4IC6M06A"" stopped. +2017-12-27 18:51:51.413 +05:30 [Debug] Connection id ""0HLAD4IC6M069"" disconnecting. +2017-12-27 18:51:51.413 +05:30 [Debug] Connection id ""0HLAD4IC6M06D"" sent FIN with status "0". +2017-12-27 18:51:51.413 +05:30 [Debug] Connection id ""0HLAD4IC6M06E"" received FIN. +2017-12-27 18:51:51.414 +05:30 [Debug] Connection id ""0HLAD4IC6M06D"" stopped. +2017-12-27 18:51:51.414 +05:30 [Debug] Connection id ""0HLAD4IC6M06B"" sending FIN. +2017-12-27 18:51:51.415 +05:30 [Debug] Connection id ""0HLAD4IC6M06C"" sent FIN with status "0". +2017-12-27 18:51:51.415 +05:30 [Debug] Connection id ""0HLAD4IC6M069"" sending FIN. +2017-12-27 18:51:51.414 +05:30 [Debug] Connection id ""0HLAD4IC6M06E"" disconnecting. +2017-12-27 18:51:51.416 +05:30 [Debug] Connection id ""0HLAD4IC6M069"" sent FIN with status "0". +2017-12-27 18:51:51.416 +05:30 [Debug] Connection id ""0HLAD4IC6M069"" stopped. +2017-12-27 18:51:51.415 +05:30 [Debug] Connection id ""0HLAD4IC6M06C"" stopped. +2017-12-27 18:51:51.417 +05:30 [Debug] Connection id ""0HLAD4IC6M06B"" sent FIN with status "0". +2017-12-27 18:51:51.417 +05:30 [Debug] Connection id ""0HLAD4IC6M06B"" stopped. +2017-12-27 18:51:51.418 +05:30 [Debug] Connection id ""0HLAD4IC6M06E"" sending FIN. +2017-12-27 18:51:51.418 +05:30 [Debug] Connection id ""0HLAD4IC6M06E"" sent FIN with status "0". +2017-12-27 18:51:51.419 +05:30 [Debug] Connection id ""0HLAD4IC6M06E"" stopped. +2017-12-27 18:53:15.740 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" started. +2017-12-27 18:53:15.740 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" started. +2017-12-27 18:53:15.744 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:53:15.744 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:53:15.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:53:15.755 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:53:15.756 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:53:15.756 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:53:18.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:53:18.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:22.738 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:22.739 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:22.739 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:22.740 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:22.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 6984.2284ms +2017-12-27 18:53:22.746 +05:30 [Information] Request finished in 7001.9266ms 200 application/json; charset=utf-8 +2017-12-27 18:53:22.748 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" completed keep alive response. +2017-12-27 18:53:25.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:25.718 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:25.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:25.719 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:25.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 9974.0728ms +2017-12-27 18:53:25.723 +05:30 [Information] Request finished in 9981.6023ms 200 application/json; charset=utf-8 +2017-12-27 18:53:25.724 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" completed keep alive response. +2017-12-27 18:53:25.734 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:53:25.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:53:25.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:53:28.411 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:53:28.412 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:53:28.412 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:53:28.790 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:29.329 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:53:29.331 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:53:29.333 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3594.7002ms +2017-12-27 18:53:29.336 +05:30 [Information] Request finished in 3601.3085ms 200 +2017-12-27 18:53:29.337 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" completed keep alive response. +2017-12-27 18:53:30.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:53:32.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:32.034 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:32.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:32.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3623.6731ms +2017-12-27 18:53:32.043 +05:30 [Information] Request finished in 3629.9197ms 200 application/json; charset=utf-8 +2017-12-27 18:53:32.043 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" completed keep alive response. +2017-12-27 18:53:35.136 +05:30 [Debug] Connection id ""0HLAD4IC6M06I"" started. +2017-12-27 18:53:35.136 +05:30 [Debug] Connection id ""0HLAD4IC6M06H"" started. +2017-12-27 18:53:35.153 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:53:35.153 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:53:35.154 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:53:35.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:53:35.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:53:35.174 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:53:35.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:53:35.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:53:35.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:53:35.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:53:35.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:53:35.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:53:35.440 +05:30 [Debug] Connection id ""0HLAD4IC6M06J"" started. +2017-12-27 18:53:35.440 +05:30 [Debug] Connection id ""0HLAD4IC6M06K"" started. +2017-12-27 18:53:36.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:53:36.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:53:36.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:53:37.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:53:37.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:53:37.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:53:40.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:40.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:40.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:40.909 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:40.909 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:40.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:41.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:41.440 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:41.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:41.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:41.443 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6267.5511ms +2017-12-27 18:53:41.445 +05:30 [Information] Request finished in 6294.0568ms 200 application/json; charset=utf-8 +2017-12-27 18:53:41.446 +05:30 [Debug] Connection id ""0HLAD4IC6M06H"" completed keep alive response. +2017-12-27 18:53:41.452 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:53:41.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:53:41.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:53:41.475 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:41.476 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:41.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:41.477 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:41.480 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6320.351ms +2017-12-27 18:53:41.481 +05:30 [Information] Request finished in 6348.504ms 200 application/json; charset=utf-8 +2017-12-27 18:53:41.482 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" completed keep alive response. +2017-12-27 18:53:41.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:53:41.489 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:53:41.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:53:41.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:41.548 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:41.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:41.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:41.550 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6349.2772ms +2017-12-27 18:53:41.552 +05:30 [Information] Request finished in 6397.5323ms 200 application/json; charset=utf-8 +2017-12-27 18:53:41.552 +05:30 [Debug] Connection id ""0HLAD4IC6M06I"" completed keep alive response. +2017-12-27 18:53:41.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:41.901 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:41.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:41.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:41.905 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6704.6235ms +2017-12-27 18:53:41.909 +05:30 [Information] Request finished in 6776.4377ms 200 application/json; charset=utf-8 +2017-12-27 18:53:41.910 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" completed keep alive response. +2017-12-27 18:53:41.945 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:41.945 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:41.946 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:41.946 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:41.951 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5196.738ms +2017-12-27 18:53:41.955 +05:30 [Information] Request finished in 5204.2486ms 200 application/json; charset=utf-8 +2017-12-27 18:53:41.956 +05:30 [Debug] Connection id ""0HLAD4IC6M06J"" completed keep alive response. +2017-12-27 18:53:42.000 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:42.001 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:42.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:42.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:42.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4252.531ms +2017-12-27 18:53:42.007 +05:30 [Information] Request finished in 4257.5973ms 200 application/json; charset=utf-8 +2017-12-27 18:53:42.007 +05:30 [Debug] Connection id ""0HLAD4IC6M06K"" completed keep alive response. +2017-12-27 18:53:44.485 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:53:44.527 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:47.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:47.998 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:47.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:47.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:48.001 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 6511.1308ms +2017-12-27 18:53:48.003 +05:30 [Information] Request finished in 6516.4322ms 200 application/json; charset=utf-8 +2017-12-27 18:53:48.003 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" completed keep alive response. +2017-12-27 18:53:52.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:53:52.236 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:53:52.236 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:53:52.237 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:53:52.238 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10784.1507ms +2017-12-27 18:53:52.240 +05:30 [Information] Request finished in 10788.3179ms 200 application/json; charset=utf-8 +2017-12-27 18:53:52.241 +05:30 [Debug] Connection id ""0HLAD4IC6M06H"" completed keep alive response. +2017-12-27 18:53:52.248 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:53:52.248 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:53:52.249 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:53:55.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:53:55.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:53:55.825 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:53:55.826 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3576.7594ms +2017-12-27 18:53:55.829 +05:30 [Information] Request finished in 3582.2521ms 200 +2017-12-27 18:53:55.830 +05:30 [Debug] Connection id ""0HLAD4IC6M06I"" completed keep alive response. +2017-12-27 18:54:25.033 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:54:25.033 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:54:25.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:54:28.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:54:29.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:54:29.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:54:29.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:54:29.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4556.2767ms +2017-12-27 18:54:29.594 +05:30 [Information] Request finished in 4560.8905ms 200 application/json; charset=utf-8 +2017-12-27 18:54:29.594 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" completed keep alive response. +2017-12-27 18:54:33.736 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:54:33.736 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:54:33.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:54:33.833 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:54:33.834 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:54:33.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:54:33.861 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:54:33.861 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:54:33.862 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:54:33.919 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:54:33.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:54:33.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:54:36.164 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:54:36.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:54:36.165 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:54:37.163 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:54:37.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:54:37.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:54:39.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:54:39.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:54:39.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:54:39.911 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:54:39.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:54:40.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:54:41.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:54:41.432 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:54:41.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:54:41.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:54:41.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7578.1434ms +2017-12-27 18:54:41.443 +05:30 [Information] Request finished in 7722.5519ms 200 application/json; charset=utf-8 +2017-12-27 18:54:41.444 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" completed keep alive response. +2017-12-27 18:54:41.456 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:54:41.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:54:41.457 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:54:41.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:54:41.910 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:54:41.910 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:54:41.911 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:54:41.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 7991.019ms +2017-12-27 18:54:41.914 +05:30 [Information] Request finished in 8183.4577ms 200 application/json; charset=utf-8 +2017-12-27 18:54:41.914 +05:30 [Debug] Connection id ""0HLAD4IC6M06K"" completed keep alive response. +2017-12-27 18:54:41.920 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:54:41.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:54:41.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:54:42.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:54:42.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:54:42.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:54:42.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:54:42.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8267.7474ms +2017-12-27 18:54:42.009 +05:30 [Information] Request finished in 8297.6944ms 200 application/json; charset=utf-8 +2017-12-27 18:54:42.009 +05:30 [Debug] Connection id ""0HLAD4IC6M06J"" completed keep alive response. +2017-12-27 18:54:42.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:54:42.411 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:54:42.411 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:54:42.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:54:42.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8616.6182ms +2017-12-27 18:54:42.478 +05:30 [Information] Request finished in 8707.9304ms 200 application/json; charset=utf-8 +2017-12-27 18:54:42.478 +05:30 [Debug] Connection id ""0HLAD4IC6M06H"" completed keep alive response. +2017-12-27 18:54:42.859 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:54:42.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:54:42.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:54:42.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:54:42.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5695.8409ms +2017-12-27 18:54:42.863 +05:30 [Information] Request finished in 5700.1624ms 200 application/json; charset=utf-8 +2017-12-27 18:54:42.864 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" completed keep alive response. +2017-12-27 18:54:44.499 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:54:45.011 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:54:45.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:54:45.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:54:45.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:54:45.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:54:45.519 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4056.73ms +2017-12-27 18:54:45.522 +05:30 [Information] Request finished in 4065.4003ms 200 application/json; charset=utf-8 +2017-12-27 18:54:45.523 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" completed keep alive response. +2017-12-27 18:54:46.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:54:46.103 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:54:46.103 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:54:46.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:54:46.109 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4184.2109ms +2017-12-27 18:54:46.116 +05:30 [Information] Request finished in 4195.5335ms 200 application/json; charset=utf-8 +2017-12-27 18:54:46.117 +05:30 [Debug] Connection id ""0HLAD4IC6M06K"" completed keep alive response. +2017-12-27 18:54:46.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:54:46.721 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:54:46.722 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:54:46.724 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:54:46.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10560.2847ms +2017-12-27 18:54:46.753 +05:30 [Information] Request finished in 10588.9114ms 200 application/json; charset=utf-8 +2017-12-27 18:54:46.753 +05:30 [Debug] Connection id ""0HLAD4IC6M06I"" completed keep alive response. +2017-12-27 18:54:46.806 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:54:46.806 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:54:46.807 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:54:49.891 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:54:50.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:54:50.433 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:54:50.434 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3626.1779ms +2017-12-27 18:54:50.435 +05:30 [Information] Request finished in 3634.4874ms 200 +2017-12-27 18:54:50.436 +05:30 [Debug] Connection id ""0HLAD4IC6M06J"" completed keep alive response. +2017-12-27 18:56:06.097 +05:30 [Debug] Connection id ""0HLAD4IC6M06H"" received FIN. +2017-12-27 18:56:06.097 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" received FIN. +2017-12-27 18:56:06.097 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" received FIN. +2017-12-27 18:56:06.097 +05:30 [Debug] Connection id ""0HLAD4IC6M06I"" received FIN. +2017-12-27 18:56:06.097 +05:30 [Debug] Connection id ""0HLAD4IC6M06K"" received FIN. +2017-12-27 18:56:06.098 +05:30 [Debug] Connection id ""0HLAD4IC6M06J"" received FIN. +2017-12-27 18:56:06.098 +05:30 [Debug] Connection id ""0HLAD4IC6M06H"" disconnecting. +2017-12-27 18:56:06.098 +05:30 [Debug] Connection id ""0HLAD4IC6M06H"" sending FIN. +2017-12-27 18:56:06.098 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" disconnecting. +2017-12-27 18:56:06.098 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" disconnecting. +2017-12-27 18:56:06.099 +05:30 [Debug] Connection id ""0HLAD4IC6M06I"" disconnecting. +2017-12-27 18:56:06.099 +05:30 [Debug] Connection id ""0HLAD4IC6M06K"" disconnecting. +2017-12-27 18:56:06.098 +05:30 [Debug] Connection id ""0HLAD4IC6M06H"" sent FIN with status "0". +2017-12-27 18:56:06.098 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" sending FIN. +2017-12-27 18:56:06.100 +05:30 [Debug] Connection id ""0HLAD4IC6M06I"" sending FIN. +2017-12-27 18:56:06.100 +05:30 [Debug] Connection id ""0HLAD4IC6M06H"" stopped. +2017-12-27 18:56:06.101 +05:30 [Debug] Connection id ""0HLAD4IC6M06I"" sent FIN with status "0". +2017-12-27 18:56:06.101 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" sending FIN. +2017-12-27 18:56:06.101 +05:30 [Debug] Connection id ""0HLAD4IC6M06I"" stopped. +2017-12-27 18:56:06.102 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" sent FIN with status "0". +2017-12-27 18:56:06.102 +05:30 [Debug] Connection id ""0HLAD4IC6M06G"" stopped. +2017-12-27 18:56:06.102 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" started. +2017-12-27 18:56:06.099 +05:30 [Debug] Connection id ""0HLAD4IC6M06J"" disconnecting. +2017-12-27 18:56:06.103 +05:30 [Debug] Connection id ""0HLAD4IC6M06J"" sending FIN. +2017-12-27 18:56:06.104 +05:30 [Debug] Connection id ""0HLAD4IC6M06J"" sent FIN with status "0". +2017-12-27 18:56:06.105 +05:30 [Debug] Connection id ""0HLAD4IC6M06J"" stopped. +2017-12-27 18:56:06.101 +05:30 [Debug] Connection id ""0HLAD4IC6M06K"" sending FIN. +2017-12-27 18:56:06.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:56:06.106 +05:30 [Debug] Connection id ""0HLAD4IC6M06K"" sent FIN with status "0". +2017-12-27 18:56:06.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:56:06.107 +05:30 [Debug] Connection id ""0HLAD4IC6M06K"" stopped. +2017-12-27 18:56:06.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:56:06.107 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" sent FIN with status "0". +2017-12-27 18:56:06.108 +05:30 [Debug] Connection id ""0HLAD4IC6M06F"" stopped. +2017-12-27 18:56:09.151 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:56:10.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:10.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:10.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:10.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4570.7697ms +2017-12-27 18:56:10.685 +05:30 [Information] Request finished in 4580.2364ms 200 application/json; charset=utf-8 +2017-12-27 18:56:10.685 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:56:16.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:56:16.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:56:16.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:56:16.180 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" started. +2017-12-27 18:56:16.183 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" started. +2017-12-27 18:56:16.203 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:56:16.183 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" started. +2017-12-27 18:56:16.206 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:56:16.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:56:16.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:56:16.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:56:16.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:56:16.209 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:56:16.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:56:16.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:56:16.358 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" started. +2017-12-27 18:56:16.358 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" started. +2017-12-27 18:56:17.261 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:56:17.262 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:56:17.263 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:56:18.261 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:56:18.262 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:56:18.263 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:56:21.318 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:21.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:21.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:21.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:21.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:21.469 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:21.941 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:21.942 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:21.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:21.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:21.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5773.9997ms +2017-12-27 18:56:21.976 +05:30 [Information] Request finished in 5797.6286ms 200 application/json; charset=utf-8 +2017-12-27 18:56:21.978 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:56:22.008 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:22.009 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:22.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:22.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:22.014 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5803.5091ms +2017-12-27 18:56:22.015 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:56:22.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:56:22.018 +05:30 [Information] Request finished in 5834.2653ms 200 application/json; charset=utf-8 +2017-12-27 18:56:22.018 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:56:22.028 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" completed keep alive response. +2017-12-27 18:56:22.048 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:56:22.049 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:56:22.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:56:22.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:22.119 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:22.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:22.122 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:22.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5908.7213ms +2017-12-27 18:56:22.126 +05:30 [Information] Request finished in 5921.7923ms 200 application/json; charset=utf-8 +2017-12-27 18:56:22.126 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" completed keep alive response. +2017-12-27 18:56:22.479 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:22.479 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:22.479 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:22.480 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:22.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:22.481 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:22.482 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:22.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6271.4708ms +2017-12-27 18:56:22.485 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:22.487 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4222.454ms +2017-12-27 18:56:22.489 +05:30 [Information] Request finished in 6280.0568ms 200 application/json; charset=utf-8 +2017-12-27 18:56:22.490 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" completed keep alive response. +2017-12-27 18:56:22.491 +05:30 [Information] Request finished in 4230.7632ms 200 application/json; charset=utf-8 +2017-12-27 18:56:22.491 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 18:56:22.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:22.566 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:22.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:22.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:22.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5303.4104ms +2017-12-27 18:56:22.569 +05:30 [Information] Request finished in 5311.1293ms 200 application/json; charset=utf-8 +2017-12-27 18:56:22.570 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:56:25.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:56:25.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:27.859 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:27.860 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:27.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:27.861 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:27.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5812.3184ms +2017-12-27 18:56:27.865 +05:30 [Information] Request finished in 5832.2923ms 200 application/json; charset=utf-8 +2017-12-27 18:56:27.866 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" completed keep alive response. +2017-12-27 18:56:30.566 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:56:30.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:56:30.567 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:56:32.208 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:32.209 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:32.209 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:32.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:32.213 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10192.9798ms +2017-12-27 18:56:32.222 +05:30 [Information] Request finished in 10206.2493ms 200 application/json; charset=utf-8 +2017-12-27 18:56:32.224 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:56:32.233 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:56:32.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:56:32.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:56:33.620 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:56:35.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:35.156 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:35.158 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:35.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4591.4393ms +2017-12-27 18:56:35.168 +05:30 [Information] Request finished in 4601.8571ms 200 application/json; charset=utf-8 +2017-12-27 18:56:35.169 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" completed keep alive response. +2017-12-27 18:56:35.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:35.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:56:35.851 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:56:35.857 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3617.6361ms +2017-12-27 18:56:35.866 +05:30 [Information] Request finished in 3633.4854ms 200 +2017-12-27 18:56:35.868 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" completed keep alive response. +2017-12-27 18:56:36.058 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:56:36.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:56:36.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:56:36.060 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:56:36.062 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:56:36.065 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:56:36.065 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:56:36.066 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:56:36.066 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:56:36.068 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:56:36.069 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:56:36.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:56:36.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:56:36.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:56:36.144 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:56:36.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:56:36.145 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:56:36.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:56:39.176 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:39.232 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:39.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:39.292 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:39.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:39.311 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:39.736 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:39.737 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:39.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:39.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:39.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3678.1125ms +2017-12-27 18:56:39.741 +05:30 [Information] Request finished in 3683.0681ms 200 application/json; charset=utf-8 +2017-12-27 18:56:39.742 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:56:39.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:56:39.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:56:39.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:56:39.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:39.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:39.802 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:39.803 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:39.804 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3733.3836ms +2017-12-27 18:56:39.806 +05:30 [Information] Request finished in 3748.4638ms 200 application/json; charset=utf-8 +2017-12-27 18:56:39.806 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:56:39.810 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:56:39.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:56:39.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:56:39.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:39.977 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:39.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:39.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:39.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3911.6902ms +2017-12-27 18:56:39.982 +05:30 [Information] Request finished in 3922.8233ms 200 application/json; charset=utf-8 +2017-12-27 18:56:39.982 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" completed keep alive response. +2017-12-27 18:56:40.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:40.295 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:40.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:40.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:40.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4229.3886ms +2017-12-27 18:56:40.299 +05:30 [Information] Request finished in 4240.6281ms 200 application/json; charset=utf-8 +2017-12-27 18:56:40.300 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 18:56:40.308 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:40.308 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:40.309 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:40.310 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:40.315 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4165.6052ms +2017-12-27 18:56:40.328 +05:30 [Information] Request finished in 4184.9353ms 200 application/json; charset=utf-8 +2017-12-27 18:56:40.329 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" completed keep alive response. +2017-12-27 18:56:40.486 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:40.487 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:40.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:40.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:40.489 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4339.0581ms +2017-12-27 18:56:40.492 +05:30 [Information] Request finished in 4348.4353ms 200 application/json; charset=utf-8 +2017-12-27 18:56:40.492 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" completed keep alive response. +2017-12-27 18:56:41.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:44.518 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:56:45.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:45.676 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:45.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:45.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:45.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5866.6207ms +2017-12-27 18:56:45.692 +05:30 [Information] Request finished in 5873.8616ms 200 application/json; charset=utf-8 +2017-12-27 18:56:45.692 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:56:50.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:56:50.139 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:56:50.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:56:50.140 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:56:50.144 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10361.4958ms +2017-12-27 18:56:50.147 +05:30 [Information] Request finished in 10368.3398ms 200 application/json; charset=utf-8 +2017-12-27 18:56:50.148 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:56:50.224 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:56:50.226 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:56:50.227 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:56:53.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:56:53.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:56:53.798 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:56:53.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3571.3149ms +2017-12-27 18:56:53.800 +05:30 [Information] Request finished in 3594.345ms 200 +2017-12-27 18:56:53.801 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" completed keep alive response. +2017-12-27 18:57:02.058 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:57:02.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:57:02.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:57:05.110 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:57:06.622 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:06.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:06.623 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:06.625 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4563.0831ms +2017-12-27 18:57:06.628 +05:30 [Information] Request finished in 4568.8355ms 200 application/json; charset=utf-8 +2017-12-27 18:57:06.629 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 18:57:10.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:57:10.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:57:10.778 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:57:10.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:57:10.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:57:10.837 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:57:10.838 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:57:10.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:57:10.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:57:11.027 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:57:11.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:57:11.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:57:11.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:57:11.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:57:11.103 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:57:12.672 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:57:12.672 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:57:12.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:57:15.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:15.793 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:15.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:15.831 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:15.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:15.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:16.362 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:16.362 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:16.363 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:16.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:16.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5335.3139ms +2017-12-27 18:57:16.369 +05:30 [Information] Request finished in 5595.7281ms 200 application/json; charset=utf-8 +2017-12-27 18:57:16.369 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:57:16.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:57:16.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:57:16.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:57:16.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:16.411 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:16.411 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:16.437 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:16.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5599.5622ms +2017-12-27 18:57:16.452 +05:30 [Information] Request finished in 5684.4027ms 200 application/json; charset=utf-8 +2017-12-27 18:57:16.452 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:57:16.459 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:57:16.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:57:16.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:57:16.555 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:16.556 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:16.556 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:16.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:16.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5454.797ms +2017-12-27 18:57:16.569 +05:30 [Information] Request finished in 5805.1419ms 200 application/json; charset=utf-8 +2017-12-27 18:57:16.570 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" completed keep alive response. +2017-12-27 18:57:16.833 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:16.833 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:16.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:16.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:16.837 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5995.2359ms +2017-12-27 18:57:16.839 +05:30 [Information] Request finished in 6011.8173ms 200 application/json; charset=utf-8 +2017-12-27 18:57:16.840 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" completed keep alive response. +2017-12-27 18:57:16.941 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:16.941 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:16.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:16.948 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:16.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:16.948 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:16.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:16.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6169.5167ms +2017-12-27 18:57:16.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:16.961 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4286.0636ms +2017-12-27 18:57:16.963 +05:30 [Information] Request finished in 6269.1855ms 200 application/json; charset=utf-8 +2017-12-27 18:57:16.964 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" completed keep alive response. +2017-12-27 18:57:16.969 +05:30 [Information] Request finished in 4295.7863ms 200 application/json; charset=utf-8 +2017-12-27 18:57:16.969 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 18:57:19.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:57:19.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:22.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:22.401 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:22.401 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:22.402 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:22.403 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5940.8646ms +2017-12-27 18:57:22.406 +05:30 [Information] Request finished in 5948.2439ms 200 application/json; charset=utf-8 +2017-12-27 18:57:22.406 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:57:26.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:26.612 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:26.612 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:26.613 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:26.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10205.5878ms +2017-12-27 18:57:26.619 +05:30 [Information] Request finished in 10212.1102ms 200 application/json; charset=utf-8 +2017-12-27 18:57:26.620 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:57:26.642 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:57:26.642 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:57:26.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:57:28.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:29.306 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:57:29.307 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:57:29.308 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 2664.0273ms +2017-12-27 18:57:29.310 +05:30 [Information] Request finished in 2670.5731ms 200 +2017-12-27 18:57:29.310 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" completed keep alive response. +2017-12-27 18:57:40.748 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:57:40.748 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:57:40.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:57:42.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:57:44.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:44.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:44.380 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:44.386 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3632.2665ms +2017-12-27 18:57:44.390 +05:30 [Information] Request finished in 3641.918ms 200 application/json; charset=utf-8 +2017-12-27 18:57:44.392 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" completed keep alive response. +2017-12-27 18:57:45.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:57:45.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:57:45.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:57:45.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:57:45.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:57:45.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:57:45.182 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:57:45.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:57:45.183 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:57:45.186 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:57:45.187 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:57:45.187 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:57:45.301 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:57:45.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:57:45.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:57:45.305 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:57:45.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:57:45.306 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:57:48.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:48.571 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:48.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:48.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:48.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:48.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:49.121 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:49.122 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:49.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:49.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:49.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:49.123 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:49.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:49.125 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3947.7724ms +2017-12-27 18:57:49.126 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:49.127 +05:30 [Information] Request finished in 3953.6616ms 200 application/json; charset=utf-8 +2017-12-27 18:57:49.128 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" completed keep alive response. +2017-12-27 18:57:49.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3948.4899ms +2017-12-27 18:57:49.131 +05:30 [Information] Request finished in 3957.4254ms 200 application/json; charset=utf-8 +2017-12-27 18:57:49.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:57:49.133 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:57:49.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:57:49.140 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:57:49.146 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:57:49.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:57:49.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:57:49.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:49.388 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:49.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:49.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:49.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4202.9495ms +2017-12-27 18:57:49.393 +05:30 [Information] Request finished in 4219.7641ms 200 application/json; charset=utf-8 +2017-12-27 18:57:49.394 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:57:49.541 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:49.542 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:49.542 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:49.544 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:49.546 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4361.6538ms +2017-12-27 18:57:49.549 +05:30 [Information] Request finished in 4375.5997ms 200 application/json; charset=utf-8 +2017-12-27 18:57:49.550 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 18:57:49.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:49.682 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:49.683 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:49.684 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:49.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4378.8454ms +2017-12-27 18:57:49.690 +05:30 [Information] Request finished in 4390.8061ms 200 application/json; charset=utf-8 +2017-12-27 18:57:49.691 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" completed keep alive response. +2017-12-27 18:57:49.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:49.887 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:49.887 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:49.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:49.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4585.7018ms +2017-12-27 18:57:49.890 +05:30 [Information] Request finished in 4593.4104ms 200 application/json; charset=utf-8 +2017-12-27 18:57:49.891 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" completed keep alive response. +2017-12-27 18:57:52.180 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:57:52.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:57:54.960 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:54.960 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:54.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:54.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:54.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5816.0104ms +2017-12-27 18:57:54.969 +05:30 [Information] Request finished in 5823.2326ms 200 application/json; charset=utf-8 +2017-12-27 18:57:54.969 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:57:59.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:57:59.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:57:59.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:57:59.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:57:59.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10297.1821ms +2017-12-27 18:57:59.443 +05:30 [Information] Request finished in 10310.5418ms 200 application/json; charset=utf-8 +2017-12-27 18:57:59.448 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" completed keep alive response. +2017-12-27 18:57:59.500 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:57:59.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:57:59.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:58:01.589 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:58:02.135 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:58:02.136 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:58:02.137 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 2636.6135ms +2017-12-27 18:58:02.139 +05:30 [Information] Request finished in 2670.0151ms 200 +2017-12-27 18:58:02.140 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:58:26.933 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:58:26.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:58:26.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:58:29.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:58:31.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:58:31.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:58:31.505 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:58:31.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4573.4624ms +2017-12-27 18:58:31.512 +05:30 [Information] Request finished in 4579.4872ms 200 application/json; charset=utf-8 +2017-12-27 18:58:31.513 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 18:58:35.626 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:58:35.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:58:35.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:58:35.668 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:58:35.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:58:35.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:58:35.897 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:58:35.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:58:35.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:58:35.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:58:35.904 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:58:35.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:58:36.515 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:58:36.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:58:36.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:58:37.101 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:58:37.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:58:37.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:58:39.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:58:39.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:58:39.801 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:58:39.802 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:58:39.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:58:39.804 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 2700.1033ms +2017-12-27 18:58:39.807 +05:30 [Information] Request finished in 2705.0486ms 200 application/json; charset=utf-8 +2017-12-27 18:58:39.808 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 18:58:39.812 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:58:39.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:58:39.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:58:40.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:58:40.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:58:40.276 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:58:40.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:58:40.281 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:58:40.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:58:40.789 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:58:40.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:58:40.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:58:40.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 4276.2821ms +2017-12-27 18:58:40.798 +05:30 [Information] Request finished in 4321.9315ms 200 application/json; charset=utf-8 +2017-12-27 18:58:40.799 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:58:40.806 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:58:40.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:58:40.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:58:41.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:58:41.299 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:58:41.299 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:58:41.301 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:58:41.302 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5381.7066ms +2017-12-27 18:58:41.306 +05:30 [Information] Request finished in 5408.0972ms 200 application/json; charset=utf-8 +2017-12-27 18:58:41.307 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:58:41.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:58:41.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:58:41.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:58:41.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:58:41.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5473.5019ms +2017-12-27 18:58:41.381 +05:30 [Information] Request finished in 5521.6033ms 200 application/json; charset=utf-8 +2017-12-27 18:58:41.381 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" completed keep alive response. +2017-12-27 18:58:41.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:58:41.493 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:58:41.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:58:41.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:58:41.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5864.9298ms +2017-12-27 18:58:41.498 +05:30 [Information] Request finished in 5876.3139ms 200 application/json; charset=utf-8 +2017-12-27 18:58:41.499 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" completed keep alive response. +2017-12-27 18:58:41.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:58:42.929 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:58:42.930 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:58:42.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:58:42.931 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:58:42.932 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3118.4141ms +2017-12-27 18:58:42.934 +05:30 [Information] Request finished in 3123.2017ms 200 application/json; charset=utf-8 +2017-12-27 18:58:42.934 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 18:58:43.853 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:58:44.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:58:44.481 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:58:44.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:58:44.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:58:44.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3673.6704ms +2017-12-27 18:58:44.484 +05:30 [Information] Request finished in 3679.1656ms 200 application/json; charset=utf-8 +2017-12-27 18:58:44.484 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:58:45.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:58:45.790 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:58:45.791 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:58:45.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:58:45.795 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10123.663ms +2017-12-27 18:58:45.799 +05:30 [Information] Request finished in 10177.3215ms 200 application/json; charset=utf-8 +2017-12-27 18:58:45.800 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" completed keep alive response. +2017-12-27 18:58:45.855 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:58:45.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:58:45.856 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:58:47.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:58:48.494 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:58:48.495 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:58:48.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 2638.9025ms +2017-12-27 18:58:48.509 +05:30 [Information] Request finished in 2663.7238ms 200 +2017-12-27 18:58:48.510 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:59:28.727 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 18:59:28.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 18:59:28.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 18:59:31.792 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 18:59:33.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:59:33.313 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:59:33.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:59:33.317 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4587.4534ms +2017-12-27 18:59:33.321 +05:30 [Information] Request finished in 4593.7808ms 200 application/json; charset=utf-8 +2017-12-27 18:59:33.321 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" completed keep alive response. +2017-12-27 18:59:36.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 18:59:36.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 18:59:36.701 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 18:59:36.712 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 18:59:36.712 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 18:59:36.713 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 18:59:36.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 18:59:36.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 18:59:36.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 18:59:36.790 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 18:59:36.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 18:59:36.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 18:59:38.123 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 18:59:38.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 18:59:38.125 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 18:59:39.122 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 18:59:39.123 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 18:59:39.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 18:59:42.245 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:59:42.294 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:59:42.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:59:42.301 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:59:42.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:59:42.321 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:59:42.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:59:42.798 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:59:42.798 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:59:42.799 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:59:42.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6097.5454ms +2017-12-27 18:59:42.804 +05:30 [Information] Request finished in 6134.5087ms 200 application/json; charset=utf-8 +2017-12-27 18:59:42.805 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" completed keep alive response. +2017-12-27 18:59:42.809 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 18:59:42.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 18:59:42.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 18:59:42.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:59:42.889 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:59:42.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:59:42.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:59:42.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6140.908ms +2017-12-27 18:59:42.897 +05:30 [Information] Request finished in 6207.7857ms 200 application/json; charset=utf-8 +2017-12-27 18:59:42.898 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:59:42.908 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 18:59:42.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 18:59:42.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 18:59:42.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:59:42.956 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:59:42.956 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:59:42.957 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:59:42.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6167.1472ms +2017-12-27 18:59:42.960 +05:30 [Information] Request finished in 6273.7539ms 200 application/json; charset=utf-8 +2017-12-27 18:59:42.960 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 18:59:43.302 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:59:43.302 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:59:43.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:59:43.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:59:43.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5178.9123ms +2017-12-27 18:59:43.306 +05:30 [Information] Request finished in 5184.2106ms 200 application/json; charset=utf-8 +2017-12-27 18:59:43.307 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" completed keep alive response. +2017-12-27 18:59:43.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:59:43.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:59:43.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:59:43.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:59:43.362 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6648.5201ms +2017-12-27 18:59:43.365 +05:30 [Information] Request finished in 6676.3221ms 200 application/json; charset=utf-8 +2017-12-27 18:59:43.365 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" completed keep alive response. +2017-12-27 18:59:43.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:59:43.374 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:59:43.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:59:43.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:59:43.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4251.0665ms +2017-12-27 18:59:43.380 +05:30 [Information] Request finished in 4256.7554ms 200 application/json; charset=utf-8 +2017-12-27 18:59:43.380 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" completed keep alive response. +2017-12-27 18:59:45.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 18:59:45.947 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:59:47.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:59:47.147 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:59:47.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:59:47.149 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:59:47.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 4240.4502ms +2017-12-27 18:59:47.154 +05:30 [Information] Request finished in 4247.9925ms 200 application/json; charset=utf-8 +2017-12-27 18:59:47.154 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" completed keep alive response. +2017-12-27 18:59:51.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 18:59:51.453 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 18:59:51.453 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 18:59:51.454 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 18:59:51.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 8644.2223ms +2017-12-27 18:59:51.459 +05:30 [Information] Request finished in 8649.4056ms 200 application/json; charset=utf-8 +2017-12-27 18:59:51.459 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" completed keep alive response. +2017-12-27 18:59:51.470 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 18:59:51.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 18:59:51.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 18:59:54.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 18:59:55.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 18:59:55.036 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 18:59:55.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3565.1871ms +2017-12-27 18:59:55.040 +05:30 [Information] Request finished in 3570.9435ms 200 +2017-12-27 18:59:55.040 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" completed keep alive response. +2017-12-27 19:01:01.406 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" received FIN. +2017-12-27 19:01:01.406 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" received FIN. +2017-12-27 19:01:01.406 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" received FIN. +2017-12-27 19:01:01.406 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" received FIN. +2017-12-27 19:01:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" received FIN. +2017-12-27 19:01:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" received FIN. +2017-12-27 19:01:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" disconnecting. +2017-12-27 19:01:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" disconnecting. +2017-12-27 19:01:01.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" sending FIN. +2017-12-27 19:01:01.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" disconnecting. +2017-12-27 19:01:01.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" sent FIN with status "0". +2017-12-27 19:01:01.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" disconnecting. +2017-12-27 19:01:01.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06P"" stopped. +2017-12-27 19:01:01.408 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" sending FIN. +2017-12-27 19:01:01.409 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" sent FIN with status "0". +2017-12-27 19:01:01.409 +05:30 [Debug] Connection id ""0HLAD4IC6M06N"" stopped. +2017-12-27 19:01:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" disconnecting. +2017-12-27 19:01:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" disconnecting. +2017-12-27 19:01:01.410 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" sending FIN. +2017-12-27 19:01:01.407 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" sending FIN. +2017-12-27 19:01:01.410 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" sent FIN with status "0". +2017-12-27 19:01:01.410 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" sending FIN. +2017-12-27 19:01:01.411 +05:30 [Debug] Connection id ""0HLAD4IC6M06M"" stopped. +2017-12-27 19:01:01.411 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" sending FIN. +2017-12-27 19:01:01.411 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" sent FIN with status "0". +2017-12-27 19:01:01.411 +05:30 [Debug] Connection id ""0HLAD4IC6M06O"" stopped. +2017-12-27 19:01:01.412 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" sent FIN with status "0". +2017-12-27 19:01:01.412 +05:30 [Debug] Connection id ""0HLAD4IC6M06Q"" stopped. +2017-12-27 19:01:01.412 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" sent FIN with status "0". +2017-12-27 19:01:01.412 +05:30 [Debug] Connection id ""0HLAD4IC6M06L"" stopped. +2017-12-27 19:04:58.472 +05:30 [Debug] Connection id ""0HLAD4IC6M06R"" started. +2017-12-27 19:04:58.473 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 19:04:58.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 19:04:58.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 19:05:01.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 19:05:04.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:05:04.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:04.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:04.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5953.7232ms +2017-12-27 19:05:04.433 +05:30 [Information] Request finished in 5959.1049ms 200 application/json; charset=utf-8 +2017-12-27 19:05:04.433 +05:30 [Debug] Connection id ""0HLAD4IC6M06R"" completed keep alive response. +2017-12-27 19:05:08.501 +05:30 [Debug] Connection id ""0HLAD4IC6M06S"" started. +2017-12-27 19:05:08.504 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 19:05:08.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 19:05:08.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 19:05:08.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 19:05:08.547 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 19:05:08.548 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 19:05:08.772 +05:30 [Debug] Connection id ""0HLAD4IC6M06T"" started. +2017-12-27 19:05:08.819 +05:30 [Debug] Connection id ""0HLAD4IC6M06U"" started. +2017-12-27 19:05:08.889 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 19:05:08.890 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 19:05:08.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 19:05:08.956 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 19:05:08.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 19:05:08.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 19:05:09.512 +05:30 [Debug] Connection id ""0HLAD4IC6M06V"" started. +2017-12-27 19:05:09.522 +05:30 [Debug] Connection id ""0HLAD4IC6M070"" started. +2017-12-27 19:05:10.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 19:05:10.468 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 19:05:10.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 19:05:11.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 19:05:11.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 19:05:11.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 19:05:14.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 19:05:14.644 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:05:14.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:05:14.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:05:14.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:05:14.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:05:16.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:05:16.617 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:05:16.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:16.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:16.620 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5151.2596ms +2017-12-27 19:05:16.625 +05:30 [Information] Request finished in 5156.7194ms 200 application/json; charset=utf-8 +2017-12-27 19:05:16.625 +05:30 [Debug] Connection id ""0HLAD4IC6M070"" completed keep alive response. +2017-12-27 19:05:16.635 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 19:05:16.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 19:05:16.638 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 19:05:16.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:05:16.721 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:05:16.721 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:16.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:16.724 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6254.742ms +2017-12-27 19:05:16.727 +05:30 [Information] Request finished in 6259.9716ms 200 application/json; charset=utf-8 +2017-12-27 19:05:16.727 +05:30 [Debug] Connection id ""0HLAD4IC6M06V"" completed keep alive response. +2017-12-27 19:05:16.740 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 19:05:16.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 19:05:16.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 19:05:17.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:05:17.130 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:05:17.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:17.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:17.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 8212.8088ms +2017-12-27 19:05:17.136 +05:30 [Information] Request finished in 8316.459ms 200 application/json; charset=utf-8 +2017-12-27 19:05:17.136 +05:30 [Debug] Connection id ""0HLAD4IC6M06U"" completed keep alive response. +2017-12-27 19:05:17.286 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:05:17.286 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:05:17.286 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:17.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:17.288 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 8329.2343ms +2017-12-27 19:05:17.290 +05:30 [Information] Request finished in 8399.5063ms 200 application/json; charset=utf-8 +2017-12-27 19:05:17.290 +05:30 [Debug] Connection id ""0HLAD4IC6M06T"" completed keep alive response. +2017-12-27 19:05:17.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:05:17.383 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:05:17.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:17.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:17.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 8860.2591ms +2017-12-27 19:05:17.392 +05:30 [Information] Request finished in 8890.202ms 200 application/json; charset=utf-8 +2017-12-27 19:05:17.392 +05:30 [Debug] Connection id ""0HLAD4IC6M06R"" completed keep alive response. +2017-12-27 19:05:19.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:05:19.784 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:05:20.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:05:20.217 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:05:20.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:20.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:20.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 11670.7889ms +2017-12-27 19:05:20.224 +05:30 [Information] Request finished in 11718.7265ms 200 application/json; charset=utf-8 +2017-12-27 19:05:20.224 +05:30 [Debug] Connection id ""0HLAD4IC6M06S"" completed keep alive response. +2017-12-27 19:05:20.231 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 19:05:20.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 19:05:20.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 19:05:20.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:05:20.451 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:05:20.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:20.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:20.453 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3710.9761ms +2017-12-27 19:05:20.457 +05:30 [Information] Request finished in 3717.8696ms 200 application/json; charset=utf-8 +2017-12-27 19:05:20.458 +05:30 [Debug] Connection id ""0HLAD4IC6M06V"" completed keep alive response. +2017-12-27 19:05:20.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:05:20.714 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:05:20.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:20.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:20.724 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4078.8461ms +2017-12-27 19:05:20.728 +05:30 [Information] Request finished in 4093.8133ms 200 application/json; charset=utf-8 +2017-12-27 19:05:20.728 +05:30 [Debug] Connection id ""0HLAD4IC6M070"" completed keep alive response. +2017-12-27 19:05:23.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:05:23.798 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 19:05:23.799 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 19:05:23.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3566.5378ms +2017-12-27 19:05:23.803 +05:30 [Information] Request finished in 3573.2161ms 200 +2017-12-27 19:05:23.804 +05:30 [Debug] Connection id ""0HLAD4IC6M06U"" completed keep alive response. +2017-12-27 19:05:49.228 +05:30 [Debug] Hosting starting +2017-12-27 19:05:49.621 +05:30 [Debug] Hosting started +2017-12-27 19:05:49.848 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" started. +2017-12-27 19:05:49.848 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" started. +2017-12-27 19:05:50.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-27 19:05:50.136 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-27 19:05:50.235 +05:30 [Information] Request finished in 228.7812ms 200 +2017-12-27 19:05:50.311 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" completed keep alive response. +2017-12-27 19:05:51.823 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-27 19:05:51.926 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"e11afda6-7ad5-4936-a1bf-74582a69b8d0"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-27 19:05:52.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-27 19:05:52.199 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-27 19:05:52.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-27 19:05:52.260 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:05:52.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:05:52.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:05:52.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 820.3797ms +2017-12-27 19:05:53.040 +05:30 [Information] Request finished in 3029.4328ms 200 application/json; charset=utf-8 +2017-12-27 19:05:53.043 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" completed keep alive response. +2017-12-27 19:05:53.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-27 19:05:53.123 +05:30 [Debug] Request did not match any routes. +2017-12-27 19:05:53.140 +05:30 [Debug] The request path "" does not match the path filter +2017-12-27 19:05:53.143 +05:30 [Information] Request finished in 25.0296ms 404 +2017-12-27 19:05:53.143 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" completed keep alive response. +2017-12-27 19:06:08.410 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 198 +2017-12-27 19:06:08.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-27 19:06:08.417 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-27 19:06:12.183 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAPaXZCGyqWEpVSpEnCh1thp4ffONPYlQyXRsulBdmheLvzZCS8MThZCrgV2nzCOkUSrsAO7gpHBn4fs6ObtWOwFSuXKbID8G8Y600Sd7UXgf3qGOCBHWZC50EmR8nXYdv75TzTsrGqG4aUafUT9AYJZB0xatvTQZDZD", "Free"]) - ModelState is Valid +2017-12-27 19:06:24.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:06:24.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:06:24.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:06:24.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 15901.0919ms +2017-12-27 19:06:24.325 +05:30 [Information] Request finished in 15919.7736ms 200 application/json; charset=utf-8 +2017-12-27 19:06:24.326 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" completed keep alive response. +2017-12-27 19:06:24.696 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-27 19:06:24.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 19:06:24.698 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 19:06:27.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-27 19:06:29.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:06:29.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:06:29.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:06:29.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4782.5581ms +2017-12-27 19:06:29.482 +05:30 [Information] Request finished in 4787.4462ms 200 application/json; charset=utf-8 +2017-12-27 19:06:29.483 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" completed keep alive response. +2017-12-27 19:06:31.021 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" started. +2017-12-27 19:06:31.022 +05:30 [Debug] Connection id ""0HLAD5QV3Q50B"" started. +2017-12-27 19:06:31.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 19:06:31.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 19:06:31.028 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 19:06:31.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 19:06:31.031 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 19:06:31.031 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 19:06:31.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 19:06:31.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 19:06:31.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 19:06:31.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 19:06:31.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 19:06:31.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 19:06:31.161 +05:30 [Debug] Connection id ""0HLAD5QV3Q50C"" started. +2017-12-27 19:06:31.161 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" started. +2017-12-27 19:06:31.162 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 19:06:31.163 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 19:06:31.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 19:06:31.820 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 19:06:31.821 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 19:06:31.822 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 19:06:34.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:06:34.980 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:06:35.016 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:06:35.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:06:35.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:06:35.040 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:06:36.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:06:36.015 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:06:36.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:06:36.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:06:36.022 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4976.7537ms +2017-12-27 19:06:36.025 +05:30 [Information] Request finished in 4997.8027ms 200 application/json; charset=utf-8 +2017-12-27 19:06:36.025 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" completed keep alive response. +2017-12-27 19:06:36.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-27 19:06:36.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-27 19:06:36.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-27 19:06:36.946 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:06:36.947 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:06:36.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:06:36.949 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:06:36.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5912.1806ms +2017-12-27 19:06:36.960 +05:30 [Information] Request finished in 5939.4728ms 200 application/json; charset=utf-8 +2017-12-27 19:06:36.961 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" completed keep alive response. +2017-12-27 19:06:37.016 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:06:37.016 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:06:37.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:06:37.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:06:37.021 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5981.7652ms +2017-12-27 19:06:37.024 +05:30 [Information] Request finished in 6004.4044ms 200 application/json; charset=utf-8 +2017-12-27 19:06:37.024 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" completed keep alive response. +2017-12-27 19:06:37.073 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:06:37.074 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:06:37.074 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:06:37.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:06:37.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6041.6237ms +2017-12-27 19:06:37.090 +05:30 [Information] Request finished in 6062.4264ms 200 application/json; charset=utf-8 +2017-12-27 19:06:37.090 +05:30 [Debug] Connection id ""0HLAD5QV3Q50B"" completed keep alive response. +2017-12-27 19:06:37.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:06:37.437 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:06:37.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:06:37.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:06:37.439 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5616.4331ms +2017-12-27 19:06:37.441 +05:30 [Information] Request finished in 5621.0513ms 200 application/json; charset=utf-8 +2017-12-27 19:06:37.441 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" completed keep alive response. +2017-12-27 19:06:37.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:06:37.581 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:06:37.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:06:37.582 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:06:37.583 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6417.8949ms +2017-12-27 19:06:37.585 +05:30 [Information] Request finished in 6422.2036ms 200 application/json; charset=utf-8 +2017-12-27 19:06:37.585 +05:30 [Debug] Connection id ""0HLAD5QV3Q50C"" completed keep alive response. +2017-12-27 19:06:39.128 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:06:41.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:06:41.440 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:06:41.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:06:41.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:06:41.550 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5517.6927ms +2017-12-27 19:06:41.552 +05:30 [Information] Request finished in 5523.8706ms 200 application/json; charset=utf-8 +2017-12-27 19:06:41.552 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" completed keep alive response. +2017-12-27 19:07:24.640 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 19:07:24.645 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 19:07:24.644 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 19:07:24.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 19:07:24.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 19:07:24.650 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 19:07:27.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 19:07:31.825 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 19:07:31.825 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 19:07:31.826 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 19:07:31.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:07:36.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:36.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:36.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:36.071 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:36.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 11433.2379ms +2017-12-27 19:07:36.092 +05:30 [Information] Request finished in 11462.96ms 200 application/json; charset=utf-8 +2017-12-27 19:07:36.092 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" completed keep alive response. +2017-12-27 19:07:36.103 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 19:07:36.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 19:07:36.105 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 19:07:36.733 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 19:07:38.240 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:07:38.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:38.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:38.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:38.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6427.9881ms +2017-12-27 19:07:38.261 +05:30 [Information] Request finished in 6438.892ms 200 application/json; charset=utf-8 +2017-12-27 19:07:38.262 +05:30 [Debug] Connection id ""0HLAD5QV3Q50B"" completed keep alive response. +2017-12-27 19:07:38.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 19:07:38.780 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 19:07:38.785 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 2675.3729ms +2017-12-27 19:07:38.798 +05:30 [Information] Request finished in 2692.7937ms 200 +2017-12-27 19:07:38.799 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" completed keep alive response. +2017-12-27 19:07:39.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:39.614 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:39.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:39.617 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:39.645 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 14989.7031ms +2017-12-27 19:07:39.691 +05:30 [Information] Request finished in 15019.4317ms 200 application/json; charset=utf-8 +2017-12-27 19:07:39.691 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" completed keep alive response. +2017-12-27 19:07:40.097 +05:30 [Debug] Connection id ""0HLAD5QV3Q50C"" received FIN. +2017-12-27 19:07:40.098 +05:30 [Debug] Connection id ""0HLAD5QV3Q50C"" disconnecting. +2017-12-27 19:07:40.100 +05:30 [Debug] Connection id ""0HLAD5QV3Q50C"" sending FIN. +2017-12-27 19:07:40.109 +05:30 [Debug] Connection id ""0HLAD5QV3Q50C"" sent FIN with status "0". +2017-12-27 19:07:40.112 +05:30 [Debug] Connection id ""0HLAD5QV3Q50C"" stopped. +2017-12-27 19:07:41.360 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 19:07:41.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 19:07:41.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 19:07:41.371 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 19:07:41.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 19:07:41.383 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 19:07:41.381 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 19:07:41.385 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 19:07:41.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 19:07:41.388 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 19:07:41.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 19:07:41.392 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 19:07:41.757 +05:30 [Debug] Connection id ""0HLAD5QV3Q50E"" started. +2017-12-27 19:07:43.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 19:07:43.199 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 19:07:43.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 19:07:44.200 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 19:07:44.200 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 19:07:44.200 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 19:07:47.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:07:47.430 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:07:47.432 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:07:47.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:07:47.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:07:47.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:07:47.954 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:47.955 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:47.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:47.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:47.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 6574.2107ms +2017-12-27 19:07:47.965 +05:30 [Information] Request finished in 6612.6836ms 200 application/json; charset=utf-8 +2017-12-27 19:07:47.966 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" completed keep alive response. +2017-12-27 19:07:47.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:47.973 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:47.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:47.974 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 19:07:47.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:47.976 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 19:07:47.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 19:07:47.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6615.9899ms +2017-12-27 19:07:47.984 +05:30 [Information] Request finished in 6638.2653ms 200 application/json; charset=utf-8 +2017-12-27 19:07:47.984 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" completed keep alive response. +2017-12-27 19:07:47.995 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 19:07:47.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 19:07:47.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 19:07:48.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:48.079 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:48.079 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:48.080 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:48.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6696.314ms +2017-12-27 19:07:48.083 +05:30 [Information] Request finished in 6730.4437ms 200 application/json; charset=utf-8 +2017-12-27 19:07:48.084 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" completed keep alive response. +2017-12-27 19:07:48.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:48.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:48.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:48.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:48.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 5239.9999ms +2017-12-27 19:07:48.443 +05:30 [Information] Request finished in 5244.3702ms 200 application/json; charset=utf-8 +2017-12-27 19:07:48.443 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" completed keep alive response. +2017-12-27 19:07:48.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:48.470 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:48.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:48.471 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:48.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7078.7845ms +2017-12-27 19:07:48.478 +05:30 [Information] Request finished in 7102.9231ms 200 application/json; charset=utf-8 +2017-12-27 19:07:48.478 +05:30 [Debug] Connection id ""0HLAD5QV3Q50B"" completed keep alive response. +2017-12-27 19:07:48.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:48.527 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:48.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:48.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:48.531 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4328.3386ms +2017-12-27 19:07:48.532 +05:30 [Information] Request finished in 4332.7546ms 200 application/json; charset=utf-8 +2017-12-27 19:07:48.533 +05:30 [Debug] Connection id ""0HLAD5QV3Q50E"" completed keep alive response. +2017-12-27 19:07:50.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:07:51.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 19:07:53.059 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:53.059 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:53.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:53.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:53.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5064.9052ms +2017-12-27 19:07:53.065 +05:30 [Information] Request finished in 5070.2924ms 200 application/json; charset=utf-8 +2017-12-27 19:07:53.065 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" completed keep alive response. +2017-12-27 19:07:57.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:07:57.470 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:07:57.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:07:57.471 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:07:57.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 9495.5163ms +2017-12-27 19:07:57.475 +05:30 [Information] Request finished in 9505.0782ms 200 application/json; charset=utf-8 +2017-12-27 19:07:57.476 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" completed keep alive response. +2017-12-27 19:07:57.481 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 19:07:57.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 19:07:57.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 19:07:59.585 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:08:00.116 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 19:08:00.117 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 19:08:00.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 2634.3064ms +2017-12-27 19:08:00.125 +05:30 [Information] Request finished in 2642.8666ms 200 +2017-12-27 19:08:00.126 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" completed keep alive response. +2017-12-27 19:09:25.197 +05:30 [Debug] Connection id ""0HLAD5QV3Q50E"" received FIN. +2017-12-27 19:09:25.197 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" received FIN. +2017-12-27 19:09:25.197 +05:30 [Debug] Connection id ""0HLAD5QV3Q50B"" received FIN. +2017-12-27 19:09:25.197 +05:30 [Debug] Connection id ""0HLAD5QV3Q50E"" disconnecting. +2017-12-27 19:09:25.197 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" disconnecting. +2017-12-27 19:09:25.198 +05:30 [Debug] Connection id ""0HLAD5QV3Q50F"" started. +2017-12-27 19:09:25.198 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" sending FIN. +2017-12-27 19:09:25.198 +05:30 [Debug] Connection id ""0HLAD5QV3Q50B"" disconnecting. +2017-12-27 19:09:25.199 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" sent FIN with status "0". +2017-12-27 19:09:25.197 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" received FIN. +2017-12-27 19:09:25.200 +05:30 [Debug] Connection id ""0HLAD5QV3Q508"" stopped. +2017-12-27 19:09:25.201 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" received FIN. +2017-12-27 19:09:25.201 +05:30 [Debug] Connection id ""0HLAD5QV3Q50B"" sending FIN. +2017-12-27 19:09:25.201 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" disconnecting. +2017-12-27 19:09:25.201 +05:30 [Debug] Connection id ""0HLAD5QV3Q50B"" sent FIN with status "0". +2017-12-27 19:09:25.200 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 19:09:25.201 +05:30 [Debug] Connection id ""0HLAD5QV3Q50B"" stopped. +2017-12-27 19:09:25.201 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" received FIN. +2017-12-27 19:09:25.202 +05:30 [Debug] Connection id ""0HLAD5QV3Q50E"" sending FIN. +2017-12-27 19:09:25.201 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" disconnecting. +2017-12-27 19:09:25.202 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 19:09:25.202 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" disconnecting. +2017-12-27 19:09:25.202 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" sending FIN. +2017-12-27 19:09:25.203 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 19:09:25.203 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" sending FIN. +2017-12-27 19:09:25.203 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" sending FIN. +2017-12-27 19:09:25.207 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" sent FIN with status "0". +2017-12-27 19:09:25.207 +05:30 [Debug] Connection id ""0HLAD5QV3Q50D"" stopped. +2017-12-27 19:09:25.208 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" sent FIN with status "0". +2017-12-27 19:09:25.209 +05:30 [Debug] Connection id ""0HLAD5QV3Q509"" stopped. +2017-12-27 19:09:25.209 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" sent FIN with status "0". +2017-12-27 19:09:25.209 +05:30 [Debug] Connection id ""0HLAD5QV3Q50A"" stopped. +2017-12-27 19:09:25.209 +05:30 [Debug] Connection id ""0HLAD5QV3Q50E"" sent FIN with status "0". +2017-12-27 19:09:25.210 +05:30 [Debug] Connection id ""0HLAD5QV3Q50E"" stopped. +2017-12-27 19:09:28.250 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 19:09:29.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:09:29.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:09:29.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:09:29.776 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4570.9815ms +2017-12-27 19:09:29.779 +05:30 [Information] Request finished in 4579.1209ms 200 application/json; charset=utf-8 +2017-12-27 19:09:29.780 +05:30 [Debug] Connection id ""0HLAD5QV3Q50F"" completed keep alive response. +2017-12-27 19:09:33.884 +05:30 [Debug] Connection id ""0HLAD5QV3Q50H"" started. +2017-12-27 19:09:33.884 +05:30 [Debug] Connection id ""0HLAD5QV3Q50G"" started. +2017-12-27 19:09:33.884 +05:30 [Debug] Connection id ""0HLAD5QV3Q50I"" started. +2017-12-27 19:09:33.885 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 19:09:33.896 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 19:09:33.896 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 19:09:33.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 19:09:33.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 19:09:33.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 19:09:33.934 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 19:09:33.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 19:09:33.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 19:09:33.971 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 19:09:33.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 19:09:33.998 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 19:09:34.078 +05:30 [Debug] Connection id ""0HLAD5QV3Q50J"" started. +2017-12-27 19:09:34.095 +05:30 [Debug] Connection id ""0HLAD5QV3Q50K"" started. +2017-12-27 19:09:34.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 19:09:34.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 19:09:34.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 19:09:34.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 19:09:34.121 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 19:09:34.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 19:09:37.198 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:09:37.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:09:37.420 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:09:37.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:09:37.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:09:37.764 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:09:37.765 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:09:37.766 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:09:37.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3865.8183ms +2017-12-27 19:09:37.797 +05:30 [Information] Request finished in 3905.9521ms 200 application/json; charset=utf-8 +2017-12-27 19:09:37.797 +05:30 [Debug] Connection id ""0HLAD5QV3Q50F"" completed keep alive response. +2017-12-27 19:09:37.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 19:09:37.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 19:09:37.827 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 19:09:38.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:09:38.089 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:09:38.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:09:38.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:09:38.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4117.9015ms +2017-12-27 19:09:38.094 +05:30 [Information] Request finished in 4204.7331ms 200 application/json; charset=utf-8 +2017-12-27 19:09:38.094 +05:30 [Debug] Connection id ""0HLAD5QV3Q50I"" completed keep alive response. +2017-12-27 19:09:38.097 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 19:09:38.098 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 19:09:38.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 19:09:38.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:09:38.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:09:38.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:09:38.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:09:38.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4323.4984ms +2017-12-27 19:09:38.442 +05:30 [Information] Request finished in 4336.0824ms 200 application/json; charset=utf-8 +2017-12-27 19:09:38.443 +05:30 [Debug] Connection id ""0HLAD5QV3Q50J"" completed keep alive response. +2017-12-27 19:09:38.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:09:38.565 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:09:38.565 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:09:38.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:09:38.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4444.6556ms +2017-12-27 19:09:38.571 +05:30 [Information] Request finished in 4461.0986ms 200 application/json; charset=utf-8 +2017-12-27 19:09:38.572 +05:30 [Debug] Connection id ""0HLAD5QV3Q50K"" completed keep alive response. +2017-12-27 19:09:40.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 19:09:40.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:09:45.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:09:45.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:09:46.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:09:46.487 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:09:46.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:09:46.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:09:46.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 12490.8235ms +2017-12-27 19:09:46.495 +05:30 [Information] Request finished in 12610.0786ms 200 application/json; charset=utf-8 +2017-12-27 19:09:46.496 +05:30 [Debug] Connection id ""0HLAD5QV3Q50H"" completed keep alive response. +2017-12-27 19:09:47.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:09:47.021 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:09:47.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:09:47.022 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:09:47.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 13120.6316ms +2017-12-27 19:09:47.025 +05:30 [Information] Request finished in 13140.2888ms 200 application/json; charset=utf-8 +2017-12-27 19:09:47.025 +05:30 [Debug] Connection id ""0HLAD5QV3Q50G"" completed keep alive response. +2017-12-27 19:09:47.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:09:47.075 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:09:47.075 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:09:47.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:09:47.077 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 8977.5648ms +2017-12-27 19:09:47.079 +05:30 [Information] Request finished in 8981.8464ms 200 application/json; charset=utf-8 +2017-12-27 19:09:47.080 +05:30 [Debug] Connection id ""0HLAD5QV3Q50I"" completed keep alive response. +2017-12-27 19:09:51.107 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:09:51.108 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:09:51.108 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:09:51.109 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:09:51.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 13281.4588ms +2017-12-27 19:09:51.113 +05:30 [Information] Request finished in 13286.9755ms 200 application/json; charset=utf-8 +2017-12-27 19:09:51.114 +05:30 [Debug] Connection id ""0HLAD5QV3Q50F"" completed keep alive response. +2017-12-27 19:09:51.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 19:09:51.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 19:09:51.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 19:09:54.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:09:54.722 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 19:09:54.723 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 19:09:54.723 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3590.3221ms +2017-12-27 19:09:54.725 +05:30 [Information] Request finished in 3596.1346ms 200 +2017-12-27 19:09:54.725 +05:30 [Debug] Connection id ""0HLAD5QV3Q50J"" completed keep alive response. +2017-12-27 19:11:20.094 +05:30 [Debug] Connection id ""0HLAD5QV3Q50K"" received FIN. +2017-12-27 19:11:20.094 +05:30 [Debug] Connection id ""0HLAD5QV3Q50H"" received FIN. +2017-12-27 19:11:20.094 +05:30 [Debug] Connection id ""0HLAD5QV3Q50G"" received FIN. +2017-12-27 19:11:20.095 +05:30 [Debug] Connection id ""0HLAD5QV3Q50I"" received FIN. +2017-12-27 19:11:20.095 +05:30 [Debug] Connection id ""0HLAD5QV3Q50F"" received FIN. +2017-12-27 19:11:20.095 +05:30 [Debug] Connection id ""0HLAD5QV3Q50H"" disconnecting. +2017-12-27 19:11:20.095 +05:30 [Debug] Connection id ""0HLAD5QV3Q50K"" disconnecting. +2017-12-27 19:11:20.101 +05:30 [Debug] Connection id ""0HLAD5QV3Q50H"" sending FIN. +2017-12-27 19:11:20.101 +05:30 [Debug] Connection id ""0HLAD5QV3Q50F"" disconnecting. +2017-12-27 19:11:20.096 +05:30 [Debug] Connection id ""0HLAD5QV3Q50G"" disconnecting. +2017-12-27 19:11:20.096 +05:30 [Debug] Connection id ""0HLAD5QV3Q50J"" received FIN. +2017-12-27 19:11:20.101 +05:30 [Debug] Connection id ""0HLAD5QV3Q50K"" sending FIN. +2017-12-27 19:11:20.102 +05:30 [Debug] Connection id ""0HLAD5QV3Q50F"" sending FIN. +2017-12-27 19:11:20.096 +05:30 [Debug] Connection id ""0HLAD5QV3Q50I"" disconnecting. +2017-12-27 19:11:20.103 +05:30 [Debug] Connection id ""0HLAD5QV3Q50K"" sent FIN with status "0". +2017-12-27 19:11:20.102 +05:30 [Debug] Connection id ""0HLAD5QV3Q50J"" disconnecting. +2017-12-27 19:11:20.104 +05:30 [Debug] Connection id ""0HLAD5QV3Q50K"" stopped. +2017-12-27 19:11:20.104 +05:30 [Debug] Connection id ""0HLAD5QV3Q50H"" sent FIN with status "0". +2017-12-27 19:11:20.103 +05:30 [Debug] Connection id ""0HLAD5QV3Q50G"" sending FIN. +2017-12-27 19:11:20.105 +05:30 [Debug] Connection id ""0HLAD5QV3Q50H"" stopped. +2017-12-27 19:11:20.105 +05:30 [Debug] Connection id ""0HLAD5QV3Q50J"" sending FIN. +2017-12-27 19:11:20.105 +05:30 [Debug] Connection id ""0HLAD5QV3Q50I"" sending FIN. +2017-12-27 19:11:20.106 +05:30 [Debug] Connection id ""0HLAD5QV3Q50J"" sent FIN with status "0". +2017-12-27 19:11:20.106 +05:30 [Debug] Connection id ""0HLAD5QV3Q50I"" sent FIN with status "0". +2017-12-27 19:11:20.106 +05:30 [Debug] Connection id ""0HLAD5QV3Q50J"" stopped. +2017-12-27 19:11:20.106 +05:30 [Debug] Connection id ""0HLAD5QV3Q50I"" stopped. +2017-12-27 19:11:20.107 +05:30 [Debug] Connection id ""0HLAD5QV3Q50G"" sent FIN with status "0". +2017-12-27 19:11:20.107 +05:30 [Debug] Connection id ""0HLAD5QV3Q50G"" stopped. +2017-12-27 19:11:20.108 +05:30 [Debug] Connection id ""0HLAD5QV3Q50F"" sent FIN with status "0". +2017-12-27 19:11:20.108 +05:30 [Debug] Connection id ""0HLAD5QV3Q50F"" stopped. +2017-12-27 19:33:54.050 +05:30 [Debug] Hosting starting +2017-12-27 19:33:54.278 +05:30 [Debug] Hosting started +2017-12-27 19:33:54.457 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" started. +2017-12-27 19:33:54.480 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" started. +2017-12-27 19:33:54.672 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-12-27 19:33:54.672 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-12-27 19:33:54.747 +05:30 [Information] Request finished in 116.4861ms 200 +2017-12-27 19:33:54.797 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" completed keep alive response. +2017-12-27 19:33:55.747 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-12-27 19:33:55.816 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"408289d7-d012-4f41-831e-1878dd44b336"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-12-27 19:33:56.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-12-27 19:33:56.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-12-27 19:33:56.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-12-27 19:33:56.403 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:33:56.411 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:33:56.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:33:56.776 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 578.8577ms +2017-12-27 19:33:57.000 +05:30 [Information] Request finished in 2384.302ms 200 application/json; charset=utf-8 +2017-12-27 19:33:57.003 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" completed keep alive response. +2017-12-27 19:33:57.204 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-12-27 19:33:57.208 +05:30 [Debug] Request did not match any routes. +2017-12-27 19:33:57.239 +05:30 [Debug] The request path "" does not match the path filter +2017-12-27 19:33:57.249 +05:30 [Information] Request finished in 44.982ms 404 +2017-12-27 19:33:57.250 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" completed keep alive response. +2017-12-27 19:34:15.343 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/FacebookLogin application/x-www-form-urlencoded 202 +2017-12-27 19:34:15.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/FacebookLogin"'. +2017-12-27 19:34:15.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" +2017-12-27 19:34:18.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAPHE2bpJiRFTEjwhti02Ww4F1XCrLWqdgZAQRZCuQ4VZCFt9BqDeu6hPxGAarX7ZCWxJkJGZB1fOP65ySVPI3tHcZCyVfn6go2ZCk5l0gPElDo1LZCJIetXvLRcCg1ZC5SwAphgmWDD5aMAfxhVHenKwb5HJNCvl1PgZDZD", "Free"]) - ModelState is Valid +2017-12-27 19:34:28.712 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:28.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:28.721 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:28.882 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.FacebookLogin (Api.Socioboard)" in 13534.8535ms +2017-12-27 19:34:28.884 +05:30 [Information] Request finished in 13545.0773ms 200 application/json; charset=utf-8 +2017-12-27 19:34:28.885 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" completed keep alive response. +2017-12-27 19:34:29.311 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-12-27 19:34:29.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 19:34:29.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 19:34:32.374 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-12-27 19:34:34.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:34.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:34.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:34.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4816.8343ms +2017-12-27 19:34:34.133 +05:30 [Information] Request finished in 4821.699ms 200 application/json; charset=utf-8 +2017-12-27 19:34:34.133 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" completed keep alive response. +2017-12-27 19:34:35.577 +05:30 [Debug] Connection id ""0HLAD6AL5GDP9"" started. +2017-12-27 19:34:35.577 +05:30 [Debug] Connection id ""0HLAD6AL5GDPA"" started. +2017-12-27 19:34:35.579 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 19:34:35.580 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 19:34:35.581 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 19:34:35.581 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 19:34:35.581 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 19:34:35.583 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 19:34:35.585 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 19:34:35.585 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 19:34:35.587 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 19:34:35.590 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 19:34:35.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 19:34:35.592 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 19:34:35.673 +05:30 [Debug] Connection id ""0HLAD6AL5GDPB"" started. +2017-12-27 19:34:35.673 +05:30 [Debug] Connection id ""0HLAD6AL5GDPC"" started. +2017-12-27 19:34:35.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 19:34:35.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 19:34:35.688 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 19:34:36.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 19:34:36.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 19:34:36.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 19:34:39.537 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:34:39.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:34:39.627 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:34:39.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:34:39.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:34:39.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:34:40.249 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:40.250 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:34:40.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:40.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:40.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4665.0832ms +2017-12-27 19:34:40.263 +05:30 [Information] Request finished in 4684.1704ms 200 application/json; charset=utf-8 +2017-12-27 19:34:40.263 +05:30 [Debug] Connection id ""0HLAD6AL5GDP9"" completed keep alive response. +2017-12-27 19:34:40.266 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-12-27 19:34:40.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-12-27 19:34:40.269 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-12-27 19:34:41.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:41.552 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:34:41.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:41.555 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:41.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 5979.0122ms +2017-12-27 19:34:41.575 +05:30 [Information] Request finished in 5994.5676ms 200 application/json; charset=utf-8 +2017-12-27 19:34:41.576 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" completed keep alive response. +2017-12-27 19:34:41.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:41.603 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:34:41.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:41.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:41.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6028.5318ms +2017-12-27 19:34:41.617 +05:30 [Information] Request finished in 6043.4866ms 200 application/json; charset=utf-8 +2017-12-27 19:34:41.617 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" completed keep alive response. +2017-12-27 19:34:42.110 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:42.110 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:34:42.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:42.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:42.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 6423.5456ms +2017-12-27 19:34:42.114 +05:30 [Information] Request finished in 6438.9912ms 200 application/json; charset=utf-8 +2017-12-27 19:34:42.114 +05:30 [Debug] Connection id ""0HLAD6AL5GDPB"" completed keep alive response. +2017-12-27 19:34:42.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:42.153 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:34:42.153 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:42.154 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:42.156 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6571.2536ms +2017-12-27 19:34:42.158 +05:30 [Information] Request finished in 6577.4809ms 200 application/json; charset=utf-8 +2017-12-27 19:34:42.158 +05:30 [Debug] Connection id ""0HLAD6AL5GDPA"" completed keep alive response. +2017-12-27 19:34:42.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:42.168 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:34:42.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:42.171 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:42.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5774.5002ms +2017-12-27 19:34:42.177 +05:30 [Information] Request finished in 5784.6135ms 200 application/json; charset=utf-8 +2017-12-27 19:34:42.177 +05:30 [Debug] Connection id ""0HLAD6AL5GDPC"" completed keep alive response. +2017-12-27 19:34:43.321 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:34:45.594 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:45.594 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:34:45.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:45.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:45.639 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5369.6081ms +2017-12-27 19:34:45.641 +05:30 [Information] Request finished in 5375.632ms 200 application/json; charset=utf-8 +2017-12-27 19:34:45.642 +05:30 [Debug] Connection id ""0HLAD6AL5GDP9"" completed keep alive response. +2017-12-27 19:34:49.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 19:34:49.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 19:34:49.385 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 19:34:49.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 19:34:49.386 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 19:34:49.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 19:34:52.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:34:54.200 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 19:34:58.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:58.298 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:34:58.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:58.299 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:58.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 8926.38ms +2017-12-27 19:34:58.316 +05:30 [Information] Request finished in 8932.4652ms 200 application/json; charset=utf-8 +2017-12-27 19:34:58.316 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" completed keep alive response. +2017-12-27 19:34:59.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:34:59.923 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:34:59.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:34:59.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:34:59.940 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 10549.4411ms +2017-12-27 19:34:59.946 +05:30 [Information] Request finished in 10561.4699ms 200 application/json; charset=utf-8 +2017-12-27 19:34:59.947 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" completed keep alive response. +2017-12-27 19:34:59.961 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 19:34:59.961 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 19:34:59.962 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 19:35:02.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:35:03.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 19:35:03.520 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 19:35:03.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 3557.8112ms +2017-12-27 19:35:03.523 +05:30 [Information] Request finished in 3566.0122ms 200 +2017-12-27 19:35:03.524 +05:30 [Debug] Connection id ""0HLAD6AL5GDPB"" completed keep alive response. +2017-12-27 19:35:45.206 +05:30 [Debug] Connection id ""0HLAD6AL5GDPA"" received FIN. +2017-12-27 19:35:45.206 +05:30 [Debug] Connection id ""0HLAD6AL5GDPC"" received FIN. +2017-12-27 19:35:45.207 +05:30 [Debug] Connection id ""0HLAD6AL5GDPA"" disconnecting. +2017-12-27 19:35:45.207 +05:30 [Debug] Connection id ""0HLAD6AL5GDPC"" disconnecting. +2017-12-27 19:35:45.207 +05:30 [Debug] Connection id ""0HLAD6AL5GDPA"" sending FIN. +2017-12-27 19:35:45.209 +05:30 [Debug] Connection id ""0HLAD6AL5GDPC"" sending FIN. +2017-12-27 19:35:45.213 +05:30 [Debug] Connection id ""0HLAD6AL5GDPC"" sent FIN with status "0". +2017-12-27 19:35:45.214 +05:30 [Debug] Connection id ""0HLAD6AL5GDPC"" stopped. +2017-12-27 19:35:45.214 +05:30 [Debug] Connection id ""0HLAD6AL5GDPA"" sent FIN with status "0". +2017-12-27 19:35:45.215 +05:30 [Debug] Connection id ""0HLAD6AL5GDPA"" stopped. +2017-12-27 19:36:49.721 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" received FIN. +2017-12-27 19:36:49.721 +05:30 [Debug] Connection id ""0HLAD6AL5GDP9"" received FIN. +2017-12-27 19:36:49.722 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" received FIN. +2017-12-27 19:36:49.722 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" disconnecting. +2017-12-27 19:36:49.722 +05:30 [Debug] Connection id ""0HLAD6AL5GDPB"" received FIN. +2017-12-27 19:36:49.723 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" sending FIN. +2017-12-27 19:36:49.722 +05:30 [Debug] Connection id ""0HLAD6AL5GDP9"" disconnecting. +2017-12-27 19:36:49.723 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" sent FIN with status "0". +2017-12-27 19:36:49.725 +05:30 [Debug] Connection id ""0HLAD6AL5GDP8"" stopped. +2017-12-27 19:36:49.725 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" disconnecting. +2017-12-27 19:36:49.725 +05:30 [Debug] Connection id ""0HLAD6AL5GDP9"" sending FIN. +2017-12-27 19:36:49.725 +05:30 [Debug] Connection id ""0HLAD6AL5GDPD"" started. +2017-12-27 19:36:49.726 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" sending FIN. +2017-12-27 19:36:49.726 +05:30 [Debug] Connection id ""0HLAD6AL5GDPB"" disconnecting. +2017-12-27 19:36:49.727 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" sent FIN with status "0". +2017-12-27 19:36:49.728 +05:30 [Debug] Connection id ""0HLAD6AL5GDP7"" stopped. +2017-12-27 19:36:49.729 +05:30 [Debug] Connection id ""0HLAD6AL5GDP9"" sent FIN with status "0". +2017-12-27 19:36:49.730 +05:30 [Debug] Connection id ""0HLAD6AL5GDP9"" stopped. +2017-12-27 19:36:49.730 +05:30 [Debug] Connection id ""0HLAD6AL5GDPB"" sending FIN. +2017-12-27 19:36:49.731 +05:30 [Debug] Connection id ""0HLAD6AL5GDPB"" sent FIN with status "0". +2017-12-27 19:36:49.731 +05:30 [Debug] Connection id ""0HLAD6AL5GDPB"" stopped. +2017-12-27 19:36:49.733 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-12-27 19:36:49.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-12-27 19:36:49.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-12-27 19:36:52.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-12-27 19:36:54.278 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:36:54.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:36:54.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:36:54.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4543.7409ms +2017-12-27 19:36:54.283 +05:30 [Information] Request finished in 4554.7944ms 200 application/json; charset=utf-8 +2017-12-27 19:36:54.284 +05:30 [Debug] Connection id ""0HLAD6AL5GDPD"" completed keep alive response. +2017-12-27 19:36:57.854 +05:30 [Debug] Connection id ""0HLAD6AL5GDPE"" started. +2017-12-27 19:36:57.854 +05:30 [Debug] Connection id ""0HLAD6AL5GDPG"" started. +2017-12-27 19:36:57.854 +05:30 [Debug] Connection id ""0HLAD6AL5GDPF"" started. +2017-12-27 19:36:57.935 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-12-27 19:36:57.936 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-12-27 19:36:57.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-12-27 19:36:57.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-12-27 19:36:57.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-12-27 19:36:57.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-12-27 19:36:58.002 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetGroupMember?userId=48 +2017-12-27 19:36:58.003 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetGroupMember"'. +2017-12-27 19:36:58.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" +2017-12-27 19:36:58.103 +05:30 [Debug] Connection id ""0HLAD6AL5GDPH"" started. +2017-12-27 19:36:58.112 +05:30 [Debug] Connection id ""0HLAD6AL5GDPI"" started. +2017-12-27 19:36:58.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/YoutubeGroup/GetYtGroupChannel?userId=48 +2017-12-27 19:36:58.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/YoutubeGroup/GetYtGroupChannel"'. +2017-12-27 19:36:58.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" +2017-12-27 19:36:58.168 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-12-27 19:36:58.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-12-27 19:36:58.169 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-12-27 19:36:58.183 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-12-27 19:36:58.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-12-27 19:36:58.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-12-27 19:37:00.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:37:01.285 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:37:01.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:37:01.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:37:01.443 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:37:01.546 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:37:01.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:37:01.614 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:37:01.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:37:01.615 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:37:01.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3441.5517ms +2017-12-27 19:37:01.627 +05:30 [Information] Request finished in 3471.0471ms 200 application/json; charset=utf-8 +2017-12-27 19:37:01.627 +05:30 [Debug] Connection id ""0HLAD6AL5GDPI"" completed keep alive response. +2017-12-27 19:37:01.638 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindAllNotifications?userId=48&skip=0&count=10 +2017-12-27 19:37:01.639 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindAllNotifications"'. +2017-12-27 19:37:01.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" +2017-12-27 19:37:01.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:37:01.838 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:37:01.838 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:37:01.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:37:01.840 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3902.465ms +2017-12-27 19:37:01.843 +05:30 [Information] Request finished in 3994.9035ms 200 application/json; charset=utf-8 +2017-12-27 19:37:01.843 +05:30 [Debug] Connection id ""0HLAD6AL5GDPD"" completed keep alive response. +2017-12-27 19:37:01.853 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/ChangePasswordDetail?userId=48 +2017-12-27 19:37:01.853 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/ChangePasswordDetail"'. +2017-12-27 19:37:01.853 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" +2017-12-27 19:37:01.957 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:37:01.957 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:37:01.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:37:01.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:37:01.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetGroupMember (Api.Socioboard)" in 3954.5237ms +2017-12-27 19:37:01.961 +05:30 [Information] Request finished in 4063.8244ms 200 application/json; charset=utf-8 +2017-12-27 19:37:01.962 +05:30 [Debug] Connection id ""0HLAD6AL5GDPE"" completed keep alive response. +2017-12-27 19:37:02.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:37:02.204 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:37:02.204 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:37:02.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:37:02.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4020.4285ms +2017-12-27 19:37:02.210 +05:30 [Information] Request finished in 4348.2294ms 200 application/json; charset=utf-8 +2017-12-27 19:37:02.210 +05:30 [Debug] Connection id ""0HLAD6AL5GDPF"" completed keep alive response. +2017-12-27 19:37:02.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:37:02.328 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:37:02.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:37:02.329 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:37:02.334 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:37:02.334 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:37:02.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:37:02.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4345.2263ms +2017-12-27 19:37:02.338 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:37:02.339 +05:30 [Information] Request finished in 4455.5064ms 200 application/json; charset=utf-8 +2017-12-27 19:37:02.340 +05:30 [Debug] Connection id ""0HLAD6AL5GDPG"" completed keep alive response. +2017-12-27 19:37:02.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.YoutubeGroupController.GetYtGroupChannel (Api.Socioboard)" in 4206.2443ms +2017-12-27 19:37:02.345 +05:30 [Information] Request finished in 4226.1096ms 200 application/json; charset=utf-8 +2017-12-27 19:37:02.346 +05:30 [Debug] Connection id ""0HLAD6AL5GDPH"" completed keep alive response. +2017-12-27 19:37:04.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" with arguments (["48", "0", "10"]) - ModelState is Valid +2017-12-27 19:37:04.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:37:07.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:37:07.540 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:37:07.540 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:37:07.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:37:07.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.ChangePasswordDetail (Api.Socioboard)" in 5688.5783ms +2017-12-27 19:37:07.545 +05:30 [Information] Request finished in 5692.8997ms 200 application/json; charset=utf-8 +2017-12-27 19:37:07.545 +05:30 [Debug] Connection id ""0HLAD6AL5GDPD"" completed keep alive response. +2017-12-27 19:37:11.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-12-27 19:37:11.562 +05:30 [Debug] No information found on request to perform content negotiation. +2017-12-27 19:37:11.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-12-27 19:37:11.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-12-27 19:37:11.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindAllNotifications (Api.Socioboard)" in 9923.2659ms +2017-12-27 19:37:11.568 +05:30 [Information] Request finished in 9929.1868ms 200 application/json; charset=utf-8 +2017-12-27 19:37:11.568 +05:30 [Debug] Connection id ""0HLAD6AL5GDPI"" completed keep alive response. +2017-12-27 19:37:11.576 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/UpdateNotifications?userId=48 +2017-12-27 19:37:11.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/UpdateNotifications"'. +2017-12-27 19:37:11.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" +2017-12-27 19:37:13.701 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-12-27 19:37:14.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-12-27 19:37:14.229 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-12-27 19:37:14.230 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.UpdateNotifications (Api.Socioboard)" in 2651.6237ms +2017-12-27 19:37:14.232 +05:30 [Information] Request finished in 2655.3695ms 200 +2017-12-27 19:37:14.232 +05:30 [Debug] Connection id ""0HLAD6AL5GDPE"" completed keep alive response. +2017-12-27 19:39:24.806 +05:30 [Debug] Connection id ""0HLAD6AL5GDPF"" received FIN. +2017-12-27 19:39:24.806 +05:30 [Debug] Connection id ""0HLAD6AL5GDPI"" received FIN. +2017-12-27 19:39:24.806 +05:30 [Debug] Connection id ""0HLAD6AL5GDPG"" received FIN. +2017-12-27 19:39:24.806 +05:30 [Debug] Connection id ""0HLAD6AL5GDPF"" disconnecting. +2017-12-27 19:39:24.807 +05:30 [Debug] Connection id ""0HLAD6AL5GDPH"" received FIN. +2017-12-27 19:39:24.807 +05:30 [Debug] Connection id ""0HLAD6AL5GDPE"" received FIN. +2017-12-27 19:39:24.808 +05:30 [Debug] Connection id ""0HLAD6AL5GDPI"" disconnecting. +2017-12-27 19:39:24.808 +05:30 [Debug] Connection id ""0HLAD6AL5GDPD"" received FIN. +2017-12-27 19:39:24.809 +05:30 [Debug] Connection id ""0HLAD6AL5GDPH"" disconnecting. +2017-12-27 19:39:24.809 +05:30 [Debug] Connection id ""0HLAD6AL5GDPE"" disconnecting. +2017-12-27 19:39:24.809 +05:30 [Debug] Connection id ""0HLAD6AL5GDPH"" sending FIN. +2017-12-27 19:39:24.809 +05:30 [Debug] Connection id ""0HLAD6AL5GDPD"" disconnecting. +2017-12-27 19:39:24.807 +05:30 [Debug] Connection id ""0HLAD6AL5GDPG"" disconnecting. +2017-12-27 19:39:24.808 +05:30 [Debug] Connection id ""0HLAD6AL5GDPF"" sending FIN. +2017-12-27 19:39:24.813 +05:30 [Debug] Connection id ""0HLAD6AL5GDPH"" sent FIN with status "0". +2017-12-27 19:39:24.815 +05:30 [Debug] Connection id ""0HLAD6AL5GDPH"" stopped. +2017-12-27 19:39:24.814 +05:30 [Debug] Connection id ""0HLAD6AL5GDPI"" sending FIN. +2017-12-27 19:39:24.815 +05:30 [Debug] Connection id ""0HLAD6AL5GDPD"" sending FIN. +2017-12-27 19:39:24.816 +05:30 [Debug] Connection id ""0HLAD6AL5GDPG"" sending FIN. +2017-12-27 19:39:24.815 +05:30 [Debug] Connection id ""0HLAD6AL5GDPE"" sending FIN. +2017-12-27 19:39:24.816 +05:30 [Debug] Connection id ""0HLAD6AL5GDPG"" sent FIN with status "0". +2017-12-27 19:39:24.816 +05:30 [Debug] Connection id ""0HLAD6AL5GDPE"" sent FIN with status "0". +2017-12-27 19:39:24.817 +05:30 [Debug] Connection id ""0HLAD6AL5GDPE"" stopped. +2017-12-27 19:39:24.817 +05:30 [Debug] Connection id ""0HLAD6AL5GDPG"" stopped. +2017-12-27 19:39:24.818 +05:30 [Debug] Connection id ""0HLAD6AL5GDPI"" sent FIN with status "0". +2017-12-27 19:39:24.818 +05:30 [Debug] Connection id ""0HLAD6AL5GDPD"" sent FIN with status "0". +2017-12-27 19:39:24.818 +05:30 [Debug] Connection id ""0HLAD6AL5GDPI"" stopped. +2017-12-27 19:39:24.819 +05:30 [Debug] Connection id ""0HLAD6AL5GDPF"" sent FIN with status "0". +2017-12-27 19:39:24.820 +05:30 [Debug] Connection id ""0HLAD6AL5GDPF"" stopped. +2017-12-27 19:39:24.818 +05:30 [Debug] Connection id ""0HLAD6AL5GDPD"" stopped. diff --git a/src/Api.Socioboard/wwwroot/upload/9RE7CIJ559.jpg b/src/Api.Socioboard/wwwroot/upload/9RE7CIJ559.jpg new file mode 100644 index 000000000..3a55cf8c1 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/9RE7CIJ559.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/BBJ05TOU0M.jpg b/src/Api.Socioboard/wwwroot/upload/BBJ05TOU0M.jpg new file mode 100644 index 000000000..ea4301605 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/BBJ05TOU0M.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/CKAPEX1UW1.jpg b/src/Api.Socioboard/wwwroot/upload/CKAPEX1UW1.jpg new file mode 100644 index 000000000..c0b7c1c36 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/CKAPEX1UW1.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/FGHX4WNZMI.jpg b/src/Api.Socioboard/wwwroot/upload/FGHX4WNZMI.jpg new file mode 100644 index 000000000..3a55cf8c1 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/FGHX4WNZMI.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/J94G4U6W84.jpg b/src/Api.Socioboard/wwwroot/upload/J94G4U6W84.jpg new file mode 100644 index 000000000..3a55cf8c1 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/J94G4U6W84.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/OHK0YC2R1B.jpg b/src/Api.Socioboard/wwwroot/upload/OHK0YC2R1B.jpg new file mode 100644 index 000000000..d96fc171e Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/OHK0YC2R1B.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/PODGQTLMTE.jpg b/src/Api.Socioboard/wwwroot/upload/PODGQTLMTE.jpg new file mode 100644 index 000000000..3a55cf8c1 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/PODGQTLMTE.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/YS9L2828VZ.jpg b/src/Api.Socioboard/wwwroot/upload/YS9L2828VZ.jpg new file mode 100644 index 000000000..3a55cf8c1 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/YS9L2828VZ.jpg differ diff --git a/src/Socioboard/Services/SendMessage.cs b/src/Socioboard/Services/SendMessage.cs index 0363c3c37..901c4d4d9 100644 --- a/src/Socioboard/Services/SendMessage.cs +++ b/src/Socioboard/Services/SendMessage.cs @@ -18,7 +18,7 @@ public class SendMessage //way2sms not working string uid = "9210663604"; - string password = "K3937C"; + string password = ""; string message = "hi"; string no = "9210663604"; //com.experttexting.www.ExptTextingAPI ExptTexting = new com.experttexting.www.ExptTextingAPI(); @@ -67,7 +67,7 @@ public void send(string uid, string password, string message, string no) public void sent() { - bool isSent = SendOTPSMS("9210663604", "9179547655", "Qqu5UO3E7TmshCvqH4OopsQfWzxkp1IWWtZjsnwWYO13hIc3y0", "9210663604", "OTP: 324353"); + bool isSent = SendOTPSMS("", "", "", "", ""); } public bool SendOTPSMS(string senderMobileNo, string senderPassword, string MshapeKey, string receiverMobileNo, string Message) { diff --git a/src/Socioboard/Themes/Socioboard/Views/Shared/_SocioboardLayout.cshtml b/src/Socioboard/Themes/Socioboard/Views/Shared/_SocioboardLayout.cshtml index ff36f1aab..4235fcd28 100644 --- a/src/Socioboard/Themes/Socioboard/Views/Shared/_SocioboardLayout.cshtml +++ b/src/Socioboard/Themes/Socioboard/Views/Shared/_SocioboardLayout.cshtml @@ -76,12 +76,14 @@ + + + - - - + + diff --git a/src/Socioboard/bin/Debug/net451/Socioboard.exe b/src/Socioboard/bin/Debug/net451/Socioboard.exe index 4749872be..14322ef1c 100644 Binary files a/src/Socioboard/bin/Debug/net451/Socioboard.exe and b/src/Socioboard/bin/Debug/net451/Socioboard.exe differ diff --git a/src/Socioboard/bin/Debug/net451/Socioboard.pdb b/src/Socioboard/bin/Debug/net451/Socioboard.pdb index cae893acf..b921c73c8 100644 Binary files a/src/Socioboard/bin/Debug/net451/Socioboard.pdb and b/src/Socioboard/bin/Debug/net451/Socioboard.pdb differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.exe b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.exe index 4749872be..14322ef1c 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.exe and b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.exe differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.pdb b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.pdb index cae893acf..b921c73c8 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.pdb and b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.pdb differ diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/dashboardcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/dashboardcontroller.js index a94998ecf..f438184df 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/dashboardcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/dashboardcontroller.js @@ -445,7 +445,7 @@ SocioboardApp.controller('DashboardController', function ($rootScope, $scope, $h //$scope.fetchYTChannels(); $scope.deleteProfile = function (profileId) { - + swal({ title: "Are you sure?", text: "You will not be able to send any message via this account!", @@ -455,31 +455,61 @@ SocioboardApp.controller('DashboardController', function ($rootScope, $scope, $h confirmButtonText: "Yes, delete it!", closeOnConfirm: false }, + function () { + $scope.chk(profileId); + if ($scope.isprimacc == false) { + + $http({ + method: 'POST', + url: apiDomain + '/api/GroupProfiles/DeleteProfile?groupId=' + $rootScope.groupId + '&userId=' + $rootScope.user.Id + '&profileId=' + profileId, + }).then(function (response) { + if (response.data == "Deleted") { + // swal("Deleted!", "Your profile has been deleted", "Success"); + swal("Deleted!", "Account is deleted", "success"); + } + window.location.reload(); + }); + } + if ($scope.isprimacc == true) { + swal("You can't delete primary account"); + } + }); + } + $scope.chk = function (profileId) { + debugger; + $http({ + method: 'POST', + url: apiDomain + '/api/GroupProfiles/IsPrimaryAcc?userId=' + $rootScope.user.Id + '&profileId=' + profileId, + }).then(function (response) { + debugger; + if (response.data == "Primary Account") { + $scope.isprimacc = true; + } + else { + $scope.isprimacc = false; + } + }); + } - $http({ - method: 'POST', - url: apiDomain + '/api/GroupProfiles/DeleteProfile?groupId=' + $rootScope.groupId + '&userId=' + $rootScope.user.Id + '&profileId=' + profileId, - }).then(function (response) { - if (response.data == "Deleted") { - // swal("Deleted!", "Your profile has been deleted", "Success"); - swal("Deleted!", "Account is deleted", "success"); - } - window.location.reload(); - }); - // else { - // // swal("Deleted!", response.data, "success"); - // swal("Deleted!","success"); - // } + $scope.delconfprimaryacc = function (profileId) { + debugger; + $http({ + method: 'POST', + url: apiDomain + '/api/GroupProfiles/DeleteProfile?groupId=' + $rootScope.groupId + '&userId=' + $rootScope.user.Id + '&profileId=' + profileId, + }).then(function (response) { + if (response.data == "Deleted") { + // swal("Deleted!", "Your profile has been deleted", "Success"); + swal("Deleted!", "Account is deleted", "success"); + } + window.location.reload(); + }); + } - //}, function (reason) { - // // swal("Deleted!", reason, "success"); - // swal("Deleted!","success"); - //}); - //todo: code to delete profile - }); + $scope.isprimaryacc = function (profileId) { + } $scope.deleteGpProfile = function (profileId) { @@ -558,22 +588,12 @@ SocioboardApp.controller('DashboardController', function ($rootScope, $scope, $h url: apiDomain + '/api/GroupProfiles/DeleteProfile?groupId=' + $rootScope.groupId + '&userId=' + $rootScope.user.Id + '&profileId=' + profileId, }).then(function (response) { if (response.data == "Deleted") { - // swal("Deleted!", "Your profile has been deleted", "Success"); + swal("Deleted!", "Account is deleted", "success"); } window.location.reload(); }); - // else { - // // swal("Deleted!", response.data, "success"); - // swal("Deleted!","success"); - // } - - //}, function (reason) { - // // swal("Deleted!", reason, "success"); - // swal("Deleted!","success"); - //}); - - //todo: code to delete profile + }); } diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookfeedscontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookfeedscontroller.js index e34d4ac5b..c8c7fc1b9 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookfeedscontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookfeedscontroller.js @@ -193,9 +193,7 @@ SocioboardApp.controller('FacebookFeedsController', function ($rootScope, $scope facebookfeeds(); - $scope.reconnect = function (xyz) { - - + $scope.reconnect = function (xyz) { $http.get(domain + '/socioboard/recfbcont?id=' + $stateParams.profileId + '&fbprofileType=' + xyz) .then(function (response) { window.location.href = response.data; diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookreportcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookreportcontroller.js index 2b55319bd..7e6eed931 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookreportcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookreportcontroller.js @@ -1,6 +1,6 @@ 'use strict'; -SocioboardApp.controller('FacebookreportController', function ($rootScope, $scope, $http, $timeout, apiDomain) { +SocioboardApp.controller('FacebookreportController', function ($rootScope, $scope, $http, $timeout, apiDomain,domain) { //alert('helo'); $scope.$on('$viewContentLoaded', function () { $('#Fbfeedsdetails').DataTable({ @@ -71,6 +71,47 @@ SocioboardApp.controller('FacebookreportController', function ($rootScope, $scop } //addaed by me end for total fans + $scope.reconnect = function (xyz) { + $http.get(domain + '/socioboard/recfbcont?id=' + $scope.selectedProfile + '&fbprofileType=' + xyz) + .then(function (response) { + window.location.href = response.data; + + }, function (reason) { + $scope.error = reason.data; + }); + + }; + + $scope.fbprofiles = function () { + + console.log($scope.selectedProfile); + $http.get(apiDomain + '/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=' + $rootScope.groupId) + .then(function (response) { + console.log(response.data) + if (response.data != null) { + var ac = false; + $scope.profiledet = response.data; + angular.forEach($scope.profiledet, function (value, key) { + if (value.fbUserId == $scope.selectedProfile) { + $scope.reconnect(value.fbProfileType); + ac = true; + } + + }); + + if (!ac) { + $scope.reconnect(null); + } + + } + + + }, function (reason) { + $scope.error = reason.data; + }); + + }; + $scope.getData = function (profileId, days) { $scope.GetFacebookPagePostData(profileId, days); diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/fbpagedetreportcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/fbpagedetreportcontroller.js index cbf082cdf..1ca6bcf62 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/fbpagedetreportcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/fbpagedetreportcontroller.js @@ -95,6 +95,48 @@ SocioboardApp.controller('FbpagedetreportController', function ($rootScope, $sco } //for fbpage daily report details-------end + $scope.reconnect = function (xyz) { + $http.get(domain + '/socioboard/recfbcont?id=' + $stateParams.profileId + '&fbprofileType=' + xyz) + .then(function (response) { + window.location.href = response.data; + + }, function (reason) { + $scope.error = reason.data; + }); + + }; + + $scope.fbprofiles = function () { + + $http.get(apiDomain + '/api/Facebook/GetFacebookProfilesOnlyforReconn?groupId=' + $rootScope.groupId) + .then(function (response) { + console.log(response.data) + if (response.data != null) { + var ac = false; + $scope.profiledet = response.data; + angular.forEach($scope.profiledet, function (value, key) { + if (value.fbUserId == $stateParams.profileId) { + $scope.reconnect(value.fbProfileType); + ac = true; + } + + }); + + if (!ac) { + $scope.reconnect(null); + } + + } + + + }, function (reason) { + $scope.error = reason.data; + }); + + }; + + + $scope.getData = function (profileId, days) { $scope.GetFacebookPagePostData(profileId, days); diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/notificationallcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/notificationallcontroller.js index 05500e4da..f48d1e29a 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/notificationallcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/notificationallcontroller.js @@ -26,10 +26,26 @@ SocioboardApp.controller('NotificationAllController', function ($rootScope, $sco } $scope.LoadAllNotifications(); - $scope.loadmore = function () { + $scope.changepass = function () { + + $http.get(apiDomain + '/api/Notifications/ChangePasswordDetail?userId=' + $rootScope.user.Id ) + .then(function (response) { + $scope.lstChangePass = response.data; + console.log($scope.lstChangePass); + var abc = $scope.lstChangePass; + + //$scope.notifycount = $scope.notifycount + 10; + + }, function (reason) { + $scope.error = reason.data; + }); + // end codes to load recent Feeds + } + $scope.changepass(); - + // start codes to load recent Feeds + $scope.loadmore = function () { $("#load_more_toggle").addClass("hide"); $http.get(apiDomain + '/api/Notifications/FindAllNotifications?userId=' + $rootScope.user.Id + '&skip=' + $scope.notifycount + '&count=' + 10) .then(function (response) { @@ -42,9 +58,8 @@ SocioboardApp.controller('NotificationAllController', function ($rootScope, $sco }) }, function (reason) { $scope.error = reason.data; - }); - // end codes to load recent Feeds - + }); } + // end codes to load recent Feeds }); }); \ No newline at end of file diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/schedulemsgcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/schedulemsgcontroller.js index 385e482eb..60493f8fa 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/schedulemsgcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/schedulemsgcontroller.js @@ -85,7 +85,7 @@ SocioboardApp.controller('ScheduleMessageController', function ($rootScope, $sco return false; } - + var updatedmessage = ""; var postdata = message.split("\n"); diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html index 434a77a96..975de37c9 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html @@ -1163,15 +1163,12 @@
Recent Followers
diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/settings/access_passwd.html b/src/Socioboard/wwwroot/contents/socioboard/views/settings/access_passwd.html index fe0b28083..f865b0239 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/settings/access_passwd.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/settings/access_passwd.html @@ -68,10 +68,12 @@
Social Sign In
  • Primary Account
  • -
    -
    - - +
    +
    + +
    +
    +
    User login emailid
    @@ -98,24 +100,7 @@
    Social Sign In
    {{userdetail.emailId}}
    - +
+ diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/shared/header.html b/src/Socioboard/wwwroot/contents/socioboard/views/shared/header.html index 1c820f358..ab788fa98 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/shared/header.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/shared/header.html @@ -228,7 +228,7 @@
Reconnect
- + diff --git a/src/SocioboardDataScheduler/bin/Debug/dnx451/SocioboardDataScheduler.exe b/src/SocioboardDataScheduler/bin/Debug/dnx451/SocioboardDataScheduler.exe index 3662c9e3e..c3ff7fe0c 100644 Binary files a/src/SocioboardDataScheduler/bin/Debug/dnx451/SocioboardDataScheduler.exe and b/src/SocioboardDataScheduler/bin/Debug/dnx451/SocioboardDataScheduler.exe differ diff --git a/src/SocioboardDataScheduler/bin/Debug/dnx451/SocioboardDataScheduler.pdb b/src/SocioboardDataScheduler/bin/Debug/dnx451/SocioboardDataScheduler.pdb index 0d613e818..98a520c17 100644 Binary files a/src/SocioboardDataScheduler/bin/Debug/dnx451/SocioboardDataScheduler.pdb and b/src/SocioboardDataScheduler/bin/Debug/dnx451/SocioboardDataScheduler.pdb differ diff --git a/src/SocioboardDataScheduler/bin/Debug/dnx451/win7-x64/SocioboardDataScheduler.exe b/src/SocioboardDataScheduler/bin/Debug/dnx451/win7-x64/SocioboardDataScheduler.exe index 3662c9e3e..c3ff7fe0c 100644 Binary files a/src/SocioboardDataScheduler/bin/Debug/dnx451/win7-x64/SocioboardDataScheduler.exe and b/src/SocioboardDataScheduler/bin/Debug/dnx451/win7-x64/SocioboardDataScheduler.exe differ diff --git a/src/SocioboardDataScheduler/bin/Debug/dnx451/win7-x64/SocioboardDataScheduler.pdb b/src/SocioboardDataScheduler/bin/Debug/dnx451/win7-x64/SocioboardDataScheduler.pdb index 0d613e818..98a520c17 100644 Binary files a/src/SocioboardDataScheduler/bin/Debug/dnx451/win7-x64/SocioboardDataScheduler.pdb and b/src/SocioboardDataScheduler/bin/Debug/dnx451/win7-x64/SocioboardDataScheduler.pdb differ diff --git a/src/SocioboardDataServices/Helper/AppSettings.cs b/src/SocioboardDataServices/Helper/AppSettings.cs index 7e8d3372a..8a87b9803 100644 --- a/src/SocioboardDataServices/Helper/AppSettings.cs +++ b/src/SocioboardDataServices/Helper/AppSettings.cs @@ -32,7 +32,8 @@ public class AppSettings public const string googleApiKey_TestApp = ""; //End Google App Creds - //Instagram App Creds Start""; "https://api.instagram.com/oauth/authorize/"; + //Instagram App Creds Start""; + public const string instaAuthUrl = ""; public const string instaClientId = ""; public const string instaClientSecret = ""; public const string instaReturnUrl = ""; diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/SocioboardDataServices.exe b/src/SocioboardDataServices/bin/Debug/dnx451/SocioboardDataServices.exe index 77141db39..ee808b3ba 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/SocioboardDataServices.exe and b/src/SocioboardDataServices/bin/Debug/dnx451/SocioboardDataServices.exe differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/SocioboardDataServices.pdb b/src/SocioboardDataServices/bin/Debug/dnx451/SocioboardDataServices.pdb index 200dc32fb..4d7331ae0 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/SocioboardDataServices.pdb and b/src/SocioboardDataServices/bin/Debug/dnx451/SocioboardDataServices.pdb differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Domain.Socioboard.dll b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Domain.Socioboard.dll index 8f0f154ac..4f3d18ab1 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Domain.Socioboard.dll and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Domain.Socioboard.dll differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Domain.Socioboard.pdb b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Domain.Socioboard.pdb index a32f655ab..46c46dff7 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Domain.Socioboard.pdb and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Domain.Socioboard.pdb differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Facebook.dll b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Facebook.dll index 4a61dad32..de8f5863c 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Facebook.dll and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Facebook.dll differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Facebook.pdb b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Facebook.pdb index 11d8efbda..f8c261c75 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Facebook.pdb and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Facebook.pdb differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Google.dll b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Google.dll index 3a0f75a1a..196045734 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Google.dll and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Google.dll differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Google.pdb b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Google.pdb index 3b8084006..53f13ac66 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Google.pdb and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Google.pdb differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Instagram.dll b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Instagram.dll index d08e2ddc0..b86924997 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Instagram.dll and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Instagram.dll differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Instagram.pdb b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Instagram.pdb index b39c8d8e0..884311638 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Instagram.pdb and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Instagram.pdb differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.LinkedIn.dll b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.LinkedIn.dll index 7a437a868..c0599bc4a 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.LinkedIn.dll and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.LinkedIn.dll differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.LinkedIn.pdb b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.LinkedIn.pdb index 7bd71b81f..ac63458b9 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.LinkedIn.pdb and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.LinkedIn.pdb differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Pinterest.dll b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Pinterest.dll index 839bdd3cc..9ffedafff 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Pinterest.dll and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Pinterest.dll differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Pinterest.pdb b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Pinterest.pdb index 2831ff90f..4555c4594 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Pinterest.pdb and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Pinterest.pdb differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Twitter.dll b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Twitter.dll index 6b88dbb80..b5527667c 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Twitter.dll and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Twitter.dll differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Twitter.pdb b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Twitter.pdb index fb55eb53e..4f8a1f592 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Twitter.pdb and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/Socioboard.Twitter.pdb differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/SocioboardDataServices.exe b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/SocioboardDataServices.exe index 77141db39..ee808b3ba 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/SocioboardDataServices.exe and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/SocioboardDataServices.exe differ diff --git a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/SocioboardDataServices.pdb b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/SocioboardDataServices.pdb index 200dc32fb..4d7331ae0 100644 Binary files a/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/SocioboardDataServices.pdb and b/src/SocioboardDataServices/bin/Debug/dnx451/win7-x64/SocioboardDataServices.pdb differ diff --git a/src/SociobordRssDataServices/bin/Debug/dnx451/SociobordRssDataServices.exe b/src/SociobordRssDataServices/bin/Debug/dnx451/SociobordRssDataServices.exe index 51c19b758..c4f5d1209 100644 Binary files a/src/SociobordRssDataServices/bin/Debug/dnx451/SociobordRssDataServices.exe and b/src/SociobordRssDataServices/bin/Debug/dnx451/SociobordRssDataServices.exe differ diff --git a/src/SociobordRssDataServices/bin/Debug/dnx451/SociobordRssDataServices.pdb b/src/SociobordRssDataServices/bin/Debug/dnx451/SociobordRssDataServices.pdb index 8ed89bf1d..80b35139d 100644 Binary files a/src/SociobordRssDataServices/bin/Debug/dnx451/SociobordRssDataServices.pdb and b/src/SociobordRssDataServices/bin/Debug/dnx451/SociobordRssDataServices.pdb differ diff --git a/src/SociobordRssDataServices/bin/Debug/dnx451/win7-x64/SociobordRssDataServices.exe b/src/SociobordRssDataServices/bin/Debug/dnx451/win7-x64/SociobordRssDataServices.exe index 51c19b758..c4f5d1209 100644 Binary files a/src/SociobordRssDataServices/bin/Debug/dnx451/win7-x64/SociobordRssDataServices.exe and b/src/SociobordRssDataServices/bin/Debug/dnx451/win7-x64/SociobordRssDataServices.exe differ diff --git a/src/SociobordRssDataServices/bin/Debug/dnx451/win7-x64/SociobordRssDataServices.pdb b/src/SociobordRssDataServices/bin/Debug/dnx451/win7-x64/SociobordRssDataServices.pdb index 8ed89bf1d..80b35139d 100644 Binary files a/src/SociobordRssDataServices/bin/Debug/dnx451/win7-x64/SociobordRssDataServices.pdb and b/src/SociobordRssDataServices/bin/Debug/dnx451/win7-x64/SociobordRssDataServices.pdb differ